|
The problem with your link color is that you've set the default link color to white (#FFFFFF). This applies to all link that pull the default link color, the image info area included. So, what you must do is add a specific declaration for image-info links by adding the following in the "#image-info" area of the css file (where #000 is black - use whatever color you like):
#image-info a {
color:#000;
}
In the "About" area... again, you'll need to specify a color for your links... since this is in the "Page" area, use the following code:
#page a {
color:#000;
}
The "Browse" thing will require that you edit the "Browse Template"...
Find where it says this: "<option value=''>Select Category</option>" and change "Select Category" to "All". That should do it.
|