Code: Select all
Open: styles/prosilver/template/overall_header.html
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
<div class="navbar">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select all
<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>‹</strong>
In-line Find
Tip: This is a partial match of a line for in-line operations.
Code:Select all
<li class="icon-home">
In-line Add after
Code:Select All
<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> » <!-- ENDIF -->
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
<!-- ENDIF -->
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select all
<!-- ENDIF -->
Code: Select all
Open: styles/prosilver/template/overall_footer.html
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
In-line Find
Tip: This is a partial match of a line for in-line operations.
Code:Select all
<li class="icon-home">
In-line Add after
Code:Select All
<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> » <!-- ENDIF -->
Code: Select all
<nav class="inventia-forum-menu">
<ul class="inventia-menu">
<li class="inventia-menu-item"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
<!-- IF S_DISPLAY_SEARCH --><li class="inventia-menu-item"><a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH}</a></li><!-- ENDIF -->
<!-- IF U_TEAM --><li class="inventia-menu-item"><a href="{U_TEAM}" title="{L_THE_TEAM}">{L_THE_TEAM}</a></li><!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST --><li class="inventia-menu-item"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><li class="inventia-menu-item"><a href="{U_REGISTER}" title="{L_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
<li class="inventia-menu-item"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
<!-- ENDIF -->
</ul>
</nav>
<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
<nav class="inventia-user-menu">
<ul class="inventia-menu">
<li class="inventia-menu-item"><a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_PROFILE}</a></li>
<!-- IF S_DISPLAY_PM --><li class="inventia-menu-item"><a href="{U_PRIVATEMSGS}" title="{L_PRIVATE_MESSAGES}">{PRIVATE_MESSAGE_INFO}</a></li><!-- ENDIF -->
<!-- IF S_DISPLAY_SEARCH --><li class="inventia-menu-item"><a href="{U_SEARCH_SELF}" title="{L_SEARCH_SELF}">{L_SEARCH_SELF}</a></li><!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS --><li class="inventia-menu-item"><a href="{U_RESTORE_PERMISSIONS}" title="{L_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a></li><!-- ENDIF -->
<!-- IF U_MCP --><li class="inventia-menu-item"><a href="{U_MCP}" title="{L_MCP}">{L_MCP}</a></li><!-- ENDIF -->
<!-- IF U_ACP --><li class="inventia-menu-item"><a href="{U_ACP}" title="{L_ACP}">{L_ACP}</a></li><!-- ENDIF -->
</ul>
</nav>
<!-- ENDIF -->
Code: Select all
<!-- IF U_PORTAL --><li class="inventia-menu-item"><a href="{U_PORTAL}" title="{L_PORTAL}">{L_PORTAL}</a></li><!-- ENDIF -->
Good to hear. I will definitely be using this style till we clearblue is out.weeb wrote:Definitely. Most of changes are done using CSS. The code is grouped in separate file. I think compatibility will be improved in new versions if necessary.