Quote:
Originally Posted by jonah1892
awesome job, looks great
If I wanted to change the look of the border around the forums where would I find the code for it
|
Believe it or not the border around the page is created using one simple image:
You can change the border by simple modifying this image.
If you want to have more control you will need to edit the CSS for
<div id="darkbord">
Code:
#darkbord {
border: 11px;
-webkit-border-image: url(images/Darkness3/darkness3/border.png) 11 11 11 11 repeat repeat;
-moz-border-image: url(images/Darkness3/darkness3/border.png) 11 11 11 11 repeat repeat;
}
Which is hardcoded into the CSS file vbulletin.css which can be modified by searching the template files.
Also note that i had to add the top and bottom border in Internet Explorer with:
Code:
<!--[if IE]>
<div id="iesplit"></div>
<![endif]-->
But you can also edit this by modifying the image:
or the CSS id="iesplit"
Hope this helps