Home › Forums › Support › Listing category and blog posts This topic has 5 replies, 2 voices, and was last updated 3 years, 7 months ago by David. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts October 8, 2018 at 3:03 am #695914 ETO 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 GeneratePress 2.1.4GP Premium 1.7.2 October 8, 2018 at 6:32 am #696083 DavidStaff Customer Support 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. Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ October 8, 2018 at 7:51 am #696239 ETO It would be great if you could help me create such a style either by using extra CSS or the customizer. October 8, 2018 at 9:06 am #696295 DavidStaff Customer Support 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; } Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ October 8, 2018 at 12:31 pm #696531 ETO Thank you very much. It works. By the way, is it also possible to show each link with “check mark” instead of bullets? October 8, 2018 at 12:49 pm #696540 DavidStaff Customer Support 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 Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In