MyBB Community Forums

Full Version: Square Theme Width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi how to change the width dimension in the square theme, header is ok but the content forums is to many small.
How resolve?
Thanks
add the foll. code in global.css....

#content .wrapper {
    width: 1024px;
}

 and also change the width of .breadcrumb from square.css....

.breadcrumb {
    width: 1024px;
}

PS: change the value of width as per your need
(2015-10-02, 05:14 AM)mmadhankumar Wrote: [ -> ]add the foll. code in global.css....

#content .wrapper {
    width: 1024px;
}

 and also change the width of .breadcrumb from square.css....

.breadcrumb {
    width: 1024px;
}

PS: change the value of width as per your need

Thanks so much....i have another question, sidebar with the latest activty do not appear, how resolve.
Regards
(2015-10-02, 06:26 AM)Max_69 Wrote: [ -> ]
(2015-10-02, 05:14 AM)mmadhankumar Wrote: [ -> ]add the foll. code in global.css....

#content .wrapper {
    width: 1024px;
}

 and also change the width of .breadcrumb from square.css....

.breadcrumb {
    width: 1024px;
}

PS: change the value of width as per your need

Thanks so much....i have another question, sidebar with the latest activty do not appear, how resolve.
Regards

Build #7 - Changes
- Updated to MyBB 1.8.5.
- Removed the latest activity sidebar, the code runs all the querys from portal.php and that's not good. It's better if you use a plugin instead.
Ah ok...thanks for response.