I have CSS in more than one place and I think it needs to be combined! Any advice about this would be appreciated. If it should be combined, where should it go?
This is in ‘additional CSS’:
.x-close-content-dock .widget a {
color: red !important;
}
@media (max-width: 767px){
.tco-content-dock {
display: none !important;
}
}
This is inserted via the ‘Simple CSS’ plugin:
/* ===== Strong Testimonials ===== /
/ ----- Default template ----- */
/* heading color */
.strong-view.default .testimonial-heading {
color: #3383ff;
}
/* testimonial text color */
.strong-view.default .testimonial-content p {
color: black;
}
/* custom fields color */
.strong-view.default .testimonial-client div {
color: gray;
}
/* heading */
.strong-view.default .testimonial-heading p {
text-align: center;
}
/* circle or oval depending on image’s aspect ratio /
.strong-view.default .testimonial-image img {
border-radius: 50%;
}
/ normal font weight on client name */
.strong-view.default .testimonial-name {
font-weight: normal;
}
.testimonial-heading {
font-size: 28px;
line-height: 1.0;
}
@media (max-width: 767px) {
.x-content-dock {
display: none;
}
}
This is in 'Content CSS" in Cornerstone:
@media (max-width: 767px) {
.tco-content-dock {
display: none;
}
.x-recent-posts-date {
display: none !important;
}
}
.entry-title {
text-align: center;
}