open overall_header.html
find
Code: Select all
for just adding a button link with no drop down <!-- IF S_USER_LOGGED_IN -->
<li class="top"><a href="{U_SEARCH_NEW}" class="top_link"><span>{L_SEARCH_NEW}</span></a></li>
<!-- ENDIF -->
add after
Code: Select all
for adding a button with drop down <li class="top"><a href="your link here" class="top_link"><span>button text title here</span></a></li>
add after
Code: Select all
don't forget to refresh your templates in ACP to see the changes
<li class="top"><a href="{U_INDEX}" id="" class="top_link"><span class="down">button text title here</span></a>
<ul class="sub">
<li><b>menu heading here</b></li>
<li><a href="menu link here">menu title text here</a></li>
</ul>
</li>