Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes, it can all be done with css tweaks.

    Find the following in the theme style.css:

    h1 {font-size:2.6em;}
    h2 {font-size:2em;}
    h3 {font-size:1.6em;}
    h4 {font-size:1.2em;}
    h5 {font-size:1em;}
    h6 {font-size:0.8em;}

    Lower the font-size value of h2 to decrease the size of the post title.

    In that same file, find the following code:

    }
    
    #sidebar ul h2 {
    	margin:0;
    	padding:0;
    	color:#4588c4;
    	font-size:1.2em;
    	text-transform:uppercase;
    }

    Completely delete the text-transform line, so it looks like this:

    }
    
    #sidebar ul h2 {
    	margin:0;
    	padding:0;
    	color:#4588c4;
    	font-size:1.2em;
    }

    Then, in that same file, find the following code:

    }
    
    .post p, .post ol li, .post ul li{
    	margin-top:0;
    	font-size:1.2em;
    	line-height:1.5em;
    	text-align:justify;
    }

    and completely delete the text-align line so it looks like this:

    }
    
    .post p, .post ol li, .post ul li{
    	margin-top:0;
    	font-size:1.2em;
    	line-height:1.5em;
    }
    Thread Starter syoder1

    (@syoder1)

    Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Design Issues With Fluid Blue’ is closed to new replies.