Hi there,
I applied this following code to the special heading elements
#top #wrap_all .av-inherit-size .av-special-heading-tag {
font-style: italic;
text-decoration: underline;}
So it works, but there are some other special heading elements which I want them to be normal font-style and no underline.
How can I target them? I have turned on the “Custom Css Class” function,
But after i assign “sentence_01” to the element, how can I target it and change the code?
Thank you for your patience.
Hey Vision,
Try:
#top #wrap_all .av-inherit-size .av-special-heading-tag .sentence_01 {
font-style: italic;
text-decoration: underline;}
I’m making an assumption here, if it doesn’t work please include the page url or try:
.sentence_01 {
font-style: italic!important;
text-decoration: underline!important;}
not ideal, but ok.
Best regards,
Mike
Umm…
Actually I wanna make it normal font-style and no underline.
But it’s OK I will try the selector, thanks!