how can adjust the alignment of the menu in the header? currently it sits left justified, but i'd like to right justify.
thanks in advance.
how can adjust the alignment of the menu in the header? currently it sits left justified, but i'd like to right justify.
thanks in advance.
i'd also like to bump up the font size and am having a devil of a time locating that style :)
Hi browncl,
In your first question try to go to wp-content/themes/broadscope/style.css and find this code:
#top .avia_mega {
height: 40px;
line-height: 40px;
padding: 0;
left: 0px;
bottom: 0px;
position: absolute;
z-index: 100;
}
replace:
left: 0px;
with:
right: 0;
For the 2nd question, add this code in your Quick CSS or custom.css:
#top .avia_mega a {
font-size: 11px !important;
}
Just change the font-size value. Hope this helps. :)
Regards,
Ismael
thanks Ismael, that's perfect!
Hi browncl,
Glad that I could help. :)
Cheers,
Ismael
This topic has been closed to new replies.