• is there a line i can add that will override all rules to that i can easily change font size in css? thanks!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • you can try adding a font-size property to the body (or whatever element you want to change) selector:

    body {
        font-size: 12px;
    }

    this line at the end of style.css did it for me:

    body, h1, h2, h3, h4, h5, h6, ul, ul li, a, p
    {
    font-size:24px!important;
    }

    every single letter the same size –flat-liner-font-size– lol ??

    but what is the point of that?

    Hi, I am trying very hard to increase my Paragraph font size also. My style.css for my theme is very limited so I tried to add:

    body, p {
        font-size:12px!important;
    }

    nothing changed, so also tried:

    body, p {
        font-size:20px!important;
    }

    My style.css sheet says:

    /*
      Theme Name: Painter
      Theme URI: https://www.marcelomesquita.com/tema-painter/
      Description: A simple theme, with solid colors and a few pictures... but highly customizable. The highlight of this theme is the possibility of customization through the administrative area, allowing the choice of colors for each item of the site and upload the header image. Valid XHTML, Valid CSS.
      Version: 1.1
      Author: Marcelo Mesquita
      Author URI: https://www.marcelomesquita.com/
      Tags: custom-colors, custom-header, fixed-width, two-columns
    
      Copyright (C) 2009 Marcelo Mesquita
    
      This program is free software: you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published by
      the Free Software Foundation, either version 3 of the License, or
      (at your option) any later version.
    
      This program is distributed in the hope that it will be useful,
      but WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      GNU General Public License for more details.
    */
    
    .aligncenter {
      display:block;
      margin:auto;
    }
    
    .alignleft {
      float:left;
    }
    
    .alignright {
      float:right;
    }

    My theme is Painter and my website is https://www.masterscustomhomes.com. Any help is very much appreciated!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Font size’ is closed to new replies.