Support » Theme: Sugar and Spice » How to make overall font bigger/ reduce white borders

  • Is there any way to reduce white borders or make my blog/site text overall bigger so it fills the screen more? it seems too small for my liking at this point. I’m a complete beginner, but i’ve managed to change some font colors, so this can’t be too difficult, right? Any help is appreciated!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter allflouredup

    (@allflouredup)

    I forgot to post this, but my site is http://allflouredup.com

    Me too! I need to know this as well. I am using header text to make the font bigger but I can’t make anything bold for my copywriting. My site is http://www.marianacruiz.com

    I’m also seeing that this theme is really limiting my layout options because its so narrow. I thought it had 3 different layout options in the description, but I’m not sure how to make it take up the full screen. This might not be the theme for me if I can’t.

    I finally found that using the Google fonts plugin gave me the ability to use a larger font. Hope this helps!

    We can use a Custom CSS plugin
    https://wordpress.org/plugins/search.php?q=custom+css

    and put this code in to make overall font size bigger

    /* font size for screen smaller than 640px */
    body { font-size: 15px !important; line-height: 1.6; }
    
    /* font size for screen bigger than 640px */
    @media (min-width: 640px) { body { font-size: 18px !important ; } }

    Depending on the font family chosen, different font might appear a bit differently in actual size even it’s assigned with the same value, so just change the 15px and 18px in the code as you see fit.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to make overall font bigger/ reduce white borders’ is closed to new replies.