Wrap the menu titles

Hi,
is it possbile to wrap the menu titles?
"example example"
to
"example
 example"

I tried it with pasting in <br> but the gap between the words is to big -> https://snipboard.io/9AbMV3.jpg

Thanks!

Comments


  • Hi,
    Please always attach a link so we can check it out. If the page is offline(localhost) then our help will be limited, you will have to contact us when the page is online. Also please make sure that the page is not under maintenance before you provide us the link
    thanks
  • URL: fuchshandy.de
  • You will be able to achieve that gap with the <br> only, but that gap will not be able to change because of CSS rule set there.
    But, this CSS code will wrap your menu items when they will cross 200px of width
    html body #Top_bar .menu li{
    max-width:200px !important;
    }

    #Top_bar .menu > li > a span:not(.description){
    white-space:normal !important;
    }
    Thanks
  • I used the code but it does the same like a <br> with the gap...
    But thanks anyway
Sign In or Register to comment.