How can I show the cover image in the list in tags and categories pages? #631
-
I have added these in the front matter expecting to see the cover image in the list view in all places.
But I'm only seeing the cover image in the list view in the home page and not in the tags page or the categories page. How can I set the list view to display the cover image in every page and not just the home page? I am new to Hugo and it is not super obvious to me on how I can configure this. Any help would be appreciated. @danielfdickinson do you have an idea about this? Reference: navendu.me |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You need to modify the CSS. The issue is: .tag-entry .entry-cover {
display: none;
} Reference: You can override that behavior using custom CSS. Hope that points you in the right direction. |
Beta Was this translation helpful? Give feedback.
You need to modify the CSS. The issue is:
Reference:
hugo-PaperMod/assets/css/common/post-entry.css
Line 50 in 3bcafa0
You can override that behavior using custom CSS.
Hope that points you in the right direction.