I also purchased abundance theme and I like the way it operates where the menus are not hidden and I can resize any of the pages
Can I do that on enfold?
Thanks
Hey ucvb66!
The theme comes with 3 different sizes you can choose from. In the main theme options look for “Responsive Layout active?” and use the dropdown to choose the Fixed Layout if you want it to be like Abundance where the theme doesn’t respond to the size of the viewer screen and instead just scales down on tablets/mobile devices.
Best regards,
Devin
I put the website into fixed and I can resize now.
I resize the page to zoom in on my phone and ipad. I can scroll to the right of the pages, but I can’t scroll to the right of the menu bar.
Is there a CSS code I can put in to allow me to move (i guess scroll) to the right of the menu bar just like I can on the pages?
Thanks
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) {
.main_menu, #header_main_alternate {
display: block;
}}
.html_header_top.html_header_sticky #header {
overflow: scroll;
}
Best regards,
Yigit
Thanks!!