PDA

View Full Version : php help please.


Feek
11-02-2011, 12:08
At least, I think it's PHP!

My blog has been sponsored and I've added a plugin called Banner Garden to it in order to display a banner at the bottom of each page. The problem is that the text above the banner is displayed in black and my blogs footer is dark so it's barely visible.

Can anyone tell me where I need to be looking, and what I'm looking for which will select that text colour?

The files included in the plugin are .css, .js and .php and I've attached the whole directory structure of the plugin in this post. The blog is at http://qso365.co.uk and you can see the banner and the dark text at the bottom.

I'm sure this is quite simple to those in the know but sadly I'm not in the know!

Daz
11-02-2011, 12:53
It's css!

I have no idea if its the right thing to do in wordpress, but this in the css somewhere should fix it:

#banner-garden h3.widget-title {
color: #FFFFFF;
}
That's white, but whatever color you wish of course :)

[edit] #888888 is the grey at the very bottom I think.

Feek
11-02-2011, 13:36
Thanks Daz, not really sure where I should be slapping it though *blush*

Daz
11-02-2011, 13:38
In the banner garden css file would be fine :)

Feek
11-02-2011, 13:44
Done that, doesn't appear to have done anything though.

leowyatt
11-02-2011, 14:03
This probably isn't right but try adding


.widget-container BannerGardenWidgetClass_BannerGardenWidget h3 {
color: #FFFFFF;
}

to the bannergarden.css

Feek
11-02-2011, 14:09
Nope :(

Feek
11-02-2011, 15:36
I edited the image, easier. Job done :D

leowyatt
11-02-2011, 16:01
glad you got it sorted, strange we couldn't change the colour :(

Daz
11-02-2011, 21:56
It worked in Firebug fwiw :/