Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #55825
    Michael
    Participant

    Is there a way to change the default font size for a site with the adventurous Free theme?

    (IF nit, does the pro theme allow it?)

    Thanks

    #55838
    Sakin
    Keymaster

    @Michael: Let me know the size you want and also let me know if this will be for all devices or just for large screens.

    You can change the default font size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    body,
    button,
    input,
    select,
    textarea,
    #header-right .widget .menu li {
    	font-size: 14px;
    }
    #55947
    Michael
    Participant

    Worked a treat thanks. I appreciate your response. I went with 18 point and it looks a treat.

    I had large screens in mind, but not sure which would be the better way to go for mobile devices – perhaps just the smaller default size?

    Would I just chuck an extra font-family line in there under the font-size in order to adjust that as well?

    #55985
    Sakin
    Keymaster

    @Michael: For small devices, you can adjust the size in the following css and add in.

    /* For small devices with max width 767px */
    @media screen and (max-width: 767px) {
    	body,
    	button,
    	input,
    	select,
    	textarea,
    	#header-right .widget .menu li {
    		font-size: 14px;
    	}
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing default font size?’ is closed to new replies.