Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1312715

    Hello,
    I would like to hide the filter “Topics” and the “/” in front of it.
    Could you please tell me the necessary CSS, unfortunately I can not do it alone.

    Thanks and greetings
    Lukas

    #1312965

    …I meant the last filter “Themen”

    #1312995

    Thank you, I made it myself!
    Best regards
    Lukas

    #1313162

    Hi,

    Great, I’m glad that you found a solution, and thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1313178

    Hi,

    thank you, otherwise I have no further questions at the moment.

    Best regards,
    Lukas

    #1313185

    Hi,

    another question I have, with which CSS can I move the browser window width at which the menu becomes the mobile menu so that the menu and the logo do not overlap? (SVG Logo)

    thank you and kind regards
    Lukas

    #1313662

    Hi Lukas,

    Thanks for the update. Do you mean that you want to display the mobile menu at an earlier point? If so, then please try this in Quick CSS:

    @media only screen and (max-width: 1024px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    If you want to change the break point, then simply change 1024 in the media query to your preferred value.

    Best regards,
    Rikard

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.