Hey there stuli1989,
How are you doing today?
Generally you should be able to change that by using translation files (didn’t actually check that so I’m not sure).
Alternatively you should be able to change that with some custom CSS.
Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
.post-template-1 .details .post-small-button a i:before {
display: none;
}
.post-template-1 .details .post-small-button a:after {
content: 'Read More';
}
.post-template-1 .details .post-small-button {
width: 100px;
}
.post-template-1 .details .post-small-button a {
width: 100%;
font-size: 14px;
}
This should be the result http://screencast.com/t/lnCXnQDxPRzd.
Hope this helps 🙂
Cheers,
Bojan
Hi Bojan,
Thanks for the tip.
Made the change using the Custom CSS plugin and now Read More appears however on two separate lines. One for each word 🙁
Any idea why this might be happening?
Screenshot:
http://i.imgur.com/JEUF3kA.png
Custom CSS Screenshot:
http://i.imgur.com/wGyDk7y.png
Cheers,
stuli1989
Hey again stuli1989,
For some reason part of the code is not working, I’m assuming that’s the part that is giving width 100px to the button, I’m not sure why since everything looks fine when this is added using inspector so lets try with adding more specificity to that selector to see if that will help.
Try adding this instead:
.post-template-1 .details .post-small-button a i:before {
display: none;
}
.post-template-1 .details .post-small-button a:after {
content: 'Read More';
}
.post-template-1 .post-content .details .post-small-button {
width: 100px;
}
.post-template-1 .details .post-small-button a {
width: 100%;
font-size: 14px;
}
If it is the same result, please keep the code added and let me know so I can see which part is overriding it.
Best regards,
Bojan
Hey Bojan,
Tried the updated code however it is still on two lines.
Have left it in so that you can check when you get time to.
Thanks a ton for all this,
Regards,
stuli1989
Hey again stuli1989,
It was actually the link one that was getting overridden, so adding specificity to that one should do the trick, please replace the code with the following:
.post-template-1 .details .post-small-button a i:before {
display: none;
}
.post-template-1 .details .post-small-button a:after {
content: 'Read More';
}
.post-template-1 .post-content .details .post-small-button {
width: 100px;
}
.post-template-1 .post-content .details .post-small-button a {
width: 100%;
font-size: 14px;
}
Please let me know if this works 🙂
Cheers,
Bojan
Hey Bojan,
Thanks a ton for this! It works 🙂 🙂
If your ever in Bombay a meal is on me.
Regards,
stuli1989
Awesome! Glad I could help 🙂
If your ever in Bombay a meal is on me.
Sounds good! 🙂
Have a great day!
Cheers,
Bojan
Where did you add the “Read More” text since I also want to do this with my website 🙂