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.
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.
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;
}
I solved it with this code
#top #wrap_all .main_color h1{
letter-spacing: 12px;
}
thanks.
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
I have tried the other code but it does not work.
Hi famarinu,
Thanks for the update, do you still need help with your problem? Thanks @guenni007 and @cg for helping out :-)
Best regards,
Rikard
No thank you.