Jump to content

[Solved]Over size page Front office Upgrade 1.7.8.1 -> 1.7.8.5


Recommended Posts

Hi @Jesse
This is due to the header menu; if you hover over the HOME menu item, you will notice that the content in the dropdown is too long, resulting in a big page.
Add the following CSS rules to the bottom of theme.css (/store/themes/classic/assets/css/theme.css) to fix this:

#_desktop_top_menu .top-menu .sub-menu.collapse {
    display: none;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}
#_desktop_top_menu .top-menu li:hover .sub-menu {
    display: block;
}

Don't forget to back up the file before making any changes.

Kind regards, Leo.

Link to comment
Share on other sites

  • Jesse changed the title to [Solved]Over size page Front office Upgrade 1.7.8.1 -> 1.7.8.5

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...