News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

Main Menu

[Solved]: Help! What are these headings called?

Started by moonunit, March 20, 2008, 07:24:06 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

moonunit

Hello all

If you have a look at my gallery I have some headings appearing the same colour as the background they are on
Where do i change the colours of these?

the headings are:
Random files
Last additions
Debug Info

....maybe others I havent come across yet...

This is the gallery (yes its is still very much in the works)
http://www.carlaadams.net/gallery/

Thanks in advance for any help

Joachim Müller

This is related to an improper modification of your custom theme - it's never wise to set the background color to the similar value your foreground color is set to. Use the web developer toolbar (as suggested in the sticky thread "Making a brand new theme, where to start?" on this very sub-board) to figure out such things - install it and then click on "CSS" -> "Vies style information", then hover over the section you want to figure out what CSS it is controled by. In your case, you'll have to edit your stylesheet and look for.tableh1 {
        background: #666666;
  font-size: 12px;
        color : #666666;
        padding-top: 6px;
        padding-right: 10px;
        padding-bottom: 6px;
        padding-left: 15px;
}
As you can see, background: #666666; and color : #666666; are a sort of contradiction.

moonunit

A-HA!

Thank you very much.

Problem solved!

Thank you