Items rendered as a separators have different html structure than the normal ones. A normal separator (without any text or image set) will render
| |
Copy Code |
|
<li class="item separator"> <span class="text"></span> </li> |
You can target the separators using the separator class. Here is how the separator definition looks for the Outlook skin:
| |
Copy Code |
|
.RadPanelBar_Outlook .vertical .separator { padding:0; margin:1px 0; } .RadPanelBar_Outlook .separator span.text { border-top:1px solid #6A8CCB; } |