Hi Madhall,
1. The width for sidebar 1 is “span 2”:
By default, it is “span 4”. But I can see that it is changed in your site. You can changed it to span 2 by
Open: root/template/ja_magz/tpls/blocks/mainbody.php
Change “span2” to “span4”
"two_sidebars": {
"default" : [ "' . ($allowsidebar ? 'span6 offset4' : 'span12') . '" , "span4 offset-10" , "span2" ],
"wide" : [],
"xtablet" : [],
"tablet" : [ "span12" , "span6 spanfirst" , "span6" ]
},
"one_sidebar1": {
"default" : [ "' . ($allowsidebar ? 'span10' : 'span12') . ' has-sidebar1 pull-right" , "span2" ],
"wide" : [],
"xtablet" : [ "' . ($allowsidebar ? 'span10' : 'span12') . ' has-sidebar1 pull-right" , "span2" ],
"tablet" : [ "span12" , "span12 spanfirst" ]
},
2. How do I change the width for sidebars in articles?
As I can see that you have change the “span4” to 300px;
.span4 {
width: 300px;
}
In order to show the page as normal, you also have to adjust the size of span10, which define the width of main content. In this case, you can set the width for span10 of 600px.
Best regards