In this CSS menu example, how do you change the font in the cell in which the description fades in and out?
Here's the url:
<!-- m --><a class="postlink" href="http://javascript.internet.com/css/cool-css-menu.html">http://javascript.internet.com/css/cool-css-menu.html</a><!-- m -->
I found in the HTML how to change font colors, and background color, but I can't find where to change the font for the bottom cell. How do you do it? I want it to be arial.
Thanks.Hi!
In the style tag get to the stuff for #tabledescription:
#tabledescription{
width: 100%;
height: 3em;
padding: 2px;
filter:alpha(opacity=0);
-moz-opacity:0;
font-family:arial,verdana,sans-serif;
}
Simply add the blue line.
Cheers - PitYou're a genius man. Thanks.You're welcome.
Cheers - Pit
Here's the url:
<!-- m --><a class="postlink" href="http://javascript.internet.com/css/cool-css-menu.html">http://javascript.internet.com/css/cool-css-menu.html</a><!-- m -->
I found in the HTML how to change font colors, and background color, but I can't find where to change the font for the bottom cell. How do you do it? I want it to be arial.
Thanks.Hi!
In the style tag get to the stuff for #tabledescription:
#tabledescription{
width: 100%;
height: 3em;
padding: 2px;
filter:alpha(opacity=0);
-moz-opacity:0;
font-family:arial,verdana,sans-serif;
}
Simply add the blue line.
Cheers - PitYou're a genius man. Thanks.You're welcome.
Cheers - Pit