Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1104436

    Hi,
    I would like to add space between letters in special titles.
    I tried to insert the code both in the fast CSS and in the Enfold Child file: style.css, but it is overwritten by another css.
    The code I tried was this:
    av-special-heading-tag .tithome h1 {
         text-transform: uppercase;
         letter-spacing: 12px! important;
    }
    thank you for your support.

    #1104832

    hi,
    I resolve this problem. I add this code CSS:
    #top #wrap_all .main_color h1{
    letter-spacing: 0.5em;
    }

    Thank you for your support.

    #1104841

    You have a blank space between the exclamation mark and ‘important’ in your CSS.

    12px! important => 12px !important

    try this:

    av-special-heading-tag .tithome h1 {
        text-transform: uppercase;
        letter-spacing: 12px !important;
    }
    #1104854

    I solved it with this code
    #top #wrap_all .main_color h1{
    letter-spacing: 12px;
    }
    thanks.

    #1104857

    yes – but please try to internalize what cg said. That was your syntax error.
    you can write it as letter-spacing: 12px!important; as well but the space if is there had to be after the value

    #1104860

    I have tried the other code but it does not work.

    #1105055

    Hi famarinu,

    Thanks for the update, do you still need help with your problem? Thanks @guenni007 and @cg for helping out :-)

    Best regards,
    Rikard

    #1105067

    No thank you.

    #1105941

    Hi,

    Thanks for the update, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘letter spacing’ is closed to new replies.