This site is READ ONLY!! No support will be given! Everything in here is just for archiving purposes!
Code snippets/ small mods for phpBB3- these can be used to add small but useful features to your forum.
Forum rules
You need to be a registered member to view the topics within this forum
Steve
X-Steve
Posts: 1920 Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:
Post
by Steve » Sat Sep 18 2010 6:17 am
Set a mix-width for your foum.
Open styles/prosilver/theme/common.css
find:
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
}
replace with:
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
max-width: 900px;
margin: 0 auto;
}
Open styles/YOUR_STYLE/theme/tweaks.css
find:
Code: Select all
* html .forumbg table.table1 {
margin: 0 -2px 0px -1px;
}
add after:
Code: Select all
/* IE6 fix */
* html #wrap {
width: 900px;
}
Adjust
900px accordingly to the width you prefer
Refersh theme for prosilver.
Hello! and Do NOT contact me via private message for support!!
Bryan1998
Post
by Bryan1998 » Sat Sep 18 2010 10:04 pm
Thanks for this.
Germanboy
Post
by Germanboy » Sun Sep 19 2010 10:21 am
Very good. Thanks
Oliver
Post
by Oliver » Thu Sep 23 2010 5:27 am
Code: Select all
/* Main blocks
---------------------------------------- */
#wrap {
padding: 9px;
margin: 0px auto;
width: 88.7%;
text-align:left;
background-color:#eff3f6;
border: 2px solid #C00000;
Thats from skyblue style.I wish the Forum a minimum size of 1200. Two banners to be able to view all side by side.
A little goes a resolution of the banners piled up on top. HELP
http://www.muskleforum.com
Steve
X-Steve
Posts: 1920 Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:
Post
by Steve » Thu Sep 23 2010 5:32 am
Use this:
Code: Select all
/* Main blocks
---------------------------------------- */
#wrap {
padding: 9px;
margin: 0px auto;
width: 1200px;
text-align:left;
background-color:#eff3f6;
border: 2px solid #C00000;
Hello! and Do NOT contact me via private message for support!!
Oliver
Post
by Oliver » Thu Sep 23 2010 5:48 am
Many thanks steve. I put on this forum for a link to my website.
littlebyte
Post
by littlebyte » Tue Nov 09 2010 6:58 am
can i custom these value?
Steve
X-Steve
Posts: 1920 Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:
Post
by Steve » Tue Nov 09 2010 7:10 am
Adjust 900px accordingly to the width you prefer
Hello! and Do NOT contact me via private message for support!!
Ooopsie
ooopsie
Posts: 1046 Joined: Sat Sep 25 2010 12:15 pm
Real name: Guito :)
Country Flag: United States
Location: Index, WA. or the State of Shock most of the time.
Contact:
Post
by Ooopsie » Tue Nov 09 2010 11:22 am
No wonder you don't sleep!! You dream of this stuff all night....
Nice one Steve.