MyBB Community Forums

Full Version: Have an extra border around the container?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

Take a look at my page at teachgalaxy.com

You can see a grey border around the container. But I want to add an extra border around the grey border. Is it possible to do that? If yes, what should I write?
Yes, just find <div id="container"> in header and replace with:
<div class="container2"><div id="container">

Then in your foother template add a </div> at the end.

In you global template add something like this:
.container2{border:5px solid red;}
Didn't work the way I wanted. Thanks though! Smile