drop-down subpage alignment

Latest Reply from Alice at 2014-01-31 02:41:15 Solution
Subpages listed under the parent page in the menu align on center. I would like to align them to the left. How do I do that?
Hi!
To fix this you have to replace the code:
	#header #mainmenu ul.children li a, #mainmenu .sub-menu li a {
color:#fff !important;
text-shadow:1px 1px 1px #fff;
}

with:
	#header #mainmenu ul.children li a, #mainmenu .sub-menu li a {
color:#fff !important;
text-shadow:1px 1px 1px #fff;
text-align: left;
}

in the file stile.css.
Thanks! The code was a little different but you helped me get to the right place and I made the changes as seen below.

#header ul.children li a, #header .sub-menu li a {
color:#fff !important;
padding:0 !important;
background:none;
text-align: left;
}
#header ul.children li a:hover, #header .sub-menu li a:hover {
color:#ced6dc;
box-shadow:none;
border:none !important;
text-decoration:underline !important;
text-align: left;
}
Glad to hear this!

Leave a reply

Add codeAdd image