Ah, it worked. Thanks Andrew.
tl;dr and solution –
apply styles specifically to posts or other types, in my case the class is called ‘single-post’. this is applied in the style.css file in my child theme.
.single-post .entry-footer {
display: none !important;
}
.single-post .entry-title{
text-align: center;
}
Thanks Andrew.
I am seeing the following –
<body class="single single-post postid-86 ...">
could you specify how I apply my style to one of these classes, say the ‘single-post’ class?
looking at my css code, would the correct syntax be something like-
single-post.entry-footer {
display: none !important;
}
single-post.entry-title{
text-align: center;
}