davidbrewster Posted August 6, 2020 Share Posted August 6, 2020 Site URL: https://davidbrewsterwriter.com/blog I have a two level question relating to Bedford template: I want to change the 'read more' text on blog excerpts. I tried using the following custom CSS (as per other answers relating to other templates) but no luck. Bedford has a 'data-read-more' tag that I don't seem to be able to target. a.entry-more-link span { visibility: hidden; font-size: 0; } a.entry-more-link span:before { content: "Listen"; visibility: visible; font-size: 13px; } a.entry-more-link span:after { visibility: visible; } If I have more than one blog on my site, is there a way to target a change like this to a specific blog? Is it the same as targeting other pages using the relevant collection id? Thanks, David Link to comment
Solution tuanphan Posted August 6, 2020 Solution Share Posted August 6, 2020 Add to Home > Design > Custom CSS .entry-more-link a { visibility: hidden; font-size: 0; } .entry-more-link a:before { content: "Listen"; visibility: visible; font-size: 20px; } .entry-more-link a:after { visibility: visible; font-size: 20px; } If you want to change on One Page, add to Page Settings > Advanced > Header <style> .entry-more-link a { visibility: hidden; font-size: 0; } .entry-more-link a:before { content: "Listen"; visibility: visible; font-size: 20px; } .entry-more-link a:after { visibility: visible; font-size: 20px; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
davidbrewster Posted August 6, 2020 Author Share Posted August 6, 2020 Perfect! Thank you Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment