This site is READ ONLY!! No support will be given! Everything in here is just for archiving purposes!

prosilver fixed width

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 ;)
Locked
User avatar
Steve
X-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:

prosilver fixed width

Post by Steve »

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

Re: prosilverfixed width

Post by Bryan1998 »

Thanks for this.
Germanboy

Re: prosilver fixed width

Post by Germanboy »

Very good. Thanks
Oliver

Re: prosilver fixed width

Post by Oliver »

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 smile_clapping

http://www.muskleforum.com
User avatar
Steve
X-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:

Re: prosilver fixed width

Post by Steve »

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

Re: prosilver fixed width

Post by Oliver »

Many thanks steve. I put on this forum for a link to my website.
littlebyte

Re: prosilver fixed width

Post by littlebyte »

can i custom these value?

Code: Select all

max-width: 900px;
User avatar
Steve
X-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:

Re: prosilver fixed width

Post by Steve »

Adjust 900px accordingly to the width you prefer ;)
Hello! and Do NOT contact me via private message for support!!
User avatar
Ooopsie
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:

Re: prosilver fixed width

Post by Ooopsie »

No wonder you don't sleep!! You dream of this stuff all night.... :lol:

Nice one Steve.
Locked