• How I can change Site width?
    Is it possible to wide width more than 1024px?
    In settings there are 2 options only 800px and 1024px.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Alex,

    you might change this within your style.css.

    I took a look at the official demo site of Magazine Basic, and they use a max width of 1200 px for their current version Magazine Basic 3.0.

    So just go to your style.css and look for the following:

    .grid {
    max-width: 1024px;
    }

    This may not be exactly 1024px, but it should be pretty obvious which value to choose.

    There might also be additional values such as margin, min-width etc., but you only need to adjust the (max-)width of 1024px.

    The official demo site e.g. uses the following:

    .grid {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 320px;
    width: 100%;
    }

    Of course you can choose any width you like. You could also switch max-width to 100% to make the site full-width. As (version 3.0 of) the theme itself is responsive, it will adapt the width to any device automatically.

    You may also consider using this as a child theme, because if they update the original theme, your changed values might be overwritten and the whole thing is being set back to 1024 px. again.

    Hope this is of help for you?

    Hi
    Alex-VP

    There is a final solution i used magazine basic 2.7.9 .i was successfully change my megazine basic default width:
    Just open
    your megazine basic functions.php file and search

    (1024 or 800) ok .You can find this line & change 1024 to 980 or whatever you want.

    Line Number: 508:
    pbt_radioBox(2, $value[‘name’], $value[‘desc’], $value[‘id’], array( __(‘800px’, ‘magazine-basic’), __(‘980px’, ‘magazine-basic’)), array(800,980));

    For More Information
    You can visit
    http://www.technolinkbd.com or mail me murad.cse@live.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Magazine Basic site width’ is closed to new replies.