align left just the categories side plugin?

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
celect
Regular
Posts: 15
Joined: Mon Jun 18, 2007 8:09 pm

align left just the categories side plugin?

Post by celect »

How would you align the links in categories in the sidebar plugin and not effect any of the other side bar plugins...Would I edit plugin_categories.tpl?

My site is whowantsnews.com btw
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: align left just the categories side plugin?

Post by garvinhicking »

Hi!

Since every sidebar plugin has its own CSS subclasses, you can use this in your style.css file (NOT any tpl file!)

Code: Select all

.container_serendipity_categories_plugin a,
.container_serendipity_categories_plugin li {
  text-align: left;
}
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
celect
Regular
Posts: 15
Joined: Mon Jun 18, 2007 8:09 pm

Post by celect »

thanks garvin
Post Reply