• Hi,

    How can I change the color on the social buttons in the footer to better match my custom colors?

    How can I change language for both the read more button and the search tool element? (when clicking the element the pop up search window is in English.

    How can I also hide the search button from the heading if I choose do do do?

    I have chosen Ubuntu as the font, but even so it does not seem to apply to the text or headings in the menu, or in the widgets. And I would like to have another font for the text, than on the headlines.

    Is there an easy way to use the custom font family tab to decide different fonts to different headlines and paragraph text? Or do I have to go in and alter the HTML file?

    Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Toshihiro Kanai

    (@mirucon)

    Hi there!

    1. Unfortunately, there is no option to change the social icons in the footer. You can use custom CSS to change their colors.
    2. There’s also no option to use your own text for the “Read more” button. You can still change it using a child theme, but it requires a little bit complicated process. I could not figure out where you point the “search tool element” ?? I think the toggle to open the search window is the only icon and there’s no text.
    3. I don’t provide an option to hide the search button, but as usual, you can use custom CSS.
    4. The font selector does not apply some of the texts, e.g. headings or menu. You need custom CSS for this.
    5. No, there’s no option for selecting the heading fonts. You need custom CSS (Or HTML or third-party plugin if you want to use web-fonts).

    If you’d like to customize these but do not know how, please let me know and I can provide more information for them.

    Thread Starter elinkatari1985

    (@elinkatari1985)

    Hi,

    Thanks for your answer. I would love css to change the social icon color, hide search button/icon, and to style different text such as paragraph, heading and text in the menybar and in widgets areas(title and text.) Also so not have widget sidebar title with all caps in the start of every word.

    If there is a good third party plugin(free) that you know of – I would love recommandations.

    I can create a child theme, but its been a looong time since I dit it, and im afraid to ruin my page – but i can try to make on locally first. The only changes I NEED to really make for my page to work is to alter the text for “realted post” to “Relaterte blogginnlegg” or “Du vil kanskje ogs? like” and the read more button to “LES MER”. For now I have installed a plugin for this, but it doesnt look as good, and requires more work.

    You can view the page here: https://www.makeamomentum.no from tomorrow.(after last minut editing before lanuch) – then you will see the seach icon in the meny bar and how it works.

    Thank you so much for your reply!

    Theme Author Toshihiro Kanai

    (@mirucon)

    I am sorry for the delay. For sure I can provide you with some codes here.

    * To change the social icon color:

    body .footer .social-links a {
      color: #00d1b2; /* Change this color */
    }

    * To hide the search button from the header:

    body .search-toggle {
      display: none;
    }
    @media screen and (max-width: 767px) {
      body .header-menu-enabled .site-info {
        width: calc(100% - 50px);
        max-width: calc(100% - 50px);
      }
    }

    * To change the font of headings/menu:

    /* For the post titles */
    body .title-box {
      font-family: /* your desired font here */
    }
    /* For the menus */
    body .menu-container {
      font-family: /* your desired font here */
    }

    * To not capitalize every word headings on the sidebar:

    body .widget .widget-title {
      text-transform: unset;
    }

    You don’t actually need a plugin for these CSS customizations, instead, you can place them in the “Additional CSS” section in the customizer.

    I haven’t tried this before, but I thought some custom translation plugin like Loco Translate helps you to change the texts of “Read More” and any other? All of my strings in the theme are marked as translatable so it’s kind of something you can try without creating a child theme.

    Or there’s another option: Translate the theme entirely. Since translating in the WordPress community is volunteered and open for anyone, you can definitely contribute to translate my theme here: https://translate.www.ads-software.com/projects/wp-themes/coldbox/

    Let me know if they work for you.

    Thread Starter elinkatari1985

    (@elinkatari1985)

    Thank you so much for CSS! And for tips on plugins ro translate theme strings. I’m trying it out.

    I added 43 translation suggestions in your theme and I can come back later and do pretty much all of them, Its the least I can do to repay you for all your help.

    I saw there were already correct translations suggested on some of the strings, but also not correct ones.

    For read more, I couldn’t find it. But I can look through it again.

    Thank you!

    Thread Starter elinkatari1985

    (@elinkatari1985)

    Update: I found the read more in loco translate so Thats fixed.

    Ths CSS worked for not capitalizing in widget title. But the same style is added to heading in the related post. Do you have a CSS to fix that also? And also it would be Nice if the related Post heading could Be customizwd to be in bold.

    This is the last vits, Everything else now works beautifully after translations. Tja l you!

    Theme Author Toshihiro Kanai

    (@mirucon)

    Thank you so much for contributing to the translations! I really appreciate your work.

    And here’s the CSS for not to capitalize and making bold for the “Related Posts” heading.

    .related-head {
      text-transform: lowercase;
      font-weight: bold;
    }

    Then you need the Loco Translate plugin again and you’ll need to replace the string “Related Posts” with “Related posts”.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change language and color on buttons, search option, plus fonts’ is closed to new replies.