Hi,
There is a letter-spacing: 1.5px; on table that I can’t seem to be able to turn to 0px. I have tried to add the below code into the custom css but it does not make any difference.
th {
letter-spacing: 0px !important;
}
Can you help? Thanks
Here is my website : http://goo.gl/w2mzEl
Hey!
Try adding this code to the Quick CSS:
table * {
letter-spacing: -1px !important;
}
Cheers!
Josue
Thanks but it does not seem to make any difference :(
Hi!
If you set it to 0 it won’t, because there wasn’t any letter-spacing property before, but if you set it to something lower than 0 it makes a difference (-1):
Regards,
Josue
I have set it at -2px and no change on my table.
Hi!
You have a typo on your code that is disabling all the code below it:
That ; after #upload should be a {
Regards,
Josue
Oh I am sorry for bothering you, that was my mistake !! Thanks for your help
No problem, you are welcome, glad we could help :)
Regards,
Josue