PDA

View Full Version : I Tried and Tried but ...


chuckinsocal
Sep-28-2008, 03:39 PM
I want to make the text in my captions the color #c6e2ff;

I tried several variations of:

#caption_bottom {
font-color: #c6e2ff;
}

but none worked. I guess I could spend hours with trial and error or researching posts 'till my eyes fall out but I'm hoping someone might take just a minute and give me the correct CSS syntax to accomplish this extraordinary feat.

Thanks.

Barb
Sep-28-2008, 04:05 PM
I want to make the text in my captions the color #c6e2ff;

I tried several variations of:

#caption_bottom {
font-color: #c6e2ff;
}

but none worked. I guess I could spend hours with trial and error or researching posts 'till my eyes fall out but I'm hoping someone might take just a minute and give me the correct CSS syntax to accomplish this extraordinary feat.

Thanks.

Hi :)

Add the above towards the top of your CSS instead of the bottom:

#caption_bottom {
color: #c6e2ff;
}

I just tried it and it worked great :)

chuckinsocal
Sep-28-2008, 04:14 PM
Perfect Barb ... absolutely perfect!

Thank you so much.

Allen
Sep-28-2008, 05:09 PM
Perfect Barb ... absolutely perfect!

Thank you so much.
Almost everytime some CSS doesn't work at the bottom is because of an
error above. Found a few.

You need a space before #breadcrumb in these.

.category_Classic_Ride_Images
#breadcrumb {visibility: hidden;}

.category_Life_on_the_SoCal_Coast
#breadcrumb {visibility: hidden;}

missing */ here

/* font-size: 0px;*/
/*}*/

/*.cart_add {*/

/* margin: 2px 0 0 5px;*/
/* }*/

#photoKeywords {....

The missing */ was why your caption CSS was not working at the bottom.

chuckinsocal
Sep-28-2008, 05:52 PM
Allen,

I can't tell you how much I appreciate the time you took to look this all over and find these errors.

I fixed the 2 missing spaces and I just deleted all those lines I tried to comment out because they were conflicting with the new buttons.

Thanks so much again.