Tagged: menu, mobile menu, sub-menu
-
AuthorPosts
-
September 10, 2015 at 4:59 pm #501168
Hi I would like to know is there a way to change the text on the mobile menu for the Full Width Sub Menu
What I am trying to achieve is to change the text (currently set to: Menu) to the Full Width Sub Menu (mobile mode)
And would also like to add some texts to the Main Menu (mobile mode)Go to link below to see what how the page is laid out to get a better idea.
September 10, 2015 at 5:01 pm #501173Forgot to add, but im sure youd figure but change the size of your window to a mobile display size, ive forced the responsivenesss of the site to start earlier.
September 11, 2015 at 2:12 pm #501638Hey!
not sure what you want to achieve and I think you want to have a different menu for mobile? if yes create one and hide it on desktop using media queries.
Cheers!
AndySeptember 11, 2015 at 5:38 pm #501824Hi Andy,
i dont want a different menu for mobile, all I want is to change the text
where it says “Menu” to something else on the mobile display. And would
like ot add text to the main menu on mobile. I’m attaching images so you
get an idea.https://www.dropbox.com/s/ffpux8xdg5kj6cs/Menu%20Help%20Mobile%20View.png?dl=0
Im aware this is not a feature, and could be possibly added later. But I
would like to know where I can make the chnges in the code?Atik
September 13, 2015 at 2:35 pm #502308Hi!
Add this to your custom CSS to hide the “Menu” text in your fullwidth sub menu.
.av-current-placeholder { display: none !important; }
Regards,
ElliottSeptember 15, 2015 at 12:39 am #503083Hi Elliot,
My apolagise if this sounds rude, but did you read my last message or look at the image link I sent? Im not asking to hide the text on the “Fullwidth Sub Menu” but change it.
I also would like to add text before or after the Main Menu Icon.
https://www.dropbox.com/s/ffpux8xdg5kj6cs/Menu%20Help%20Mobile%20View.png?dl=0
Any help will be appreciated.
Atik
September 15, 2015 at 1:09 pm #503319Hey!
1- Please refer to my post here – https://kriesi.at/support/topic/mobile-menu-38/#post-492352
2- Please go to Enfold/config-templatebuilder/avia-shortcodes and open menu.php file and search “av-current-placeholder” and change the text as neededCheers!
YigitSeptember 15, 2015 at 8:52 pm #503686Thank You Yigit,
Really Helpfull, I didn’t end up changing anything in the menu.php file as it makes a global change but it helped me figure out what I needed to do, so i’m supplying the CSS for anyone else that might have issues like this.
/* MOBILE MAIN MENU */
#advanced_menu_toggle {
width: 120px;
color: #7C6853;
transition: all 0.3s ease-out 0s
}#advanced_menu_toggle:after {
content: ‘Menu’;
font-size: 18px;
position: relative;
top: -4px;
left: 10px;
color: #7C6853;
transition: all 0.3s ease-out 0s
}#advanced_menu_toggle:hover:after{
color: #fff;
transition: all 0.3s ease-out 0s
}
/* MOBILE MAIN MENU END *//*MOBILE FULL WIDTH SUB MENU */
.mobile_menu_toggle{
background-color: #81D8D0 !important;
color: #fff !important;
}.mobile_menu_toggle:after{
content: ‘Menu’;
font-size: 18px;
position: relative;
top: -4px;
left: 5px;
color: #fff;
}.mobile_menu_toggle:hover{
background-color: #fff!important;
color: #7C6853 !important;
}.mobile_menu_toggle:hover:after{
color: #7C6853 !important;
}
/* MOBILE FULL WIDTH SUB MENU END */If you need to change the content for the full width sub menu for inidividual pages add a version of the code below to the ‘Code Block’ of that page
<style>
.mobile_menu_toggle:after { content: “Custom Menu Text Here” !important; }
.</style>September 15, 2015 at 9:34 pm #503718Hi!
Glad you got it short out!
We will be happy to assist with anything else.Best regards,
Basilis -
AuthorPosts
- The topic ‘Full Width Sub Menu & Main Menu (mobile), change or add text’ is closed to new replies.