alt131

msg:4306237 | 5:11 am on Apr 30, 2011 (gmt 0) |
Have you tried #sidebar #links ul, #authors ul {...}
|
Fotiman

msg:4306386 | 9:39 pm on Apr 30, 2011 (gmt 0) |
Since ID's are unique, it's overkill to have more than 1 ID within a selector. #sidebar can be removed entirely, unless it's being used to increase specificity. Here's how you could combine them: #links ul, #authors ul { ... }
|
Fotiman

msg:4306388 | 9:40 pm on Apr 30, 2011 (gmt 0) |
If you need to keep the #sidebar for specificity reasons, then it would be this: #sidebar #links ul, #sidebar #authors ul { ... }
|
jabz

msg:4307163 | 3:25 am on May 3, 2011 (gmt 0) |
I suggest you stay away from ID's within the selctor (like Fotiman). I would add classes to the UL tag. <div id="sidebar"> <ul class="links">...</ul> <ul class="authors">...</ul> </div> The corresponding CSS would look something like this: .links, .authors { ... }
|
topr8

msg:4307195 | 7:04 am on May 3, 2011 (gmt 0) |
what would be wrong with: #sidebar ul{ ...
|
|