Erm...

MichaelDance

Well-known member
I Wanted to make the forum skin look like our maint atm,
url: http://novdev.com // forum: http://corporate.novdev.com

I made a Phrase called feeds With:
PHP:
<marquee><b>What our Clients say:</b> Welcome to NovDev!</marquee>

I changed Header to look like:
PHP:
<xen:hook name="header">
<div id="header">
<div class="feeds">{xen:phrase feeds}</div>
    <xen:include template="logo_block" />
    <xen:include template="navigation" />
    <xen:if is="{$canSearch}"><xen:include template="search_bar" /></xen:if>
</div>
</xen:hook>

CSS:
PHP:
.feeds {
    background-image: url('http://novdev.com/imgs/testimonal.png');
    float: right;
    height: 29px;
    width: 426px;
    padding: 12px 12px 0 12px;
    margin: 10px 200px 0;
    font-family: "Tahoma", Verdana, Arial;
    font-size: 11px;
    text-decoration: none;
    color: #ffffff;
}

But http://corporate.novdev.com/index.php?members/jackery.2/ Its replaced a tab too :s
 
I tested what you have above and can't reproduce. The tab name comes from the member_view template and uses the information phrase.

Rich (BB code):
<ul class="tabs mainTabs Tabs" data-panes="#ProfilePanes > li" data-history="on">
<li><a href="{$requestPaths.requestUri}#profilePosts">{xen:phrase profile_posts}</a></li>
<xen:if is="{$showRecentActivity}"><li><a href="{$requestPaths.requestUri}#recentActivity">{xen:phrase recent_activity}</a></li></xen:if>
<li><a href="{$requestPaths.requestUri}#postings">{xen:phrase postings}</a></li>
<li><a href="{$requestPaths.requestUri}#info">{xen:phrase information}</a></li>
<xen:if is="{$warningCount}"><li><a href="{$requestPaths.requestUri}#warnings">{xen:phrase warnings} ({xen:number $warningCount})</a></li></xen:if>
<xen:hook name="member_view_tabs_heading" params="{xen:array 'user={$user}'}" />
</ul>

Try deleting the feeds phrase and see what the tab shows.
 
I tested what you have above and can't reproduce. The tab name comes from the member_view template and uses the information phrase.

Rich (BB code):
<ul class="tabs mainTabs Tabs" data-panes="#ProfilePanes > li" data-history="on">
<li><a href="{$requestPaths.requestUri}#profilePosts">{xen:phrase profile_posts}</a></li>
<xen:if is="{$showRecentActivity}"><li><a href="{$requestPaths.requestUri}#recentActivity">{xen:phrase recent_activity}</a></li></xen:if>
<li><a href="{$requestPaths.requestUri}#postings">{xen:phrase postings}</a></li>
<li><a href="{$requestPaths.requestUri}#info">{xen:phrase information}</a></li>
<xen:if is="{$warningCount}"><li><a href="{$requestPaths.requestUri}#warnings">{xen:phrase warnings} ({xen:number $warningCount})</a></li></xen:if>
<xen:hook name="member_view_tabs_heading" params="{xen:array 'user={$user}'}" />
</ul>

Try deleting the feeds phrase and see what the tab shows.
Some reason its still there..
 
Well... you've got me scratching my head right now. Hopefully someone else can pop in and assist as I'm heading out to go watch the Super Bowl. If you haven't got it resolved when I get back I'll take another look.
 
Well... you've got me scratching my head right now. Hopefully someone else can pop in and assist as I'm heading out to go watch the Super Bowl. If you haven't got it resolved when I get back I'll take another look.
same lol that's why i asked here i don't see how its possible that its in the tab when its got its own phase and i only edited the header template.
 
Top Bottom