Underline the text of active tab

0
  Hi dear Mendix Developers, I have 3 tabs on my page. The Timer Overview tab is default one. On this page I need to underline aktive tab. - Timer Overview - Timer Entries and - Timer Reports Can you help me to that? Thanks for your help.  
asked
1 answers
1

HI,  Gökhan Sarıoğlu

 

1. Using below css code copy past on styling class like .scss file

2. Using below custom css class (custom-tabs) and copy past on tabcontainer -> apperance -> class 

3. it will be work

 

.custom-tabs .mx-tabcontainer-tabs > li.active{

border-bottom: 4px solid orangered !important;

 

}

answered