Hi,
I’m using WPML to translate layer slider, on the french version, between an “f” and an “i” the letter spacing isn’t being respected. Take a look at the first word. I’ve tried adjusting the letter spacing but no change.
Any idea how to fix this? I’d like to keep the phrase…
Thanks
Hey entrepreneur41,
Please provide a link to the actual site/page in question so we can look into this issue further
Best regards,
Jordan Shannon
Hi,
Add this to quick css:
#layerslider_12 p.ls-layer{
letter-spacing:inherit!important;
}
Best regards,
Jordan Shannon
Thanks for that, but it did the opposite of what I’m looking for. It reduced all the letter spacing to an equal, but too small amount.
The wide spacing currently visible on the site (set to 5 in the Layer Slider) is what we’re after; we’d just like the “f” and the “i” in the word enfin to reflect that same spacing.
Hi entrepreneur41,
Best regards,
Victoria
Hi,
As far as I know you can’t change the letter spacing for individual characters or pairings. You could try to use the font-kerning css attribute to deactivate the default kerning information which is “hardcoded” into the font (see https://developer.mozilla.org/de/docs/Web/CSS/font-kerning ).
You can use it like:
#layerslider_12 p.ls-layer{
font-kerning: none;
}
Best regards,
Dude