Archived topic
Listing category and blog posts
5 replies · Started by ETO on October 8, 2018
Hello,
I want to list my posts on blog and category pages as an unordered list like here.
I couldn't do it with theme customizer: screenshot
Hi there,
it would require some CSS to do that, if you want to make the customizer changes so only the title is displayed then we can help recreate that style.
It would be great if you could help me create such a style either by using extra CSS or the customizer.
So first off you need to make the Customizer changes that you showed in your screenshot.
Then add this CSS:
article .entry-meta, article .entry-summary {
display: none;
}
article .inside-article {
padding: 0 !important;
}
article .entry-title {
font-size: 20px;
}
article .entry-title:before {
content: '\2022';
margin-right: 0.5em;
}
Thank you very much. It works.
By the way, is it also possible to show each link with "check mark" instead of bullets?
It uses HTML unicodes, so any of these are available:
https://www.w3schools.com/charsets/ref_utf_dingbats.asp
So edit this CSS with the new Hex code provided in the list above.
article .entry-title:before {
content: '\2022'; /* swap just the 2022 for the correct hex code */
margin-right: 0.5em;
}
Note the \ must remain