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
viswadaviswada 

CSS tabs for Visualforce pages

Hi all,

 

          I came with one issue  that is, I have 20 visualforca pages  .  I nedd to assign css tabs for that visulaforce pages inorder to publidh them using force.site, how can we developed using css tabs,

kiranmutturukiranmutturu

CSS tabs in the sence i think you need to create some tabs give the custom style to those tabs right?

 

you can make use of apex:tabpanel and apex;tab....for that other wise u can create a html tabs like below and add the same to vf pages

 

<ul class="tabs">
<li><a href="#">Tab 1</a></li>
<li><a href="#">Tab 2</a></li>
<li><a href="#">Tab 3</a></li>
</ul>
 
<!-- tab "panes" -->
<div class="panes">
<div>First tab content. Tab contents are called "panes"</div>
<div>Second tab content</div>
<div>Third tab content</div>
</div>