function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
could & rockcould & rock 

tab framework on unauthenticated force.com site

Any recommendation on framework or approach for tab for unauthenticated force.com site?

Now trying to build an unauthenticated force.com site which looks like a authenticated site with Tabs.  I can expose data & VF page, but no tabs. seem I have to use code to do Tab framework
KaranrajKaranraj
You can use the <apex:tabpanel> tag for implementing Tab view in your Visualforce page
<style>
  .activeTab {background-color: #236FBD; color:white; background-image:none}
  .inactiveTab { background-color: lightgrey; color:black; background-image:none}
</style>
            
<!-- Create Tab panel -->
<apex:tabPanel switchType="client" selectedTab="name2" id="AccountTabPanel"
   tabClass="activeTab" inactiveTabClass="inactiveTab">
   <apex:tab label="One" name="name1" id="tabOne">content for tab one</apex:tab>
   <apex:tab label="Two" name="name2" id="tabTwo">content for tab two</apex:tab>
</apex:tabPanel>
Else you also implemented using frameworks like Bootstrap (http://getbootstrap.com/)or other. Check this link for implementing tab view using bootstap framework http://getbootstrap.com/components/#nav