
Tagged: Burger Menu, enfold
-
AuthorPosts
-
October 6, 2017 at 10:05 am #860921
Hi I would like to know if there is the possibility of displaying the burger menu together with the full overlay menu display only in the home page. In the rest of the pages I would like to keep the default top menu with single items displayed as text.
Thanks
October 6, 2017 at 1:50 pm #861015Hey Elena,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.page-id-3338 <---you home page class .av-burger-menu-main { display: block; }
If you need further assistance please let us know.
Best regards,
VictoriaOctober 6, 2017 at 2:08 pm #861025Hi Victoria, sorry I was not very clear in my previous message. What I need is to have the standard text menu on top for the whole web site, except for the home page, where I wish to display only the burger menu.
I imagine that I could use your code above and hide the standard menu. Is that right?
I could therefore hide each single
- class=menu-ietm-xxxx, and keep visible only the class=av-burger-menu, however it’s a mess as everytime I add a new menu voice I should change my css. Is there a simplest way to do it?
Thanks very much
-
This reply was modified 7 years, 6 months ago by
elenapoliti.
Hi elenapoliti,
No the code above shows the burger along with the menu, that’s how I understood the original post. Thanks for the clarification.
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Do you have a answer for that, for all ?
thanks
I actually decided to have only a burger menu, since I didn’t find any better solution.
so no answer from the moderator ? thanks a lot
I tried something, half good. It works, but I can’t get it to NOT work on the homepage… so still useless. Any idea ?
In the functions.php file :
if ( !is_front_page() ) {
echo'
<style type="text/css">
.js_active.html_burger_menu #avia-menu > li {
display: block !important
}
.js_active.html_burger_menu #avia-menu .av-burger-menu-main {
display: none !important
}
</style>
';
}
-
This reply was modified 7 years, 2 months ago by
precarre.
IT WORKS!!!!!!
It works just fine putting it in the template-builder.php file
<?php
if ( !defined('ABSPATH') ){ die(); }
global $avia_config, $post;
if ( post_password_required() )
{
get_template_part( 'page' ); exit();
}
/***************************************************///
/****** MENU BURGER OFF IF NOT NOT NOT HOMEPAGE. *///
if ( !is_front_page() ) {
echo'
<style type="text/css">
.js_active.html_burger_menu #avia-menu > li {
display: block !important
}
.js_active.html_burger_menu #avia-menu .av-burger-menu-main {
display: none !important
}
</style>
';
}
/***************************************************///
/***************************************************///
/***************************************************///
NB : works better in the header.php
Hi,
Sorry for the late response and glad that you found the solution :)
Best regards,
Nikko
I tried your code and it works. Only thing is, when entering the site in mobiles, then the burger also disappears in all pages except home. How to keep burger in every page in mobile? Thanx!
this should help
/***************************************************///
/****** MENU BURGER OFF IF NOT NOT NOT HOMEPAGE. *///
if ( !is_front_page() ) {
echo’
<style type=”text/css”>
@media all {
@media only screen and (min-width: 860px) {
.js_active.html_burger_menu #avia-menu > li {
display: block !important
}
.js_active.html_burger_menu #avia-menu .av-burger-menu-main {
display: none !important
}
}
}
</style>
‘;
}
/***************************************************///
/***************************************************///
That is just perfect!
Thanx for the quick response ;)
- You must be logged in to reply to this topic.