Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS li border-left propagating to children problem Re: li border-left propagating to children problem

#77274
TheDoc
Member

For example, on your "Billing Verification" nav item, this is the culprit that is cascading:

.side-nav li.item3 a {
border-left:6px solid #4296D2;
}

This will fix it:

.side-nav li.item3 li a { border:none; }