• Hi
    I have been struggling for hours just to change a font size on my pages. What a mission to do this on a customised theme! It does not work by changing the font size specification in the body tag as shown below:

    body
    {
      margin: 0 auto;
      padding: 0;
      <strong>font-size: 80%; /* Resets 1em to 10px */</strong>
      font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
      background-color: #123C66;
      color: #000000;
    }

    I got it to work changing another tag, maybe this will help someone else with the same problem :

    .BlockContent-body
    {
      position: relative;
      overflow: hidden;
      z-index: 0;
      margin: 7px;
      text-align: left;
      color: #085159;
      font-family: 'Arial';
     <strong> font-size: 12px;</strong>
      font-weight: normal;
      font-style: normal;
      text-decoration: none;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter diyer

    (@diyer)

    Sighhhhh…. plse ignore the tags shown in above post, I tried to show that line as bold…..

    Change the FONT-SIZE option in the .BLOCKCONTENT-BODY tag, mine was 11px, changed it to 12px. Works for me!

    Oh my gosh.. thank you! Hours I spent trying to change the font size… was ready to throw the computer out the window.. you saved it ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change font size in CSS Stylesheet’ is closed to new replies.