PDA

View Full Version : Widget Formatting... Possible CSS Issue, help!


Lazorbeam
02-10-2011, 06:55 PM
You may view my site here. (http://www.consortium.stormspire.net) Under "Blogroll" on the right side, there is a short list of blogs I follow. The title of these blog posts has a very dark font color - so much that the title is hard to read. The widget itself is just a html tag;

<script type='text/javascript' src='http://www.feevy.com/code/19368'></script>

I tried using firebug to find the CSS tag that is governing the color of the font, but I'm not very good with CSS or firebug. Wrapping the above code with an html font color change does change the color of the blog preview, though. But I can't get the title to change.

https://vborg.vbsupport.ru/external/2011/02/41.jpg

Any idea?

Lynne
02-10-2011, 07:09 PM
It's from custom css you've added or the script is using - #feevy_bar_19368 .feevy_title a

Lazorbeam
02-10-2011, 08:28 PM
It's from custom css you've added or the script is using - #feevy_bar_19368 .feevy_title a

I haven't added any custom css, all I did was paste the aforementioned code. Can I wrap some sort of tag around said code to make the color change?

A user a recommended using h5{color: #CCCCCC;} in the css file the widget "refers" to. I'm not sure if this is correct, of where to find this file.

Lynne
02-10-2011, 08:32 PM
Try adding the CSS to the additional.css tag. I would not go something so general as an h5 though since that will affect any h5 (and, it isn't an h5 to begin with). Do something like:
.cms_widget #feevy_bar_19368 .feevy_title a {color: xxxxxx;}

Lazorbeam
02-10-2011, 08:58 PM
It worked!

Helpful as always, thank you Lynne :)