Page 1 of 1

Adding extra areas on portal

Posted: 18 Mar 2010, 13:42
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

Posted: 18 Mar 2010, 22:44
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

Posted: 19 Mar 2010, 00:15
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

Posted: 19 Mar 2010, 04:01
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}