adding another level to bottom tab (followme2) skin
Design and Skin Customization
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:
<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>
{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>
{if $_post.option == "follow"}
{$factive = "active"}
{/if}
<div class="table-cell {$factive}">
<a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}/{jrCore_module_url module="jrFollower"}" title="{jrCore_lang skin="jrFollowMe2" id=18 default="Followers"}">
{jrCore_icon icon="followers" size="24" color="6482B4"}
<span class="count followers_count">0</span>
</a>
</div>
<div class="table-cell" id="menu_button">
<a href="#">
{jrCore_icon icon="menu" size="24" color="6482B4"}
</a>
</div>
</div>
</div>
</div>