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.
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.
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;
}