[Resolved] add blocks to the widget area

Home Forums Support [Resolved] add blocks to the widget area

Home Forums Support add blocks to the widget area

Viewing 7 posts - 31 through 37 (of 37 total)
  • Author
    Posts
  • #1980109
    Loïc

    I think it works better when I add those gp social button as widgets in the toolbar … what do you think ?
    Also the buttons are not net and sharp …

    #1980908
    Loïc

    Hello

    I would like to have the three buttons justify on the right of bar. Can you please provide me with the css.

    Also the search widget will appear after navigation in the left bar. Is it possible to have it showing before navigation ?

    Thanks

    #1981257
    David
    Staff
    Customer Support

    Lets deal with the Top Bar first.

    Try this CSS:

    .top-bar.top-bar-align-center .widget:first-child {
        margin-left: unset;
    }
    
    .top-bar.top-bar-align-center .widget:last-child {
        margin-right: unset;
    }
    
    .top-bar .inside-top-bar {
        justify-content: space-between;
    }
    #1982423
    Loïc

    Hello,

    Now the secondary menu is too much on the left- how can I center it? – thanks

    #1982449
    David
    Staff
    Customer Support

    Remove that CSS.
    And try this:

    @media(min-width: 769px) {
        .top-bar.top-bar-align-center .widget:first-child {
            margin: auto;
        }
    
        .top-bar .inside-top-bar {
            position: relative;
        }
    
        .top-bar.top-bar-align-center .widget:last-child {
            position: absolute;
            right: 20px;
        }
    }
    #1983089
    Loïc

    Perfect – thanks

    #1983379
    David
    Staff
    Customer Support

    Glad to hear that!

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