Click to See Complete Forum and Search --> : Quick Font Color Issue.


Neczy
06-05-2004, 09:04 AM
Hello Everyone.

I am working on my site (http://neczy.firewebx.com) 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!

davidbrent
06-05-2004, 09:28 AM
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,
David

Neczy
06-05-2004, 09:37 AM
it didnt work :S

Aronya1
06-05-2004, 11:00 AM
Do styles carry down thru nested <div>s? If not, that seems to be the problem. If so, then I never posted this...;)

Neczy
06-05-2004, 11:12 AM
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;

Aronya1
06-05-2004, 11:19 AM
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?

Neczy
06-05-2004, 01:40 PM
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