Hi @martinpeake
We’re only storing one version of the slider. So from our end, all changes made are immediate. If you see something looks as you set it in the preview, but not at the frontend that can mean two things:
– a cache on the site that was not cleared
– 3rd party CSS codes that are unnecessarily strong
Looking at your site the problem is that there are unnecessarily strong 3rd party CSS codes on your site that override the look of the font of the p tags:
.p, p {
font-family: 'Lato', sans-serif !important;
font-size: 16px !important;
font-style: normal !important;
font-weight: 400 !important;
text-decoration: none !important;
}
This code forces all p tags to use 16px ‘Lato’ font, which overrides the styling you made in Smart Slider.
The code is inline so it’s hard to tell where does it come from exactly. But the style
tag that contains it has the following class: egf-frontend-styles
.
Does this sound like a plugin/theme you installed on your site? There are lots of other unnecessary !important
declarations in this style
tag, so best would be removing every !important
word from there.
Alternatively, you can mask this problem for now by using the Heading layer:
https://smartslider.helpscoutdocs.com/article/1814-heading-layer
and make sure the Tag
is set to div
, as it seems they don’t force styles for that element.