Page 1 of 1

adding a drop menu button...

Posted: Wed May 11, 2011 7:31 pm
by spaceace
to add a drop menu in my latest styles... this does not apply to my Concept style.

for my example, i will be just using the default drop items i already have in my menu. just post if you need any assistance ;)

open template/menu.html

find
Code: Select all
</ul>
</div>
before add
Code: Select all
		<li><a href="#">{L_FORUM}<!--[if gte IE 7]><!--></a><!--<![endif]-->
		<!--[if lte IE 6]><table><tr><td><![endif]-->
			<div class="holder p1">
				<div class="slide">
					<dl>
						<dt>{L_INFORMATION}</dt>
							<dd><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></dd>
								<!-- IF S_DISPLAY_MEMBERLIST -->
									<dd><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></dd>
								<!-- ENDIF -->
						<!-- IF not S_IS_BOT and U_MARK_FORUMS or U_MARK_TOPICS -->
							<dt>{L_MARK}</dt>
								<!-- IF not S_IS_BOT and U_MARK_FORUMS -->
									<dd><a href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a></dd>
								<!-- ENDIF -->
								<!-- IF not S_IS_BOT and U_MARK_TOPICS -->
									<dd><a href="{U_MARK_TOPICS}">{L_MARK_TOPICS_READ}</a></dd>
								<!-- ENDIF -->
						<!-- ENDIF -->
					</dl>
					<br class="clear" />
				</div>
			</div>
		<!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>