• Resolved folkeserbe

    (@folkeserbe)


    Hello!

    I′m trying to change the font on my Personalblogily themed blog, but I have a problem. I have used a font plugin to change fonts (and it works fine!) but I can′t change fonts on the “Read more”-button (currently “L?s mer” in Swedish on my site.

    I have tried to find it in the stylesheet but no luck after an hour of scrolling. Can someone help me, please?

    Thanks in advance!

    / Martin

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Under Appearance → Customize → Extra CSS (Utseende → Anpassa → Extra CSS) you can add, for instance:

    .blogpost-button {
        font-family: "Times New Roman";
    }
    Thread Starter folkeserbe

    (@folkeserbe)

    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 4 years, 6 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.www.ads-software.com/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

    Thread Starter folkeserbe

    (@folkeserbe)

    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!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘“Read more” button’ is closed to new replies.