Viewing 3 replies - 1 through 3 (of 3 total)
  • Ops, just replied on presscustomizr.com.
    I copy the reply here:
    Hello Kasia,
    The problem is that you have an unclosed media query in your child-theme style.css, so basically all the following rules scope will be limited to that.
    That’s the culprit:

    /**********************************************
    BULLET POINTS IN MENU
    **********************************************/
    @media screen and (min-width: 980px) {
    .nav > li:last-child > a:after {
        content: "";
    }
    .nav > li > a:after {
        color: #becf9e;
        content: " \2022";
        margin-left: 16px;
    }

    As you can see it misses a closing } .
    Hope this helps.

    Thread Starter kasiapoleszak

    (@kasiapoleszak)

    I thought I checked that! Oh well… Thanks!

    PS. I do try to search the forum for solutions before I post here, in case you are wondering 😉

    😀
    Hehe, don’t worry, typos happen 😀
    Glad you solved!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Footer customization not working for smaller screens’ is closed to new replies.