Skip to main content

I need to change the color of the tab of my skuid page. I tried creating a visualforce tab and changing the tab style. Here’s my code…


<!--apex:page action="{!redirect}&page=CustomerLogAT" extensions="skuid.Redirects" standardController="Community_Log__c"-->
<page standardcontroller="Community_Log __c" tabstyle="Community_Log_At__ tab" recordsetvar="c" extensions="skuid.Redirects" action="%7B!redirect%7D?page=CustomerLogAT">


I tried overriding the tab and not overidding the tab, but It still displays the home page tab style.


You need to use the skuid:page component method for overriding your VF Tab in order to get the full tab styling. 

Look at point number 7 of the “When to use this approach” section of this document:  http://help.skuidify.com/m/page-assignments-and-overrides/l/201793-using-the-skuid-page-visualforce-…



Thanks.