Hi there,
I want to set a color for my heading posts when its hover, how can i achieve that?
Also, i want to hide “the author” and the “date” under the image and heading. How to do that?
Thanks before for your concern.
Hi there,
I want to set a color for my heading posts when its hover, how can i achieve that?
Also, i want to hide “the author” and the “date” under the image and heading. How to do that?
Thanks before for your concern.
Hi,
To achieve that, you can add the code below in Theme Option CSS
.entry-title a:hover {
color:red;
}
Then to remove author and date, you can disable it under Theme Options > Blog > CONTENT > POST META

Hi there,
Thanks for your reply. I have disabled the Post Meta. All the of the feature has been hidden, include the categories. While i want to keep the categories. How to do that?
Hi there,
You can have the Post Meta enabled then add this code to the Global CSS:
.p-meta span, .p-meta span:nth-child(3):after {
display: none;
}
.p-meta span:nth-child(3) {
display: block;
}
Hope this helps.
Hi there,
Thanks for your help! It works