Blog posts title and sidebar
-
1) How can change the page title layout in blogs only? I want to display that blog head image only not any info like data author category etc(refer to ss 1)
2) How can I create a widget with the current category and post-publish date? (refer to ss 2)
3) Can I put different fonts for blog posts only not woocommerce and others?
Attachments:
You must be
logged in to view attached files.
Hello,
1. In order to hide these fields, paste the below code to the “Global Custom CSS” area in Theme Settings -> Custom CSS.
.single-post .wd-post-cat,
.single-post .meta-author {
display: none;
}
2. Sorry but there is no option in Theme Settings available for that. It requires customization and this is out of our theme support scope.
3. The font can be changed through the page builder, or rather edit any post and in the Text block settings -> Style -> Custom typography -> set any font as you want (more detail in the below video).
https://monosnap.com/file/b6WaqBm4CvvMeai7yhNCxIxTM8JsjU
Kind Regards
1)can I at least change the background color of the category its default green? want transparent
2) hide author avatar icon (refer ss 1 from previous reply)
1. Yep, please use the following code:
The background color of the category:
.single-post .wd-post-cat {
background-color: transparent;
}
Text color of the category:
.single-post .wd-post-cat a {
color: blue;
}
2. To hide the author avatar:
.single-post .meta-author .avatar {
display: none;
}
Thanks for your time and have a great day.
Kind Regards