Hi. What is the css to be able to style the fonts of the tabs in the combo widget?
I was able to get the code to style the list items –
.avia_combo_widget ul,li { font-size:18px !important;
}
But this leaves the text in the tabs way too small.
BTW is there some list of all the different classes that we are able to style?
thanks
Hi!
Try with this:
.avia_combo_widget ul li {
font-size:18px !important;
}
If it doesn’t work please post a link to your website, also here are some CSS snippets.
Cheers!
Josue
Thanks for replying.
Hi. I think your code is a cleaner way (than the code I had) to change the fonts of the items in that widget, but I meant the font of the Tabs on the top of the widget.
Hi!
Try this one:
.avia_combo_widget .tab_titles span {
font-size:18px !important;
}
Best regards,
Josue
Hi. Sorry I never came back to update.
It worked. Thank you for the quick help.
Just as an observation – I think this is the hardest part for people, to know how to “call” the element they want to change. It would be great if there was some “Key” people could use of all the possible elements on a page.