cancel
Showing results for 
Search instead for 
Did you mean: 

How to Left-Align tabber text?

gayatrishahane
8 - Cloud Apps
8 - Cloud Apps

How to left-align the text in the tabber widget ?

gayatrishahane_0-1668213110623.png

 

1 ACCEPTED SOLUTION

Harry
9 - Travel Pro
9 - Travel Pro

Hello @gayatrishahane ,

Here is a widget script to align tabs to left


widget.on('ready',function(w, e) { 	
	
	$('.listDefaultCSS', element).css('text-align', 'left')
}) 

Please let me know if you have any questions

 

Always here to help,
Harry from QBeeQ

QBeeQ - Gold Implementation and Development Partner
www.qbeeq.pl

 

View solution in original post

2 REPLIES 2

Harry
9 - Travel Pro
9 - Travel Pro

Hello @gayatrishahane ,

Here is a widget script to align tabs to left


widget.on('ready',function(w, e) { 	
	
	$('.listDefaultCSS', element).css('text-align', 'left')
}) 

Please let me know if you have any questions

 

Always here to help,
Harry from QBeeQ

QBeeQ - Gold Implementation and Development Partner
www.qbeeq.pl

 

acemkizi
7 - Data Storage
7 - Data Storage
@Harry wrote:

Hello @gayatrishahane ,

Here is a widget script to align tabs to left


widget.on('ready',function(w, e) { 	
	
	$('.listDefaultCSS', element).css('text-align', 'left')
}) 

Please let me know if you have any questions


 

Thank you for your help. That worked for me!