SideBar : Change -only- background color Categories ?

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
stef
Posts: 4
Joined: Wed Apr 13, 2005 4:01 pm

SideBar : Change -only- background color Categories ?

Post by stef »

hi !

I would like to change Categories background color. not all SideBar background color...

is it possible with CSS ? or should i use (and learn...) the Smarty templating system for that

thanks a lot
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: SideBar : Change -only- background color Categories ?

Post by garvinhicking »

You can change it via:

Code: Select all

.container_serendipity_category_plugin {
 background-color: red !important;
}
in your CSS :)

(Using recent 0.8 Serendipity)

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/
stef
Posts: 4
Joined: Wed Apr 13, 2005 4:01 pm

Post by stef »

Ok, thank you, this is the way :)

exact syntax is
.container_serendipity_categories_plugin {
background-color: red !important;
}
Post Reply