Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #311664
    louay
    Participant

    Hi Team,

    Please advise how can I edit the font size for both computer and mobile.

    Thank you!

    #311666
    Sakin
    Keymaster

    @louay:
    Can you be more specific like in which section you want to edit the font size? For example, if you want to change the default body font size then you can change the size in the following CSS and then add it in the “Appearance => Customize => Additional CSS” box:

    /* Default Font Size */
    body,
    button,
    input,
    select,
    textarea {
    	font-size: 15px;
    }
    
    /* Font Size for Screen Larger then 1024px */
    @media screen and (min-width: 64em) {
    	body,
    	button,
    	input,
    	select,
    	textarea {
    		font-size: 17px;
    	}
    }
    
    /* Font Size for Screen Larger then 1366px */
    @media screen and (min-width: 85.375em) {
    	body,
    	button,
    	input,
    	select,
    	textarea {
    		font-size: 18px;
    	}
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Reduce font size’ is closed to new replies.