adding another level to bottom tab (followme2) skin
Design and Skin Customization
douglas:
Without seeing the actual code it is going to be difficult to tell what is going on.
Can you share the URL or post the code for the template in between the BBCode code tags so we see something like this:
so i use your quote below
let me see if it shows, so there is 2 table rows instead
of one
Without seeing the actual code it is going to be difficult to tell what is going on.
Can you share the URL or post the code for the template in between the BBCode code tags so we see something like this:
so i use your quote below
let me see if it shows, so there is 2 table rows instead
of one
<div class="bottom_tab">
<div class="table">
<div class="table-row">
{if $page_template == "index"}
{$tactive = "active"}
{/if}
<div class="table-cell {$tactive}">
<a href="{$jamroom_url}">{jrCore_icon icon="clock" size="24" color="6482B4"}</a>
</div>
<div class="table-cell" id="menu_button">
<a href="#">
{jrCore_icon icon="menu" size="24" color="6482B4"}
</a>
</div>
</div>
<div class="table-row">
{if $_post.profile_actions == 'feedback'}
{$eactive = "active"}
{/if}
<div class="table-cell {$eactive}">
{jrCore_module_url module="jrAction" assign="tUrl"}
<a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}/{$tUrl}/feedback" title="{jrCore_lang skin="jrFollowMe2" id=149 default="Feedback"}">
{jrCore_icon icon="notifications" size="24" color="6482B4"}
<span class="count feedback_count">0</span>
</a>
</div>
{if $_post.profile_actions == 'mentions'}
{$mactive = "active"}
{/if}
<div class="table-cell {$mactive}">
<a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}/{$tUrl}/mentions" title="{jrCore_lang skin="jrFollowMe2" id=19 default="Mentions"}">
{jrCore_icon icon="mention" size="24" color="6482B4"}
<span class="count mentions_count">0</span>
</a>
</div>
</div>
</div>
</div>
updated by @boplive: 02/09/24 11:29:48AM