PDA

View Full Version : Text errors


fflvandals
Jul-02-2008, 12:05 PM
I have a few text errors that I am not sure how to fix. On my Guest book page the text is still white so it doesnt show up. Here is the link to the page:

http://bkobs2.smugmug.com/gallery/4784083_h7cwY

I was hoping that all my text would be the same color blue as seen in the galleries but the headings that say "ORGANIZE" are blue but the words after are not or the smug news section is still white with text. I am sure this may be a simple error but I am still unable to figure it out. Any help would be greatly appreciated. THanks

Bill

Allen
Jul-02-2008, 12:15 PM
I have a few text errors that I am not sure how to fix. On my Guest book page the text is still white so it doesnt show up. Here is the link to the page:

http://bkobs2.smugmug.com/gallery/4784083_h7cwY

I was hoping that all my text would be the same color blue as seen in the galleries but the headings that say "ORGANIZE" are blue but the words after are not or the smug news section is still white with text. I am sure this may be a simple error but I am still unable to figure it out. Any help would be greatly appreciated. THanks

Bill
Go thru your CSS and fix all these first then re-evaluate.
colors do not get a # only the hex does. #000000


.albumTitle .nav, {color: #blue !important;}
.description {color: #black !important;}

This is ok
a:hover {color: blue;}

Also only links in the CSS get the gallery key so remove the _h7cwY

.gallery_4784083_h7cwY .pageNav {
display: none;
}

fflvandals
Jul-03-2008, 12:33 PM
Go thru your CSS and fix all these first then re-evaluate.
colors do not get a # only the hex does. #000000

I did this but still not luck

.albumTitle .nav, {color: #blue !important;}
.description {color: #black !important;}

This is ok
a:hover {color: blue;}

Also only links in the CSS get the gallery key so remove the _h7cwY

.gallery_4784083_h7cwY .pageNav {
display: none;
}

tried this as well. The text in the smugmug news and the guest book is still white. I will keep trying to look for where I made the mistake.

Allen
Jul-03-2008, 03:24 PM
tried this as well. The text in the smugmug news and the guest book is still white. I will keep trying to look for where I made the mistake.
Remove this piece hanging all along at the top of yoru CSS.

color:#f0f !important;

Are you referring to the comments? Add this.

.foreground {
color: blue;
}