In category template there is first the banner image and then the list of articles of category. How to delete the banner?
1 Answers
Hello Angela !
To delete the initial banner from category template, you can log in to Dashboard > Customize > Custom Code > Header Code, add the following code:
<style>
.category .banner hgroup:after {
background: inherit;
}
.category .page-title {
display: none !important;
}
.category .banner.cover {
min-height: 120px;
}
.category .banner #get-started ,.category .banner .page-description {
display: none;
}
</style>
Hope this helps !
Please login or Register to submit your answer