• I’ve been using Olsen lite for about 4 months now and have been very happy with it’s appearance and features. However a few weeks ago when viewed on mobile or tablet my page appears smashed to the left. It looks this way on every page the website. It creates long non user friendly paragraphs as well as blocking out my donation boxes and search bar. B it looks fine on desktop. I haven’t made any changes, perhaps an update changes something? Please help! I really like the theme and don’t want to have to switch.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi there,
    It seems you have some custom css causing this issue, and you can try this

    @media(max-width:991px) {
        .col-md-8 {
            width: 100%;
        }
    }

    to fix it or remove this

    .col-md-8 {
        width: 61.66666667%;
    }

    from your custom css box and replace it with

    @media(min-width:991px){
    .col-md-8 {
        width: 61.66666667%;
    }
    }

    in your custom CSS box under Appearance ? Customize ??Additional CSS

    Thank you for your feedback, I’d like to ask you, if you like the theme and could take a minute to review it here it would help us a lot!

Viewing 1 replies (of 1 total)
  • The topic ‘Every page is narrowed to the left’ is closed to new replies.