MyBB Community Forums

Full Version: Making top and bottom panels center and fixed width like the theme body
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi,

i am trying to adjust the top and bottom panels of my forum just equal to the forum fixed width.

my site is http://www.worldofdth.com/

i have now added the 990px to the width of #panel option in custom.css now its showing like on current theme at top.
Can some one tell me to make the top panel center like the fixed width of theme?

thanks
you should either add or edit following css properties as mentioned to achieve what you want......

#panel {
width: 930px;
margin: auto auto;
}

#footer {
width: 930px;
margin: auto auto;
}

.bottommenu {
width: 910px;
}

#footer_content {
width: 930px;
}

#copyright {
width: 930px;
}

#footerbox_1
width: 208px;
}

#footerbox_2
width: 348px;
}


#footerbox_3
width: 308px;
border: 1px solid #1e1f26;
-moz-box-shadow: inset 0 0 5px #1c1d25;
-webkit-box-shadow: inset 0 0 5px #1c1d25;
box-shadow: inset 0 0 5px #1c1d25;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
Excellent Madhan Bhai Smile
It worked.