Hi there
I've got an issue when customizing Nav Vertical style.
I'm using 4 levels.
Style is applied everywhere BUT not on
any active items at 4th level if start_level='2'
and active items at 3rd and 4th levels if start_level='1'
Anything wrong from me ?
Thx
#menu_vert li.active01 h3 {
font-weight: bold;
background: transparent url(uploads/images/arrow-hover.gif) no-repeat center left;
color: rgb(51, 51, 204);
font-size: 1em;
margin: 0;
padding: 0 0 0 1.5em;
line-height: 1em;
}
CSS Nav Vertical version 0.13-beta1
CSS Nav Vertical version 0.13-beta1
Last edited by Ken on Thu May 04, 2006 4:54 pm, edited 1 time in total.
Re: CSS Nav Vertical version 0.13-beta1
I'm answering to myself !
Solution is:
#menu_vert li.active01 h3,
#menu_vert li.active02 h3,
#menu_vert li.active03 h3 {
font-weight: bold;
color: #369;
background: transparent url(uploads/images/arrow-hover.gif) no-repeat center left;
color: rgb(51, 51, 204);
font-size: 1em;
margin: 0;
padding: 0 0 0 1.5em;
line-height: 1em;
}
But don't ask me why
I just would like to know if it's somewhere in the documentation ?
Thx and congratulations to the team for this great CMS
Solution is:
#menu_vert li.active01 h3,
#menu_vert li.active02 h3,
#menu_vert li.active03 h3 {
font-weight: bold;
color: #369;
background: transparent url(uploads/images/arrow-hover.gif) no-repeat center left;
color: rgb(51, 51, 204);
font-size: 1em;
margin: 0;
padding: 0 0 0 1.5em;
line-height: 1em;
}
But don't ask me why

I just would like to know if it's somewhere in the documentation ?
Thx and congratulations to the team for this great CMS
Re: CSS Nav Vertical version 0.13-beta1
answer?
#menu_vert li.active01 h3
that is a class " . " , any thing that has "class="?",, in your case you have three diff. classes, each class has to be styled independently, or in a row like you did, they do not inheret(?sp) the style of it's parent or another class such as .active01. thats the great thing about class you can use it to style a bunch of things with one call like class="red", .red{color:red},,
a great place to learn http://www.w3schools.com/default.asp
what they have to say about class http://www.w3schools.com/css/css_syntax.asp scroll down a little.
HTH
mark
#menu_vert li.active01 h3
that is a class " . " , any thing that has "class="?",, in your case you have three diff. classes, each class has to be styled independently, or in a row like you did, they do not inheret(?sp) the style of it's parent or another class such as .active01. thats the great thing about class you can use it to style a bunch of things with one call like class="red", .red{color:red},,
a great place to learn http://www.w3schools.com/default.asp
what they have to say about class http://www.w3schools.com/css/css_syntax.asp scroll down a little.
HTH
mark