Featured Images – I don't want them to show
-
Hi,
I am hoping to have a way to not have my featured images show in their post page. Essentially, I want my main page to show the images but not the associated – so yes on slpccpa.com, but no on https://slpccpa.com/services/compilation-engagements/ and https://slpccpa.com/services/gst-filings/
Does anyone know if this is possible on CSS?
The blog I need help with is: (visible only to logged in users)
-
Hi haybyersg.
You can use the following CSS to remove the header image form the two pages you linked to, but keep it on the homepage. This css is page specific, so you will need to add it for every page you want to remove the image of and change the post ID.
For the Compilations Engagements page use this CSS,
.post-116 { background-image: none; height: auto!important; }For the GST Filings page you can use this,
.post-111 { background-image: none; height: auto!important; }If you are unsure of where to add the CSS code, take a look at this: https://en.support.wordpress.com/custom-design/editing-css/
-
Hi @haybyersg, you might want to try this, which removed the featured header image from all pages except for the home page. You don’t currently have a featured image on your home page, but just in case you would want to…
.page:not(.home) #page-header { display: none; }See how this works for you and click around to other pages as well. If this is not what you are wanting, let me know.
-
-
- The topic ‘Featured Images – I don't want them to show’ is closed to new replies.