[Resolved] Top bar widget area background color/colour in mobile view

Home Forums Support [Resolved] Top bar widget area background color/colour in mobile view

Home Forums Support Top bar widget area background color/colour in mobile view

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2043358
    Pete

    I can’t find this in the support forum so I thought I ask here for others as well…

    How do I change the top bar widget area background color/colour in mobile view?

    #2043519
    David
    Staff
    Customer Support

    Hi there,

    you would need some CSS – can you share a link to the site so i can see its layout and content ?

    #2043564
    Pete

    Isn’t there some generic CSS that would apply to the default set up?

    #2043584
    David
    Staff
    Customer Support

    If its the themes top bar widget area then the base CSS is this:

    @media(max-width: 768px) {
        .top-bar {
            background-color: #f00;
            color: #000;
        }
        .top-bar a {
            /* generic link styles here */
        }
    }

    but that is a very global scope style and won’t overwrite more specific styles.

    #2043758
    Pete

    Thanks David, that worked a treat. I updated my question title to included “widget” ๐Ÿ™‚

    #2043769
    David
    Staff
    Customer Support

    Awesome – glad to be of help ๐Ÿ™‚

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