Under Appearance → Customize → Extra CSS (Utseende → Anpassa → Extra CSS) you can add, for instance:
.blogpost-button {
font-family: "Times New Roman";
}
Thanks, that worked! You´re my hero! 🙂
Do you also know where to find (and change) the code for the page navigation at the bottom of the page as well? At this time it says “next” there, and I want to change that text.
-
This reply was modified 5 years, 9 months ago by
folkeserbe.
It looks as if the theme didn’t do correct preparations for translation of some parts.
The function definition for personalblogily_numeric_posts_nav() doesn’t call any translation functions. Therefore this string isn’t available for translation.
Here’s a quick and dirty CSS fix for this. Insert the following via Utseende → Anpassa → Extra CSS:
.next.page-numbers::after {
content: 'Nästa';
font-size: initial;
}
.next.page-numbers {
font-size: 0;
}
.prev.page-numbers::after {
content: 'Föregående';
font-size: initial;
}
.prev.page-numbers {
font-size: 0;
}
When the theme developer fixes this, then it’s better that you remove these fixes.
By the way: If you’ve made a Swedish translation of this theme, then you could upload it at https://translate.wordpress.org/projects/wp-themes/personalblogily/sv/default/ there’s an import link at the bottom of the page. Once I or any of my fellow GTE’s (General Translation Editors) for Swedish verifies the translation, it will automatically be distributed to any other Swedish users of this theme.
Theme Author
Superb
(@themeeverest)
Hi both of you.
Sorry for the slow response and thanks for the help @tobifjellner that’s extremely kind of you!
Yes, that is indeed a bug in the theme, I’ll try to fix it as soon as possible 🙂
Have a great day to both of you
Thanks once again @tobifjellner , hero twice this week! It looks really nice now!
@themeeverest : thanks for responding! Yes, please fix it, your theme looks so nice and it´s sad if people with no coding skills have to use other themes just because a “small” matter like this. 🙂
Have a nice day!