• Resolved Rik0399

    (@rik0399)


    @chris,

    Would you add this to your list please? :

    Font, Size, Text Colour, Background Colour

    I tried #ffffff in custom with no effect :

    /**
     * Strong Testimonials custom stylesheet
     *
     * Just a placeholder to allow use of wp_add_inline_style()
     */
    .strong-view .testimonial-heading {
      font-size: 18px;
      color: #ffffff;
    }
    .strong-view .testimonial-content p {
      font-size: 18px;
      color: #ffffff;
    }
    .strong-view .testimonial-name {
      font-size: 18px;
      color: #ffffff;
    }

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

    Regards

    • This topic was modified 9 years, 2 months ago by bdbrown.
    • This topic was modified 9 years, 2 months ago by bdbrown.
Viewing 1 replies (of 1 total)
  • anonymized-13171256

    (@anonymized-13171256)

    Here are some important tips on custom CSS in Strong Testimonials:
    https://support.strongplugins.com/article/custom-css-strong-testimonials/

    You probably simply need to add the template name as a CSS class. For example, if you are using the Default template:

    
    .strong-view.default .testimonial-heading {
      font-size: 18px;
      color: #ffffff;
    }
    .strong-view.default .testimonial-content p {
      font-size: 18px;
      color: #ffffff;
    }
    .strong-view.default .testimonial-name {
      font-size: 18px;
      color: #ffffff;
    }
    

    If that doesn’t work, post a link to the site so I can see how the theme CSS is affecting it.

Viewing 1 replies (of 1 total)

The topic ‘Custom’ is closed to new replies.