how to move "Page Title" atop of Notice?

erich37

Well-known member
Hi,

I would like to change the position of the "Page Title" from currently underneath the "Notices" towards having it displayed just above the "Notices".

Is there an easy way to do this ?

Otherwise I would just like to change this at the Forum-Homepage.


Appreciate your help!

Many thanks!
 
Admin CP -> Appearance -> Templates -> PAGE_CONTAINER

Move the red code as indicated:

Rich (BB code):
						<xen:include template="ad_below_top_breadcrumb" />
					
						<xen:hook name="page_container_notices">
						<xen:include template="notices" />						
						</xen:hook>
						
						<xen:hook name="page_container_content_title_bar">
						<xen:if is="!{$noH1}">						
							<!-- h1 title, description -->
							<div class="titleBar">
								{xen:raw $beforeH1}
								<h1><xen:if
									is="{$h1}">{xen:raw $h1}<xen:elseif
									is="{$title}" />{xen:raw $title}<xen:else
									/>{$xenOptions.boardTitle}</xen:if></h1>
								
								<xen:if is="{$pageDescription.content}"><p id="pageDescription" class="muted {$pageDescription.class}">{xen:raw $pageDescription.content}</p></xen:if>
							</div>
						</xen:if>
						</xen:hook>

						MOVE RED CODE HERE
						
						<xen:include template="ad_above_content" />
						
						<!-- main template -->
						{xen:raw $contents}
						
						<xen:include template="ad_below_content" />
 
Top Bottom