Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #778390

    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.

    #778485

    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

    #779315

    Umm…
    Actually I wanna make it normal font-style and no underline.
    But it’s OK I will try the selector, thanks!

    • This reply was modified 7 years, 7 months ago by greatliona.
    #779319

    Hi!

    You can also try following

    .sentence_01* { 
        font-style: normal!important;
        text-decoration: none!important;
    }

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.