Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Please, can someone tell me if there is a way to indent submenus on mobile devices. Please see www.lucneyens.be, where names of galleries are aligned with the word Galleries, with arrows ( > ) appearing in the left margin. I plan on adding more galleries as I go along, and having the > arrows left-aligned with Galleries would be my preference. Thank you. Luc
Offline
that will require custom css.
try this:
li.menu-item-has-children ul li.menu-item {
padding-left: 24px;
}
adjust padding-left as needed.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I should add that you'll want to put that inside of a media query so it only affects the mobile menu
this should probably do it:
@media screen and (max-width: 1024px) {
li.menu-item-has-children ul li.menu-item {
padding-left: 24px;
}
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1