• Resolved greatdee

    (@greatdee)


    Hi. My problem is that “Continued” on my blog archive page on mobile isn’t clickable. How to fix it? here’s the site: CLICK

Viewing 2 replies - 1 through 2 (of 2 total)
  • hannah

    (@hannahritner)

    Hey,
    Looks like this css is blocking your links:

    #content .main {
        float: right;
    }

    You just need to put that in a media query like this:

    @media (min-width: 992px) {
    #content .main {
        float: right;
    }
    }

    Hannah

    Thread Starter greatdee

    (@greatdee)

    Ok thanks, that works.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘"Continued" not clickable on mobile’ is closed to new replies.