Adding extra areas on portal

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Locked
User avatar
DannyG
BBCoder II
BBCoder II
Posts: 54
Joined: 10 Mar 2010, 18:05

Adding extra areas on portal

Post by DannyG »

Hi all,

Sorry another question from me :evil:

I want to add another side box area and another under my welcme message, How do I do this?

Regards,

Danny :o
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Adding extra areas on portal

Post by Stoker »

Take a look in the simpleportal_body.html
Its should be pretty obvious how to do it.
Board rules! No PM support
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 803
Joined: 05 Mar 2010, 01:10
Extra Rank: Donator.png
BBCodes: 2000
Favourite BBCode: porn tube
Favourite MOD: Non of Stokers
Location: up your bum
Contact:

Re: Adding extra areas on portal

Post by Steve »

simpleportal_body.html
find:

Code: Select all

		<span class="corners-bottom"><span></span></span></div>
	</div>
	<!-- End Welcome -->
add after:

Code: Select all

	<div class="forabg">
		<div class="inner"><span class="corners-top"><span></span></span>
		<ul class="topiclist">
			<li class="header">
				<dl class="icon">
					<dt>{L_PORTAL_WELCOME} {SITENAME}</dt>
				</dl>
			</li>
		</ul>
		<ul class="topiclist forums">
			<li>
			<div class="content" style="width:auto; height:auto; padding:10px; padding-bottom:0px;">
			<p style="font-size:18px; text-align:center;"> CONTENT IN HERE! </p>
			</div>
			</li>
		</ul>
		<span class="corners-bottom"><span></span></span></div>
	</div>
in the code just given and taken from stoker spammers html
find:

Code: Select all

font-size:18px;
replace the 18px part to what ever size font looks best
find:

Code: Select all

CONTENT IN HERE! 
add what ever content in here you like and refesh the template for the style
NAPWR wrote: Nice, Stoker is Hot
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: Adding extra areas on portal

Post by cisco007 »

I think you would also have to change this to what ever the block is gonna be!

Code: Select all

{L_PORTAL_WELCOME} {SITENAME}
Locked