Page 1 of 1

bullet menu 2nd level and CSS

Posted: Thu May 05, 2005 3:14 pm
by ritalcnyc
Can anyone help me styling my "level 2" in my bulletmenu?

See the page here: http://www.crisafidesign.com/dayo/

I figured out how to get styles to apply to the and tags, but somehow I think i would have to tweak the php in function.bulletmenu.php to give the second level a unique id, but I don't know much about PHP.

Re: bullet menu 2nd level and CSS

Posted: Thu May 05, 2005 3:25 pm
by ysf
no need to tweak php files...

just add these rules to the end of your stylesheet:

Code: Select all

#contentleft li li
{
border-top: 1px solid #90bade;
border-bottom: 0;
margin: 0;
}

#contentleft li li a
{
display: block;
padding: 5px 5px 5px 20px;
background-color: #5ba3e0;
color: #fff;
text-decoration: none;
width: 100%;
}
replace the style in these rules to suit yours...

Re: bullet menu 2nd level and CSS

Posted: Thu May 05, 2005 3:41 pm
by ritalcnyc
thanks a lot!!!

Re: bullet menu 2nd level and CSS

Posted: Thu May 05, 2005 3:44 pm
by ysf
ritalcnyc wrote: thanks a lot!!!
most welcome...:)