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
Since a while I have an arrowhead next to my submenue items in the mobile display vertical Navigation. These arrowheads point to the baseline of the font. How can I get rid of them or position them in a way that they point towards the midline of the font? Please see the provided screenshot.
Thanks for help!
https://eckart-bartnik.de/photos/arrowheads submenue.jpg
Offline
Your image can't show on the forum with a space in its name.
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 just looked at your site. It's your custom css. The font-size and line-height you're applying to the vertical menu are doing it.
Try changing the line height of the arrow icon to match:
nav.nav_v .menu-item > a::after {
line-height: 22px;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
You can change the way that those arrows behave using custom css. If you haven't used this feature before, you can look at the documentation here: https://backlight.me/docs/custom-stylesheets
This code can be used to hide the arrow symbols on vertical navigation:
nav.nav_v .menu-item li a::after{
display: none;
}
I'm not really sure why there aren't centered as that is the default behavior on my website (thought I don't have sub-menus in my current navigation). [Edit: Rod already answered this part]
Last edited by gaufde (2020-05-13 06:09:18)
Graceson Aufderheide
gracesonaufderheide.com
Offline
Thanks Rod and Graceson!
Rods tip centered the arrow, that looks fine and I leave it with that (never Change a working system). Thanks a lot for your help!
Best regards
Eckart
Offline
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