PDA

View Full Version : Styling the Keyword count pop-up


kevinhelton
Sep-15-2008, 08:27 PM
Hey all,

Any ideas on styling the photo count box that pops up when you hover over a keyword? It is called by javascript and I'm having a hard time find it in the style sheets.

Thanks,

Kevin

Allen
Sep-15-2008, 08:52 PM
Hey all,

Any ideas on styling the photo count box that pops up when you hover over a keyword? It is called by javascript and I'm having a hard time find it in the style sheets.

Thanks,

Kevin
Try this, add these to your CSS

.keywordPage #helper {
background-color: blue !important;
border: 1px solid #000;
color: #000;
}

.keywordPage #helper h3 {
color: red !important;
}

kevinhelton
Sep-16-2008, 09:33 AM
Try this, add these to your CSS

.keywordPage #helper {
background-color: blue !important;
border: 1px solid #000;
color: #000;
}

.keywordPage #helper h3 {
color: red !important;
}

and


.homepage #helper

for the homepage.

Thanks Al!