Avada › Forums › Community Forum › [Avada theme] How remove "read more" link?
Tagged: read more character, php, Blog, read more, custom php, read more text, read more link, blog template, avada_blog_read_more_link, add filter, add_filter
-
AuthorPosts
-
Hello,
How can I delete or change the name “read more” link on my Blog?
Please help i cant find solution.
Tom
You’d have to create a custom CSS to hide it.
Use Chrome Developer, identify the syntax and apply the css value – display: none !important;
Hi @foxhunt_tom,
I have to disagree with @halfakermarketing.
I just posted a solution here.
https://theme-fusion.com/forums/topic/change-text-read-more-in-blog-layout/#post-661607
If you want to change the “>” after the “Read More” text, then you can use CSS.
Right click on the “>” on your blog and inspect the element. If you see something like this.
.fusion-blog-shortcode .fusion-read-more::after { content: '\f105'; top: 50%; right: -10px; padding-left: 5px; font-size: 14px; font-family: icomoon; position: absolute; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
Then, add this custom CSS to your page (or site).
.fusion-blog-shortcode .fusion-read-more::after { content: 'X'; /* X marks the spot. Change to another character or to none (no quotes) to be blank. Use !important if needed. */ }
How to apply custom CSS.
https://theme-fusion.com/documentation/avada/how-to/how-to-apply-custom-css/
-
AuthorPosts
- You must be logged in to reply to this topic.