Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #116977
    martha
    Participant

    Hi,

    I would like to change my fonts and sizing for p, h1, h2, h3, h4, h5 etc in the clean journal pro theme and don’t see where i would do that in the themes- customize area. Does anyone know how to modify this. Thanks.

    #116992
    Mahesh
    Keymaster

    @mmarvel54: In Pro version, it does include feature to change font family for Site title, Content, default font etc. For this option, go to Dashboard=> Appearance=> Customize=> Theme Options=> Font Family. If you want to change fonts and size for p, h1, h2, h3, h4, h5, you can use Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    h1 {
    	font-family: "Times New Roman";
    	font-size: 30px;
    }
    
    h2 {
    	font-family: "Times New Roman";
    	font-size: 28px;
    }
    
    h3 {
    	font-family: "Times New Roman";
    	font-size: 24px;
    }
    
    h4 {
    	font-family: "Times New Roman";
    	font-size: 20px;
    }
    
    h5 {
    	font-family: "Times New Roman";
    	font-size: 18px;
    }
    
    p {
    	font-family: "Times New Roman";
    	font-size: 15px;
    }

    Note: Change the font-family and font-size as desired.

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Change font style and sizing in Clean Journal Pro Theme’ is closed to new replies.