Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #938623

    Hi guys,
    I found that Documentation here to add a widget to the header area.
    I tried it and I see it now, even when it is on the left end of the header. It seems that I cannot move it more to the right. It ends where the menu begins. But all I want is this widget header in one single line above the main menu.
    I would also like to have that main menu a little bit lower so that I can put more text up there if needed.
    All that should of course work on smaller screens also.
    Hope you can help me out with this.

    Thanks a lot in advance.

    #938661

    Hi guys,
    today I was more successful with it than yesterday. I got almost all working. Only the focus of the main menu is below itself. Don’t know which selector to use …

    Please help me to fix that.
    Thanks.

    • This reply was modified 6 years, 5 months ago by Ralf_M.
    #938723

    Hi Ralf,

    Thanks for the feedback. I’m not sure what you mean by this though?

    the focus of the main menu is below itself

    Could you try to clarify please?

    Best regards,
    Rikard

    #938759

    Hi Rikard,
    thank you for answering. Sorry that I was not clear enough.
    The problem is: when you try to click the menu, the pointer doesn’t change to the click-symbol and you can not click the menu entry. You have to go a bit below the menu and there the cursor changes and you can click. So the click-area is out of focus of the menu.
    Hopefully that makes it clearer.

    #938939

    Hi Ralf,

    Thanks for the clarification, please try this in Quick CSS:

    #custom_html-4 {
      padding:0 !important;
    }

    Best regards,
    Rikard

    #939005

    Hi Rikard,
    I tried, it didn’t change a bit …

    #939163

    Hi Ralf,

    Thanks for the feedback. Please try this instead:

    #header .widget {
      padding:0 !important;
    }

    Best regards,
    Rikard

    #939165

    Sorry Rikard,
    this also doesn’t change a thing. I let it in there, so you can try,
    Thanks.

    • This reply was modified 6 years, 5 months ago by Ralf_M.
    #939547

    Hi Ralf,

    Thanks for that. You have placed it inside a media query, which is not closed either:

    @media only screen and (max-width: 990px) {
    #menu-item-search {
        position: absolute;
        top: -30px;
        left: -50px;
    }
    #header .widget {
    visibility: hidden;
    }
    #header .widget {
      padding:0 !important;
    }

    Try closing the query first:

    @media only screen and (max-width: 990px) {
    #menu-item-search {
        position: absolute;
        top: -30px;
        left: -50px;
    }
    }

    Then you can add the rest of the CSS:

    #header .widget {
    visibility: hidden;
    }
    #header .widget {
      padding:0 !important;
    }

    I’m not sure why you have this though, what is it supposed to do?

    #header .widget {
    visibility: hidden;
    }

    Best regards,
    Rikard

    #939549

    Hi again Ralf,

    If the CSS I sent should still not be working after that then please try placing it at the top of Quick CSS, it should work then.

    Best regards,
    Rikard

    #939718

    Hey Rikard,
    that did it. You are right, this should not be within another query.
    The one you are asking is hiding the Menu-Bar-Widget on smaller screens (there is not enough place for it).

    Thanks a lot! You are great!
    This can be closed now.

    #939777

    Hi Ralf_M,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

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