Space,
I need to add and change the names of a few tabs on all styles.
Example:
I need to add where you have Links and Tracks, I want to add a Board Index Tab
I want to rename the Forum Tab to Information given it's not really taking you to the Forum
I would also like to add a Donate Tab so I can remove that line off the place it is at now on my board.
I would like a Portal Tab too.
That is about it.
How is the new style, trust you and yours are well?
Johnathan
Tabs
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
all the tabs are in template/menu.html
to change what the tabs say, just change the language variable and hard code the text like this
find
find
to change what the tabs say, just change the language variable and hard code the text like this
find
Code: Select all
replace with
{L_FORUM}
Code: Select all
now, to add a tab in the menu, just do thisInformation
find
Code: Select all
before add
</ul>
</div>
Code: Select all
adjust the html to match what you need
<li><a href="{U_LINKS}" title="{L_LINKS_PAGE}">{L_LINKS}</a></li>
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
Space
I understand the Forum to Information.
Still confused on the: Board Index or I could Call it Forum and make sure it links to the board index so how would that look. I add the
I understand the Forum to Information.
Still confused on the: Board Index or I could Call it Forum and make sure it links to the board index so how would that look. I add the
Code: Select all
But how do I change the HTML to Board Index or Forum so it links when clicked to the Board Index. Thanks
<li><a href="{U_LINKS}" title="{L_LINKS_PAGE}">{L_LINKS}</a></li>
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 3 times in total.
Re: Tabs
this will link to the index page
Code: Select all
<li><a href="{U_INDEX}" title="{L_INDEX}">{L_INDEX}</a></li>
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
Ok I am real Slow. I want the tab to say "Board Index"
In that code what do I change to to say "Board Index" is it: L_index so change to L_Board Index ?
In that code what do I change to to say "Board Index" is it: L_index so change to L_Board Index ?
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
um no way, not right check out blue space
Seems to me there are other sections to edit.
The Boar Index tab when on the portal stays on the portal. Something is not right.
Seems to me there are other sections to edit.
The Boar Index tab when on the portal stays on the portal. Something is not right.
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 6 times in total.
Re: Tabs
Code: Select all
i changed {L_INDEX} to Board Index<li><a href="{U_INDEX}" title="{L_INDEX}">Board Index</a></li>
anyway, we need to hook up in the shoutbox so you can tell me what you need as i look at it
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
It shows as this:
{Forum Information} {Board Index} See Bluespace theme
Also the Board Index code you gave doe snot work, meaning if I am on the portal and click it, it does nothing same anywhere on the site.
So imagine it like this, see your links above and download center, that is what I need for a Board Index so when clicked it take me to the Board index from anywhere on the site.
The Rename of Forum to Forum Information works because those links were part of your style but the name is not clean as you can see.
{Forum Information} {Board Index} See Bluespace theme
Also the Board Index code you gave doe snot work, meaning if I am on the portal and click it, it does nothing same anywhere on the site.
So imagine it like this, see your links above and download center, that is what I need for a Board Index so when clicked it take me to the Board index from anywhere on the site.
The Rename of Forum to Forum Information works because those links were part of your style but the name is not clean as you can see.
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
Code: Select all
<div id="info">
<ul class="menu">
<!-- IF not S_IS_BOT -->
<li><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></li>
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) -->
<li><a href="{U_REGISTER}"><strong>{L_REGISTER}</strong></a></li>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
<!-- IF S_DISPLAY_PM -->
<li><a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a></li>
<!-- ENDIF -->
<li><a href="#">{Control Panel}<!--[if gte IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<div class="holder p1">
<div class="slide">
<dl>
<dt>{L_USERS}</dt>
<dd><a href="{U_PROFILE}">{L_PROFILE}</a></dd>
<!-- IF U_MCP -->
<dt>{L_MODERATORS}</dt>
<dd><a href="{U_MCP}">{L_MCP}</a></dd>
<!-- IF U_MCP_FORUM -->
<dd><a href="{U_MCP_FORUM}">{L_MODERATE_FORUM}</a></dd>
<!-- ENDIF -->
<!-- IF U_MCP_TOPIC -->
<dd><a href="{U_MCP_TOPIC}">{L_MODERATE_TOPIC}</a></dd>
<!-- ENDIF -->
<!-- IF U_MCP_POST -->
<dd><a href="{U_MCP_POST}">{L_MODERATE_POST}</a></dd>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF U_ACP -->
<dt>{L_ADMINISTRATORS}</dt>
<dd><a href="{U_ACP}">{L_ACP}</a></dd>
<!-- ENDIF -->
</dl>
<br class="clear" />
</div>
</div>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<!-- IF U_RESTORE_PERMISSIONS -->
<li><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a></li>
<!-- ENDIF -->
<!-- ENDIF -->
<li><a href="#">{FORUM INORMATION}<!--[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>
<!-- IF S_DISPLAY_SEARCH -->
<li><a href="#">{L_SEARCH}<!--[if gte IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<div class="holder p1">
<div class="slide">
<dl>
<dt>{L_SEARCH_FOR}</dt>
<!-- IF S_USER_LOGGED_IN --><dd><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></dd><!-- ENDIF -->
<!-- IF S_LOAD_UNREADS --><dd><a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a></dd><!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN --><dd><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></dd><!-- ENDIF -->
<dd><a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></dd>
<dd><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a></dd>
<!-- IF not S_IN_SEARCH -->
<dt>{L_SEARCH_ADV}</dt>
<dd><a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a></dd>
<!-- ENDIF -->
</dl>
<br class="clear" />
</div>
</div>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<!-- ENDIF -->
<li><a href="{U_LINKS}" title="{L_LINKS_PAGE}">{BOARD INDEX}</a></li>
</ul>
</div>
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
-
- Posts: 102
- Joined: Wed Dec 15, 2010 8:42 pm
Re: Tabs
Space,
One last question, what do I do to have some of those tabs for example board index show to guests?
Thanks
One last question, what do I do to have some of those tabs for example board index show to guests?
Thanks
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 2 times in total.