Left sidebar: fixed skyscraper

Moses

Well-known member
I'm playing with a skyscraper advertisment (120x600) in the left column for members < 10 posts. It's currently sitting there nicely, and is fixed so it stays visible when guests scroll.

My issue is when someone clicks 'Log in or Sign up', I need to get the left column to expand with the main header.

Link to the theme is here: http://www.greenandgoldrugby.com/community/index.php

Header Alignment.webp
 
Your skyscraper is at the very top of the body and is above the login bar. Try moving it to below the login bar which is below this code in PAGE_CONTAINER:

Code:
<xen:if is="{$visitor.is_moderator} || {$visitor.is_admin}">
	<xen:include template="moderator_bar" />
<xen:elseif is="!{$visitor.user_id} && !{$hideLoginBar}" />
	<xen:include template="login_bar" />
</xen:if>
 
Top Bottom