• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Bluepearl-skins.com - Free XenForo Skins

Just want to say that Sean was extremely responsive in helping to fix a minor screw up on my part a few months back.

I was using a BP style on 'another platform' and picked up the same style for xenforo and both work great.
 
hi there how do I make the bp-brown fixed width. I didnt see the darkboard in the extra.css as you mentioned in the first post. If I adjust the page width controler in the style properties it looks wierd
 
Search for the template called extra.css and find this code below which is at the top of the template:

Code:
#bpwrapper {
border: 1px solid #202020;
margin: 10px 25px 0px 25px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
}

Change the above code to this:

Code:
#bpwrapper {
width: 1000px;
margin-left: auto !important;
margin-right: auto !important;
border: 1px solid #202020;
margin: 10px 25px 0px 25px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
}

Change width: 1000px; to the width you would like to use.
 
Top Bottom