Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #463661

    I want to turn off the responsive design but, still need to be able to control the size – dimensions of the page width. Is that possible?

    When I uncheck responsive in admin area then the setting for the container width disappears. Can I set it manually?

    Thanks

    #464054

    Hey Lane!

    Please go to Enfold theme options > General Layout > Dimensions and disable responsive layout and then add following code to Quick CSS in Enfold theme options under General Styling tab

    .container {
      max-width: 1310px;
    }

    Cheers!
    Yigit

    #464122

    Just tired that and it does not make the page any wider. Its stuck at 1010px wide using the boxed layout. I need it to be wider to fit some NON responsive elements. I have the responsive disabled.

    I tired
    .container {
    width:1310px !important; }
    Nothing seems to force the entire website to be wider..

    Thanks!

    #464124

    Hey!

    Can you post the link to your website please? We may need a temporary admin login as well. Code works fine on my local installation.

    Regards,
    Yigit

    #464134

    http://www.reachmedia.us/hire/

    You can see the image in the middle is 1010px wide.
    Boxed layout – NON responsive.

    Using this-
    .container {
    width:1310px !important; }

    #464140

    Hey!

    Code should be as following

    .container {
      max-width: 1310px;
    }

    Please note that the one i posted is using “max-width” and the one you added is “width”.

    Best regards,
    Yigit

    #464147

    I tired that it did not do anything so I tried just width.. And I tried adding !important..

    Nothing seems to change the width of the website.

    I have it as this but nothing is changing the width to 1310px..
    .container {
    max-width: 1310px;
    }

    #464152

    Hi!

    Please post a temporary admin login so we can look into it.

    Regards,
    Yigit

    #464160

    I do want it using the boxed layout..

    #464169

    Hi!

    I have added following code to bottom of Quick CSS as well

    .boxed#top, .html_boxed.html_header_sticky #header {
      width: 1310px;
    }

    Please review your website now

    Best regards,
    Yigit

    #464187

    Works great!! Thanks for all your help!!!

    #464190

    Hey!

    You are welcome, we are always happy to help! Let us know if you have any other questions or issues

    Regards,
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Page Size when not responsive?’ is closed to new replies.