Is it possible to change the shape of the article thumbnails in the home page? #179
-
I was wondering if is possible to change the rectangle shape of the articles thumbnails in the homepage for a more minimalistic & rounded corners as the newsroom theme: https://jamstackthemes.dev/demo/theme/newsroom/ If so, how can I change it? |
Beta Was this translation helpful? Give feedback.
Answered by
HEIGE-PCloud
Aug 12, 2021
Replies: 1 comment 6 replies
-
You can add your own custom CSS by editing .home[posts] .summary .featured-image-preview img.lazyloaded {
border-radius: 25px;
} will give you Make sure using the extended verion of Hugo to build the site for custom style to work. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
HEIGE-PCloud
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add your own custom CSS by editing
your_site/assets/css/_custom.scss
to achieve this looking.will give you
Make sure using the extended verion of Hugo to build the site for custom style to work.