[Resolved] costumizer css in header suddenly not working

Home Forums Support [Resolved] costumizer css in header suddenly not working

Home Forums Support costumizer css in header suddenly not working

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #2299445
    imke

    Hi there,
    everything was fine. I changed font-size of the menu and suddenly I cannot overwrite the following css any more:

    @media
    (max-width: 1000px) and (min-width: 769px) {
    .header-widget {display: none;}
    }

    @media
    (max-width: 768px) {
    .header-widget {display: none;}
    .top-bar {display: none;}
    }

    Very strange.
    Definitely need some help.

    #2299448
    imke

    @media and (max-width: 768px) {
    .top-bar .inside-top-bar:last-child {display: none !important;}
    .top-bar {display: none !important;}
    }
    This definitely is not working – can’t find the mistake.

    #2299533
    David
    Staff
    Customer Support

    Hi there,

    try this:

    @media (max-width: 768px) {
        .top-bar {
            display: none !important;
        }
    }

    The problem with your original line: @media and (max-width: 768px) is the and its not required and it breaks that CSS.

    #2299538
    imke

    :))))) THANK YOU!!

    #2299568
    David
    Staff
    Customer Support

    You’re welcome

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