Hey guys forum width?

General topics relating to phpBB3 to be posted in here.
Post Reply
kemraj
Forum Member
Forum Member
Posts: 15
Joined: Sat Jun 07, 2008 2:23 pm

Hey guys forum width?

Post by kemraj »

Hey how do you make the prosilver theme width smaller i want to know its too wide
User avatar
LDM
Site Admin
Site Admin
Posts: 1786
Joined: Thu May 29, 2008 6:51 pm

Re: Hey guys forum width?

Post by LDM »

Hello,

Find this in common.css in prosilver/theme:

Code: Select all

#wrap {  
padding: 0 20px;  
min-width: 650px;  
}  
and replace it with this:

Code: Select all

#wrap {  
padding: 0 20px;  
min-width: 650px;  
width: 750px;  
margin: 0 auto;  
 }  
Change the above 750px to your required size.

Open tweaks.css and delete:

Code: Select all

* html #search-box {  
margin-right: 35px;  
}  
Post Reply