link for register drop-down?

erich37

Well-known member
Hi,

I am using an image as "Notices".
When a guest clicks onto this image, then the "Register Drop-Down box" should open up.

How to achieve this?


Many thanks!
 
From the login_bar template, this is what triggers the dropdown:

Rich (BB code):
<xen:require css="login_bar.css" />

<div id="loginBar">
	<div class="pageWidth">
		<div class="pageContent">	
			<h3 id="loginBarHandle">
				<label for="LoginControl"><a href="{xen:link login}" class="concealed noOutline">{xen:if $xenOptions.registrationSetup.enabled, {xen:phrase log_in_or_sign_up}, {xen:phrase log_in}}</a></label>
			</h3>
			
			<span class="helper"></span>

			<xen:edithint template="login_bar_form" />
		</div>
	</div>
</div>
 
Top Bottom