• Resolved Rik0399

    (@rik0399)


    Hi,

    I tried editting custom.css for the slider :

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

    So it would show text in white #FFFFF and size to 22px

    I cannot find/see where I can, via the settings where text/colour can be set?

    Please could you help?

    Many Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • anonymized-13171256

    (@anonymized-13171256)

    Don’t edit custom.css.

    The plugin does not provide settings for that yet.

    There are several options for custom CSS.
    http://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/

    1. Your theme’s stylesheet. Not recommended if you are using a free/premium theme as the next theme update will overwrite your modifications.
    2. Your theme’s custom CSS section if it offers one.
    3. The Additional CSS section of the Customizer.
    4. A plugin like Simple Custom CSS and JS.

    Thread Starter Rik0399

    (@rik0399)

    Hi,

    Thank you…

    Okay, understand customise route and it works 🙂

    I need help with css for ‘title’ and the ‘Name’ and ‘Date’ placeholders please as I’m rubbish at css 🙂

    anonymized-13171256

    (@anonymized-13171256)

    First, in the view editor, on the date custom field, add ‘testimonial-date’ to the CSS classes.

    https://www.screencast.com/t/ewwUSTpKO

    For example:

    .strong-view .testimonial-heading {
      color: purple;
    }
    .strong-view .testimonial-name {
      color: red;
    }
    .strong-view .testimonial-date {
      color: green;
    }

    If that doesn’t work, we may need to increase the specificity in order to override your theme. Likewise if you want to only change one template; e.g. Default but not Modern.

    Thread Starter Rik0399

    (@rik0399)

    Hi,

    Most grateful for you taking your time to show me this.

    I have created :

    .strong-view .testimonial-heading p {
    font-size: 22px;
    color: white;
    }

    .strong-view .testimonial-content p {
    font-size: 21px;
    color: white;
    }

    .strong-view .testimonial-name p {
    font-size: 21px;
    color: white;
    }

    .strong-view .testimonial-date p {
    font-size: 21px;
    color: white;
    }

    However, in the Slide ‘Edit View’ I can see ‘Name’ and ‘Date’ in Custom fields but cannot seem to create the other two fields i.e. ‘Content’ or ‘Title’.

    I did try to create them but nothing obvious in the custom fields that say this?

    Strangely however, the ‘content’ does show as required?

    Regards

    anonymized-13171256

    (@anonymized-13171256)

    No ‘p’ in heading, name or date.

    .strong-view .testimonial-heading {
    font-size: 22px;
    color: white;
    }
    
    .strong-view .testimonial-content p {
    font-size: 21px;
    color: white;
    }
    
    .strong-view .testimonial-name {
    font-size: 21px;
    color: white;
    }
    
    .strong-view .testimonial-date {
    font-size: 21px;
    color: white;
    }
    Thread Starter Rik0399

    (@rik0399)

    Hi Chris,

    Appreciated

    Many Thanks 🙂

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

The topic ‘Font, Size, Colour’ is closed to new replies.