Page 1 of 1

Expandable Panel Menu

Posted: Wed Jul 07, 2021 8:22 pm
by doctorroe
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!

Re: Expandable Panel Menu

Posted: Thu Jul 08, 2021 12:41 am
by crispy68
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:

Code: Select all

<style>
.Extension1 .sub-menu li a{font-size:10px;}
</style>
change the font size to your liking and Extension1 to the ID of your extension.

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

Posted: Thu Jul 08, 2021 1:22 pm
by doctorroe
Perfect! I will test this morning!