• Hello,

    You have an awesome plugin. One problem I have is where do I go to edit the css?

    I understand if you don’t have a user friendly css option box, but under plugins/editor I was hoping you could direct me to the css code for the following:

    1. Remove the large quote image (“) that appears on reviews.
    2. Input a long solid line after each review to separate them.
    3. Also, if I want to change the colors of anything, where do I go?

    Thank You,

    I would highly appreciate your help.

    https://wordpress.org/plugins/rich-reviews/

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

    (@nuanced-media)

    jfantasybooks,

    So the plugin uses .scss files for styling and a preprocessor to write to a .css file and minify it. So you you could if you wanted to, edit this file, however, it would take some work seeing as all the css is computed and then minified. Alternatively you could simply write styles into your frontend theme css file and they will over ride those provided by the plugin. Further you could, if need be, just drop inline style tags and simply add the styles to the relevant pages in the wp editor.

    Anyhow,

    1:
    Will replace the large quote with a normalized one

    <style>
         .testimonial_group .full-testimonial .rr_review_text .drop_cap {
             font-size: inherit;
             position: relative;
             top: 0;
             left: 0;
             opacity: 1;
         }
      </style>

    2:
    You could do this a number of ways. All of which will in one way or another target the .testimonial element. You can use css to simply add a border-bottom or you can use js to actually append a <hr /> element to each .testimonial element.

    3:
    If you want to change the colors of the stars, then you can do that using the color picker in the options dashboard. No other colors are set by the plugin, all colors will be inherited from the theme, so changing colors will want to be done there.

    Let me know if you still have questions,
    Thanks,
    Charlie Maxwell
    [NM_Developer]

    Thread Starter jfantasybooks

    (@jfantasybooks)

    Thank you for the timely reply!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Editing CSS in Plugin/Editor’ is closed to new replies.