PDA

View Full Version : Changing Text Colors


ManiakMama
Sep-15-2009, 11:39 AM
Hello, On my site here: http://tentinytoesphoto.smugmug.com/Family/Everyday-Fun-2009/8989746_tnh68#639522280_KYbWC

You will see that the File name, "Arrange Mode" and "hide photo" text is not viewable. I'm assuming this is because the text color is set to be the same as the background color.

I've been trying to figure out for quite some time now where to change this in my CSS Sheet, but have not been able to figure it out to save my life.

Any help would be much appreciated!

jfriend
Sep-15-2009, 11:48 AM
Arrange mode and hide photo only show when you are logged in so we us volunteers can't debug those.

I do see that you have any visible filename hidden with this CSS:

#fileNameBoxWrapper {
display: none;
}

But, even if you remove that you won't see a filename unless you enable filenames in your gallery options.

As for the other two controls, they are in the photoTools and arrangePhotosBox divs and you have CSS rules that affect both of those divs (you have a ton of custom CSS). It seems you need to use a tool like Firebug and see what CSS rules are affecting those divs whether to make them hidden, an oncompatible color or off screen somehow.

ManiakMama
Sep-15-2009, 12:10 PM
Arrange mode and hide photo only show when you are logged in so we us volunteers can't debug those.

I do see that you have any visible filename hidden with this CSS:

#fileNameBoxWrapper {
display: none;
}

But, even if you remove that you won't see a filename unless you enable filenames in your gallery options.

As for the other two controls, they are in the photoTools and arrangePhotosBox divs and you have CSS rules that affect both of those divs (you have a ton of custom CSS). It seems you need to use a tool like Firebug and see what CSS rules are affecting those divs whether to make them hidden, an oncompatible color or off screen somehow.

Ok, I know the text is actually there because if I highlight over it, I can see it, but I just want to be able to change that font color. Does that make sense??

jfriend
Sep-15-2009, 12:14 PM
Ok, I know the text is actually there because if I highlight over it, I can see it, but I just want to be able to change that font color. Does that make sense?? I have no idea how this will interact with all the CSS on your site, but this will change the color of the "arrange mode" and "hide photo" text on my site:

#arrangePhotosBox {color: red;}
#hidePhotoBox {color: red;}