I'd like to display it on my homepage, but I'd like to be able to display 2/3 articles in a scrolling carousel, so that the block doesn't take up too much space vertically on the Homepage. Is this possible?
Also, is it possible not to display the date and category of the article in this widget? Just the title of the article and the brief description.
Thank you for your work, Manifesto is really an amazing theme !
I added the custom CSS in the "Advanced, Additional Css" of my Manifesto News List widget, on my homepage, and it still shows category and date of the post. :/
Hello Clapat Team !
I have a question about the "News list" widget.
I'd like to display it on my homepage, but I'd like to be able to display 2/3 articles in a scrolling carousel, so that the block doesn't take up too much space vertically on the Homepage. Is this possible?
Also, is it possible not to display the date and category of the article in this widget? Just the title of the article and the brief description.
Thank you for your work, Manifesto is really an amazing theme !
H
Hi Adrian,
Hiding date and category is very easy, with custom CSS. Just specify
.news-post ul.entry-meta.entry-date, .news-post ul.entry-meta.entry-categories {
display: none;
}
in customizer -> additional CSS
Adding an excerpt - doable except that you have to specify if it is for Gutenberg or Elementor (to tell you what to change).
The text (excerpt) you can enable it in Customizer -> Blog settings
To transform it in a carousel requires custom work
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hello,
I added the custom CSS in the "Advanced, Additional Css" of my Manifesto News List widget, on my homepage, and it still shows category and date of the post. :/
Attached files: Capture d’écran 2024-02-14 à 15.48.13.png
Hello Adrian,
What is the site URL plz?
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Is it possible to send it privately ? by email? As it's protected, right now, by password
Thanks !
Hi Adrian, sure, you can put in a private comment.
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hi, sorry, the correct CSS is
.news-post ul.entry-meta.entry-date, .news-post .entry-meta.entry-categories {
display: none;
}
plz replace the previous one I've sent with this one
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thank you, it works !
.news-post ul.entry-meta.entry-date, .news-post .entry-meta.entry-categories {
display: none;
}