Adding extra areas on portal

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
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.
If not your topic may be ignored or locked!

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

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.

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

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}