I have 2 tabs in my application and to implement them I have used tomahawk's "t:panelTabbedPane". code is as follows:
<t:panelTabbedPane align="center" width="100%" serverSideTabSwitch="false" selectedIndex="#{bean.selectedIndex}" rendered="#{bean.someValue}">
<t:panelTab style="text-align:left;" label="Initiate New Access">
But here the problem is with alignment of text in tabs. My requirement is to show the text left aligned in tabs and to implement this I have written this:
style="text-align:left;"
But still these tabs showing the text center aligned. Please help me to solve this problem...thanks in advance