• Resolved novelista8

    (@novelista8)


    One more question, while I’m here…

    Where can I change the overall font of the template?

    What I’d really love to do, is to only change it in the blog post text on the single post pages. Is that possible? And if so, where? I’ve tried to play around in the stylesheet, but unsuccessfully so far…

    Thanks & best regards,
    Kalle

Viewing 11 replies - 1 through 11 (of 11 total)
  • Theme Author Acme Themes

    (@acmethemes)

    Hello Kalle,

    We are very sorry to say that by default there is no font-changing option.
    But you can create that option using child theme https://codex.www.ads-software.com/Child_Themes

    Also here is some guidelines to use google fonts in theme.
    https://codex.www.ads-software.com/Function_Reference/add_editor_style#Basic_Usage

    Hope this will help you.

    Best Regards,
    AcmeThemes

    Hi everybody
    it is so easy.
    try to add this code to style.css

    *
    {
    	font-family: arial;
    	font-size: 22px;
    	color: red!important;;
    }

    or add this

    *
    {
      font-family: arial;
    }
    Thread Starter novelista8

    (@novelista8)

    Hi rohallah,
    thanks!
    Does it matter where I add it in the style.css file?

    No , add this to end of your style
    good luck

    Don’t edit your theme’s files directly, as you’ll lose those changes if the theme is ever updated in the future, to fix bugs or security issues or to add new features. Instead, you should use your theme’s built-in custom CSS option or a custom CSS plugin.

    Theme Author Acme Themes

    (@acmethemes)

    You can add this code using Theme customizer options,
    Please go to Theme Customizer ? Layout/Design Option ? Custom CSS and add the above CSS given by rohallah.

    If you edit directly Theme CSS, you will lose it in next update of theme.( However you can save that code and add later too )

    Thread Starter novelista8

    (@novelista8)

    Thanks a lot stephencottontail and Acme Themes for the advice,
    Very helpful.

    Thanks to my friends to tell about update problems ,it’s very important to keep your change forever!!
    I offer you another simple way
    you make a custom css file like this

    mystyle.css
    {
    add every changes you want here such as fonts styles and so on
    }

    In style.css import this personal stylesheet file by using this code in first line
    @import 'mystyle.css'
    In next update you wont lost your theme style you just add one line to your new style

    Thanks rohalla, this worked for the menu bar and the body text, but not in my header and headlines. Does anyone know why?

    hi by adding !important the problem will be solved ,check it and tell me the result.

    *
    {
    	font-family: arial!important;
    	font-size: 22px;
    	color: red!important;;
    }

    thanks to author Acme Theme for mention Custom CSS
    In another topic I discuss abut child theme the best way to use a style
    If you want to wont lost your changes you should use child theme ,It is more useful than @import or other way
    good luck

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Change the font’ is closed to new replies.