My Life Stream
RE: digg. They're not like they used to be, that's for sure, I'm just able to handle the "community" because of the new features*filters. 13 hrs ago

2.2 RSS Widget CSS “Fix”

One of the many things I’m not fond of in the newly released widgetized wordpress 2.2 is the RSS widget styling.

For those who don’t like the RSS icons, especially if you have a dark theme you can use this CSS to hide them.

.rsswidget img {
display: none;
}

I ended up using this:
.rsswidget img {
float: right;
}

And then replacing the rss icon the wordpress team included since the included image corners are white.

Actually, it looks like I’m going to have to write my own RSS widget or modify the wp core through a widget since they force the icon to be 14px with a white background.

<a class='rsswidget' href='$url' title='" . attribute_escape(__('Syndicate this content')) ."'><img style='background:orange;color:white;border:none;' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$link' title='$desc'>$title</a>

I really hate how this is forced on me.

Viewing 3 Comments

Trackbacks

close Reblog this comment
blog comments powered by Disqus