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
Funny thing. I have use a drop down menu entry and set the name in LR. and it looks like, that someone make a word wrap after x characters, but the background is not. The last entry was "Berlin Rebels Youngsters 2016" and on the site it looks like this:
This is not a big Problme to change this, but maybe a small bug. Or I have not seen, where I can define the max lenght of the drop down menu entrys.
Test site is http://www.gosslar.homedns.org:8888
Christian
Offline
I think that will take some custom css.
This seems to work but may need some tweaking. adjust width to your needs:
nav ul ul {
width: 300px;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Oh.. yeah. It works, but what I don't see before, it's also the length of the other Menu entrys. So I must be carfull to create the menu entry.
Thanks again for the support!
Christian
Offline
on my test site, longer item names that are not the last item appear to be cut off. But if the item with the long title is the last on the list, then the text wraps beneath. Looks like a bug for Matt to squash.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
this will hide the wrapping text:
nav ul ul {
overflow: hidden;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
This will hide the second level of the menu on my side.
Offline
ah, so it does. probably just needs to be more specific
try this:
nav ul ul a {
overflow: hidden;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
That's it!
Offline
Pages: 1