• Resolved hulbertlee

    (@hulbertlee)


    Hi, I think my current main content size is 10. I was wondering how I can increase my content font size to maybe 12 or 14?

    howtofocusbetter.com

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator t-p

    (@t-p)

    look for this CSS rule in your theme’s style.css:

    .entry p {
    line-height:1.8em;
    margin-bottom:15px;
    }

    Add this font property to it (if you don’t find it, then append it at the bottom of your css file):

    .entry p {
    line-height:1.8em;
    margin-bottom:15px;
    font:14;
    }
    Thread Starter hulbertlee

    (@hulbertlee)

    Hi, I added that code at the bottom of my style.css, but nothing appeared to change?

    /* Make all custom CSS changes BELOW this line
    -----------------------------------------------------------*/
    /* Example: Change the sidebar background to blue:
    #sidebar {
    	background: blue;
    }
    */
    
    #sidebar ul li.widget ul {
    	margin: 0;
    }
    
    #content {
        margin: 0 70px 0 30px !important;
    }
    
    .single-post-meta {margin-bottom:15px;}
    
    #footer{
      display:none;
    }
    
    #wrapper, #footer {
      -moz-box-shadow: 0 0 0 white;
      -webkit-box-shadow: 0 0 0 white;
      box-shadow: 0 0 0 white;
    }
    
    #navigation {
    	float:left;
    }
    
    #content.no-sidebar {
    	width: 700px;
    }
    
    body {
      font-family: Helvetica, Arial, sans-serif;
    }
    
    .entry p {
    line-height:1.8em;
    margin-bottom:15px;
    font:14;
    }
    Clayton James

    (@claytonjames)

    .entry p {
    line-height:1.8em;
    margin-bottom:15px;
    font-size:14px;
    }

    Thread Starter hulbertlee

    (@hulbertlee)

    Thank you so much.

    Clayton James

    (@claytonjames)

    No problem. You were already half-way there! 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘How to increase font size?’ is closed to new replies.