Sidebar not indenting sub-links


Author Message
David Silverthorn

Posted: 6/10/2010
Quote message 

Firstly, I am posting this because I came across this frustrating issue and recently learned the fix. I am uncertain if this is a bug in Artisteer, but certain configurations of the sidebar will not indent sub-links within the menu. This can be quite frustrating when there are many sub-links and the user doesn't know the relation between them. Funny enough, it was a post on drupal about nearly the opposite problem that fixed it.

The answer is this:

In style.css, add:

---
padding-left: 8pt;
---


within "ul li, .item-list ul li, li.expanded, li.leaf, li.collapsed"

So it looks like this (mostly):

---
ul li, .item-list ul li, li.expanded, li.leaf, li.collapsed
{
text-align: left;
display: block;
list-style-type: none;
list-style-image: none;
margin: 0;
padding-left: 8pt;
}
---

This fixed it for me in Firefox 3.6 and IE 8

Hope this helps anyone else out there.
 
Martijn

Posted: 9/15/2011
Quote message 

:-)
Hi David,
This worked great!
Thanks for giving this great Tip!

greetings, Martijn
 
Symi

Posted: 9/22/2011
Quote message 

:-{}
you rock my world - this is exactly what i came to look for!

Thanks David.