Archived topic
Category Description
5 replies · Started by Marius on June 3, 2019
Hello,
how can I design the Category descpription like the posts in a container with the same Shadow?
And how can I design the pagination also with this shadow of the posts?
Hi there,
try this CSS:
.archive .page-header {
background-color: #fff !important;
padding: 40px !important;
}
@media (max-width: 768px) {
.archive .page-header {
background-color: #fff !important;
padding: 30px !important;
}
}
Hi David,
this works for the category description, but not for the pagination. There is the shadow missing.
So find this original CSS:
.sidebar .widget,
.comments-area {
border: 1px solid rgba(232, 234, 237, 1);
box-shadow: 0 0 10px rgba(232, 234, 237, .5)
}
and update it to:
.sidebar .widget,
.comments-area,
.paging-navigation,
.archive .page-header {
border: 1px solid rgba(232, 234, 237, 1);
box-shadow: 0 0 10px rgba(232, 234, 237, .5)
}
This also includes the archive page header, so i have edited the code i provided above to remove it from them.
Hi David, thanks, that works.
Glad to be of help