Hi,
I am currently building a concept site for a client. If you look at the link, I have a blog posts section at the bottom of the page.
I would like to remove where it says “CASE STUDIES”, change the text format, remove the date, and the little underline in the blog posts section at the bottom of the page.
I have been able to do this on another page by using the following quick css
#top.page-id-915 .slide-meta {
display: none!important;
}
#top.page-id-915 .slide-content .blog-categories { display: none; }
#top.page-id-915 .blog-categories.minor-meta { display: none!important; }
#top.page-id-915 .avia-content-slider .slide-entry-title { color: #555555 !important; text-align: left !important; font-weight: 300 !important; font-size: 18px !important; }
#top.page-id-915 .av-vertical-delimiter {
display: none !important;
}
How do I go about doing the same on this portfolio page? Ideally, I’d like to stop this info showing from quite a few places.
Thanks
Jon
Hey Jon,
Do you want the CSS to be global instead? If so you could simply remove this part from your CSS statements: .page-id-915
Best regards,
Rikard
Thanks Rikard,
That has worked, but the addresses are showing on the attached link. Any idea how to get rid of them via css.
Sorry for the double reply. I found this code on another page
.slide-meta { display: none; }
But, the attached page shows the word “date” under the top middle case study.
I think I fixed it! Sorry!
.slide-entry-excerpt { display: none !important; }