MyBB Community Forums

Full Version: Width, Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Hi there, again, (new user)

I seen the site, and love the design, but I was wondering how I can make the width of the forums, like here on the community forum.

Anyone would know?
ACP >> Templates & Style >> Themes >> yourtheme >> global.css

Select #container from the dropdown and change the width to something fixed.

Here it's set to 940px
Thanks, how do you also get that rounded footer at the bottom, and not the usual one, see how it's rounded corners at the footer?
(2011-06-06, 10:44 PM)Waterbird Wrote: [ -> ]Thanks, how do you also get that rounded footer at the bottom, and not the usual one, see how it's rounded corners at the footer?

ACP > Themes > Your theme > Edit > global.css > Edit in Advanced Mode > find #container and add the following attributes in its style;
       -moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius:6px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius:6px;
box-shadow: 0px 0px 10px rgba(0,0,0,.3);
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.3);
	-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.3);

This'll make a rounded corners also make a shadow around the container Smile
Aaaah, thank you. Smile

One more question, how would I get the navbar to be like this site's navbar?
You've to make it using this guide: http://www.cssmenumaker.com/ Smile
I looked there, but I couldn't find the one this site uses tho.
(2011-06-06, 10:18 PM)AJS Wrote: [ -> ]ACP >> Templates & Style >> Themes >> yourtheme >> global.css

Select #container from the dropdown and change the width to something fixed.

Here it's set to 940px

Not Work for me...my default is 960 px, I increase with 1000px.
but my index page width remain same...
(2011-06-07, 11:28 AM)Waterbird Wrote: [ -> ]I looked there, but I couldn't find the one this site uses tho.

Get permission from the staff here and then I'll make a tutorial on how to make a similar menu. Wink
(2011-06-07, 11:33 AM)Aohor Wrote: [ -> ]
(2011-06-06, 10:18 PM)AJS Wrote: [ -> ]ACP >> Templates & Style >> Themes >> yourtheme >> global.css

Select #container from the dropdown and change the width to something fixed.

Here it's set to 940px

Not Work for me...my default is 960 px, I increase with 1000px.
but my index page width remain same...

The width is still set to 85% for your theme.
Pages: 1 2 3