• Hey guys

    I’m somehow not able to disable the responsiveness of the theme. I really like it, but my client wants a fixed width for every window size (960px).

    Could anyone tell me how to make this work?

    Thank you very much.

    Greetings
    jodokkk

Viewing 1 replies (of 1 total)
  • Hi jodokkk,

    please keep in mind that nowadays it isn’t a good idea at all to have a website which is not responsive, especially not since Google made this a ranking criteria. That means you might want to recommend your client to change his mind… ??

    Anyway, in case the theme doesn’t have an option to disable the responsive layout, you would need to modify all elements which are responsive at the moment, for example:

    .site-container {
        width: 960px !important;
        margin: 0 auto;
    }

    In general you would need to customize or remove all affected CSS within the media queries in the stylesheet (style.css).

    If you plan to do this, it’s also recommended to create a child theme first. Otherwise these changes will be lost after every theme update.

Viewing 1 replies (of 1 total)
  • The topic ‘disable responsive’ is closed to new replies.