Theme a ahah autocomplete dropdown list
In some themes you have to style the dropdownbox and it can be hard to catch it in Firebug.
In some themes you have to style the dropdownbox and it can be hard to catch it in Firebug.
This is how you can style a link, with a certain class if you like, as a button in your CSS.
The old solution to this problem required you to add an extra element with clear: both to the container. Once it was in place the container contained a non-floating element, which means it stretches itself up to accomodate it.
The width is necessary to trigger "hasLayout" in Explorer Windows (except for 7)
div.container {
border: 1px solid #000000;
overflow: auto;
width: 100%
}
This is how you can use a different CSS file for the different Internet Explorer browser or for use for other actions.
<!--[if IE]>
<SCRIPT LANGUAGE="Javascript">
alert("Congratulations! You are running Internet Explorer.");
</SCRIPT>
<P>Thank you for closing the message box.</P>
<![endif]-->
Trying to hide and show a table by JavaScript. Something is disturbing td in table when using style="display: block;" on table. (Using FF)
The with of the td loses the reference to the tables 100% and reference to its own content. But using display="block" works fine. The solution is to use a div with style="display: block;" around the table.