MyBB Community Forums

Full Version: Put border or line spacing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to know that how to put spacing or border on index page..

Url to site -- http://ezyopensource.com/



[attachment=28378]
In your global.css:

#container {
padding: 20px; /* Will set spacing around. */
border: 1px solid #000; /* Will draw a black border around. */
}
Where to put or replace code in edit stylesheet: in Simple mode or advanced mode.....?
ACP > Templates & Style > Themes > Your Theme > global.css > edit in advanced mode

Then search for "#container". If there is already "padding" or "border" under that (between curly braces {})- modify accordingly, else: add.
Thanks sir... It worked...

Thanks a lot..