View Single Post
Old 01-04-2013, 03:55 PM   PM User | #2
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Hello brookfloyd,
Try it like this -
Code:
#SideCategoryList li a, #SideCategoryList .sf-menu li a {
    /*border-left: 1px solid #FFFFFF;*/
    color: #FFFFFF;
    display: block;
    font: 16px Arial,Verdana,Helvetica,Sans-serif;
    padding: 8px 0 9px 30px;
    text-decoration: none;
}
#SideCategoryList li {border-left: 1px solid #fff;}
#SideCategoryList li:first-child {border-left: none;}

...
It kind of looks like you were putting two borders on your li's with this
Code:
#SideCategoryList li, #SideCategoryList .sf-menu li {
}
If that's the case, the CSS you had in place for removing the border on the :first-child removed only one border and did not remove the border off #SideCategoryList .sf-menu li



...
When posting code in the forum, please use the code tags, - available with the # button in the post edit window.
This will wrap your code in a scroll box which greatly helps the readability of your post.
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote
Users who have thanked Excavator for this post:
brookfloyd (01-22-2013)