Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Nuanced Media

    (@nuanced-media)

    Roger,

    So yeah you are correct, the plugin is set up to adopt the font colors of the theme on which is installed. You can, however, alter the text color simply by applying some custom css. The best way to change the standard text color of shortcode output would be to wrap the shortcodes in a div with a common selector. Then you can apply styles to all the child elements of that container.

    Here’s an example:

    <style>
    .text-color-mod > *{
         color: red;
    }
    </style>
    <div class="text-color-mod">[RICH_REVIEWS_SNIPPET]</div>
    <div class="text-color-mod">[RICH_REVIEWS_SHOW]</div>

    I hope this helps.

    Thread Starter theconsul

    (@theconsul)

    hey and thanks for the response.

    I did it the hard way, i modified the snippets php code because now i only wanted the color of the rich snippet to change

    snippet in black: https://www.freeflyvr.com/product/mobile-virtual-reality-headset/

    review page in white: https://www.freeflyvr.com/product-reviews/

    Roger

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change font color’ is closed to new replies.