This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

How do I increase the width of the page?

  • Creator
    Topic
  • #6416
    bajzi
    Participant

    How do I increase the width of the page?
    Now is 960px and I need 1060px.
    Which css file, which line in css file?

    Will it affect other elements ?

    Thx

Viewing 5 replies - 1 through 5 (of 5 total)
  • Author
    Replies
  • #6423
    Jason Bobich
    Keymaster

    Hello,

    For CSS changes, it’s a good idea to use a tool like firebug or Google Chrome’s built-in developer tools to locate them and then put the edits either in your child theme or in the “Custom CSS” option on your theme options page.

    To see how the theme targets the overall width of the theme, and what you’d need to override from your own Custom CSS, see the one of these files that corresponds to how you have the options set.

    • /assets/css/shape/boxed-dark.css
    • /assets/css/shape/boxed-light.css
    • /assets/css/shape/stretch-dark.css
    • /assets/css/shape/stretch-light.css

    Also, here’s a helpful tutorial on how to use Firebug – http://vimeo.com/20917974. The only thing I’d suggest not doing is actually making edits to the theme’s CSS files, as it shows at the end of that video. However, the video serves as a good introduction to Firebug and how it can be used to find what CSS is effecting certain areas of your site without ever digging around in any files.

    #6841
    bajzi
    Participant

    OK, about width …
    I try in Custom CSS:

    div#top {
    max-width: 1282px;
    width: 100%;
    }

    div#main-menu {
    max-width: 1282px;
    width: 100%;
    }

    div#menu-wrapper {
    max-width: 1282px;
    width: 100%;
    }

    div#search-popup-wrapper {
    max-width: 1282px;
    width: 100%;
    }

    div#main-top {
    max-width: 1282px;
    width: 100%;
    }

    div#menu-inner.flip-orange {
    max-width: 1282px;
    width: 100%;
    }

    div#menu-middle-inner {
    max-width: 1282px;
    width: 100%;
    }

    div#menu-middle {
    max-width: 1282px;
    width: 100%;
    }

    #main {
    max-width: 1282px;
    width: 90%;
    }

    … but it different shows on other monitors.

    Have I made ​​a mistake somewhere in the code ?

    Thx …

    #6855
    Jason Bobich
    Keymaster

    Are you using the Boxed Layout?

    You’d just do this, as you see being done at the top of the files I referenced above.

    #top, 
    #featured, 
    #main, 
    #featured_below, 
    #bottom, 
    #after-footer {
    	max-width: 1282px;
    }
    #6879
    bajzi
    Participant

    Thx …

    You are so fast …

    :))

    #6896
    bajzi
    Participant

    That’s it …

    Thx …

Viewing 5 replies - 1 through 5 (of 5 total)
  • The forum ‘Alyeska Responsive WordPress Theme’ is closed to new topics and replies.