Viewing 3 reply threads
You must be logged in to reply to this topic.
dear sirs
How to show only blog title on startpage?
See here to understand what i mean:
https://dev4.cms06.at/
The field Freie Stellen must show the title of the blog entries
with link in normal font only.
Thank You for Your Help!
Best regards
Heinrich Hofstädter
Hello,
This is what i see when i open you blog page: https://postimg.org/image/z779ls81z/
The post’s title is showing correctly and it links to the post itself. Do you want to show only the title without the short description and “Continue Reading” link?
If this is the case, then just add this code into your Additional Css menu in Appearance > Customize:
article.default-style .entry-content {
display: none;
}
#blog-entries article .entry-readmore {
display: none;
}
Let us know.
Best regards!
Dear Sirs
Thank you for your quick reply
The issue with the css is:
On startpage only the title must be shown (https://dev4.cms06.at/) like it is now
on newspage the Title & excerpt must been shown (https://dev4.cms06.at/news/)
like it was (https://postimg.org/image/z779ls81z/)
Any idea?
Thanks again
With best regards
Heinrich
Hello,
In this case, please edit the css above to this:
.home article.default-style .entry-content {
display: none;
}
.home #blog-entries article .entry-readmore {
display: none;
}
So it will affect only the home page.
Best regards!
You must be logged in to reply to this topic.