Hi @steviecussons,
The quotation marks in the code you posted were likely misformatted. Go to Appearance → Customize → Additional CSS (the menu labels might be different in your language) and add the code below:
@media ( min-width: 700px ) {
.site-title:after {
content: "Printmaking, drawing, digital image";
font-size: 18px;
font-weight: 400;
padding-left: 20px;
}
}
Let me know if that does it. The media query is added to make sure the tagline isn’t displayed on mobile, where there’s not enough horizontal room for it.
— Anders
Thank you for the reply, Anders, I really appreciate it. I have implemented that but with no result. Perhaps there is a conflict with the other minor changes I have made?
.single-post .featured-image { display: none; }
.page-header { min-height: 0 !important; }
.meta.bottom .tags { display: none !important; }
footer.site-footer.section-inner p:last-child { display: none; }
.posts { opacity: unset !important; }
@media ( min-width: 700px ) {
.site-title:after {
content: "Printmaking, drawing, digital image";
font-size: 18px;
font-weight: 400;
padding-left: 20px;
}
}
Thanks, Anders! The code didn’t work dynamically in customise but once I published, and left customise, it worked. Brilliant! Thank you so much for taking the time to help me. Stevie