• Hello, i am trying to change the color of the letters while using the shortcode. When applying custom css to the short code element, no change is visible.

    Thanks in advance

    This is the CSS applied from the docs:

    p.zeno_font_resizer > a {
    color: #1b4671;
    }
Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hello, there is a span between the p element and the a element. Try it like this:

    p.zeno_font_resizer a {    color: #1b4671;}
    Or like this:

    p.zeno_font_resizer > span > a {    color: #1b4671;}

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.