Quick Font Color Issue.

Hello Everyone.

I am working on my site (<!-- m --><a class="postlink" href="http://neczy.firewebx.com">http://neczy.firewebx.com</a><!-- m -->) and in IE the footer font color is black, but i have it set for white.

How can i fix this?

Also is there a way to make the footer always at the bottom of the page? because depending on how much content is there depends on how far down the page it is.

THanks in advance!Your footer font color is displaying as white on my sceen in firefox. In I.E it displays as black. how about this:


#footer {
position: relative;
clear: both;
margin: 0;
padding: 8px 3px;
color: #fff;
background: #000;
font-size: x-small;
}
#footer a:link { color: #fff; }
#footer a:hover { color: #fff; }
#footer a:visited { color: #fff; }


That should work (hopefully!)
Note: Remember instead of #000000 you can use #000 and instead of hex colors like #ff9900 you can use #f90.

Hope that helps.
Best Wishes,
Davidit didnt work :SDo styles carry down thru nested <div>s? If not, that seems to be the problem. If so, then I never posted this...;)I fixed it.

This was the old:

#footer {
position: relative;
clear: both;
margin: 0;
padding: 8px 3px;
color: #fff;
background: #000;
font-size: x-small;

This is the new.


#footer {
clear: both;
margin: 0;
padding: 8px 3px;
color: #fff;
background: #000;
font-size: x-small;How did you figure that one out? Just start playing with the elements of your stylesheet, or was there some logical train of thought there?heh Total Trial and Error. I tried to think "invalid and not logical" and then i figured it out. Thinking like IE is hard :p
 
Back
Top