Comments Natiar401 started the conversationAugust 6, 2018 at 12:52amHow To Add The Word "Menu" To The Mobile Menu on Soledad. I would like to have the words menu with the menu Icon. Some people don't understand the icon and don't know how to navigate when they are on phone.Thankyou 1Shlomi repliedAugust 6, 2018 at 1:27amYou can try to do it using the css pseudo elements :before or :after, (if guys from PenciDesign wont offer you a better way :) )Exampe. .button-menu-mobile:before { content: "menu"; display: block; position: absolute; left: 1.2em; top: 0.6em; line-height: 1; } 2,700PenciDesign repliedAugust 6, 2018 at 3:30amHi,Please add more this code to Customize > Custom CSS to do that: #navigation .button-menu-mobile:after { content: 'Menu'; display: inline-block; margin-left: 6px; font-size: 20px; } @Shlomi: Thank you for your suggest.Best Regards,PenciDesignNatiar401 repliedAugust 7, 2018 at 11:53amThankyou! It worked great Sign in to reply ...
How To Add The Word "Menu" To The Mobile Menu on Soledad. I would like to have the words menu with the menu Icon. Some people don't understand the icon and don't know how to navigate when they are on phone.
Thankyou
You can try to do it using the css pseudo elements :before or :after, (if guys from PenciDesign wont offer you a better way :) )
Exampe.
.button-menu-mobile:before {
content: "menu";
display: block;
position: absolute;
left: 1.2em;
top: 0.6em;
line-height: 1;
}
Hi,
Please add more this code to Customize > Custom CSS to do that:
@Shlomi: Thank you for your suggest.
Best Regards,
PenciDesign
Thankyou! It worked great