Hey!
So i am having a CSS issue.
my sidebar has a border-bottom 1px; so that everything in my sideline gets a bottom border attached to it. which is fine. but in one of the widgets listing in my sidebar i don't want the bottom border.
how can i get it to work ?
The code that is making the bottom border appear is
#r_sidebar ul li ul li {
margin: 0px; padding: 0px 0px 0px 10px;
border-bottom: 1px solid #C1D8E6;
background: url(images/bullet-arrow.gif) 5px 9px no-repeat;
}
I tried `#r_sidebar .twitter ul li ul li {
border-bottom: 0px;
}`
but that doesn't work