Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #335003
    jwanamaker
    Participant

    Hello,

    I am wondering if I am able to update/change font for the free version of WeddingFocus by adding additional CSS to the theme.

    I saw in another Catch theme this seemed to be possible. I do not want to buy the Pro version simply for changing the font.

     

    Thank you!

    #335018
    sujeet
    Keymaster

    Hello @jwanamaker,

    Could you please mention the font name you want to add?

    Regards,
    Sujeet

    #335030
    jwanamaker
    Participant

    Hello,

     

    I would like to use Times New Roman and Pinyon script font (believe it is a Google Font)

     

    Thank you Sujeet!

    #335032
    sujeet
    Keymaster

    Hello @jwanamaker,

    Thank you for the response.

    For Pinyon script you have to import in css and for Times New Roman you can directly write css code in additional css like I have stated below. You can change .site-title and body as you preferred.

    Please kindly add the following css code to Additional Css(Appearance->customize->additional css)

    
    @import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');
    
    .site-title {
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
    }
    
    body {
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    font-style: normal;
    }
    

    Please kindly let me know if you face any difficulties. Thank you.

    Regards,
    Sujeet

    #335759
    jwanamaker
    Participant

    Hi Sujeet , thank you very much! Is there way manipulate the font size as well of these? I tried typing in “large” but that did not work.

    #335775
    sujeet
    Keymaster

    Hello @jwanamaker,

    You can just simply add font-size to the css like I’ve shown below.

    body {
    	font-size: 32px;
    }

    Please kindly try adding the code to the same additional css.

    Regards,
    Sujeet

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.