OverlayMenu Cutting Off (hidding) Top Menu Pages

Issues related to hyperlinks and web site navigation.
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/links.html
Post Reply
User avatar
dnlyko
 
 
Posts: 142
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

OverlayMenu Cutting Off (hidding) Top Menu Pages

Post by dnlyko »

When the browser window is shorter than the list of pages listed in the menu, there is no way to scroll up to return to the 'Home".
You can scroll down to reveal all the unseen menu pages below, but no scrolling up to select the 'Home' page.
Only by increasing the height of the browser window will the top pages become visible.
User avatar
Pablo
 
Posts: 23226
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: OverlayMenu Cutting Off (hidding) Top Menu Pages

Post by Pablo »

Do you have a demo project so I can see which settings you have used?

Image

For further details about how to share a project file, please see this FAQ:
viewtopic.php?f=10&t=82134
User avatar
dnlyko
 
 
Posts: 142
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: OverlayMenu Cutting Off (hidding) Top Menu Pages

Post by dnlyko »

Sorry,
Please note that the only thing on the Overlay Menu I changed was the 'Synchronize' option
Please go to https://rockngroove.ca/
Click on the menu
Now adjust the bottom of your browser height so just the 5 menu items are in the browser
Now click on 'Snaps'
The top menu items are not displayed and you are not able to scroll up, no way to go and select the 'Back' menu item
You will be able to scroll down though
User avatar
BaconFries
 
 
Posts: 5867
Joined: Thu Aug 16, 2007 7:32 pm

Re: OverlayMenu Cutting Off (hidding) Top Menu Pages

Post by BaconFries »

When it is "asked" to provide a "Demo" it is a copy of the project (.wbs) not a url!. The reason for this is so that the .wbs can be opened in the software and then check the settings.

So as previously asked please read the following:
Do you have a demo project so I can see which settings you have used?

Image

For further details about how to share a project file, please see this FAQ:
viewtopic.php?f=10&t=82134
User avatar
crispy68
 
 
Posts: 2995
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: OverlayMenu Cutting Off (hidding) Top Menu Pages

Post by crispy68 »

The issue lies with the fact that the menu uses flexbox to vertically center the menu subitems. It is always trying to center the list within the height which cuts off the top. This menu is not ideal for lots of subitems unless you were to create smaller groups.

You will need to add some CSS to make it work. Add the following to an html object/page html between the head tags:

Code: Select all

<style>
#indexOverlayMenu1-overlay ul{overflow-y:auto;max-height:100vh;}
</style>
User avatar
dnlyko
 
 
Posts: 142
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: OverlayMenu Cutting Off (hidding) Top Menu Pages

Post by dnlyko »

Thank you crispy68
Now it works like a charm
Post Reply