You need to sign in to do that
Don't have an account?
change the 'TabLabel' position from top to bottom
Hi,
According to the below code, I am getting "Tab1" and "Tab2" on the top of the page.
Is there any way for changing the 'TabLabel' position from top to bottom(like what we could do for pageBlockButtons - <apex:pageBlockButtons location="bottom" > )?
<apex:page standardController="Account" showHeader="true"
tabStyle="account" >
<style>
.activeTab {background-color: #236FBD; color:white;
background-image:none}
.inactiveTab { background-color: lightgrey; color:black;
background-image:none}
</style>
<apex:tabPanel switchType="client" selectedTab="tabdetails" id="AccountTabPanel" tabClass="activeTab"
inactiveTabClass="inactiveTab" >
<apex:tab label="Tab1" name="Tab1" id="first" >
Test Tab
</apex:tab>
<apex:tab label="Tab 2" name="Tab 2" id="second">
Test Tab
</apex:tab>
</apex:tabPanel>
</apex:page>
Thanks
Ambily
I doubt if you can do that directly using the component:(
Maybe, in such a case, you will have to create a custom view!
Cool_D