Pablo, I just downloaded this menu and waant to know if I can submit a change request?
We would like to be able to change the font size between menu levels.... i.e. top level being 14 point with next level below being 10.
Thanks!
Expandable Panel Menu
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
Re: Expandable Panel Menu
Feel free to post your suggestion under the suggestion section and maybe Pablo will look at adding it.
In the meantime, if you are only going down 1 level from the main level, simply go to Page --> Page HTML and add the following code between the <head> tags:
change the font size to your liking and Extension1 to the ID of your extension.
For 2 levels down add the following:
In the meantime, if you are only going down 1 level from the main level, simply go to Page --> Page HTML and add the following code between the <head> tags:
Code: Select all
<style>
.Extension1 .sub-menu li a{font-size:10px;}
</style>
For 2 levels down add the following:
Code: Select all
<style>
.Extension1 .sub-menu li a{font-size:12px;}
.Extension1 .sub-menu .sub-menu li a{font-size:10px;}
</style>
Re: Expandable Panel Menu
Perfect! I will test this morning!