• Hi! My site is isparkleen.com. I just noticed that the entry titles and entry dates’ font sizes are not standard. I don’t know what is wrong with my CSS. Help is much appreciated. Thanks!

Viewing 1 replies (of 1 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    You can change font sizes in your theme’s stylesheet: style.css

    For entry titles look for:

    .entry-title a:link,
    .entry-title a:visited {
    	color:#0072bc;
    	text-decoration: none;
    	font-size: 21px;
    }
    .entry-title a:active,
    .entry-title a:hover {
    	color: #00aeef;
    	font-size: 21px;
    }

    and change the font-size: 21px; to your liking.

    For the date look for:

    .entry-date {
    	text-transform: none;
    }

    and put font-size: 12px; in there like so:

    .entry-date {
    	text-transform: none;
            font-size: 12px;
    }

    and change the 12px to your liking

Viewing 1 replies (of 1 total)
  • The topic ‘Entry titles and entry dates not uniform’ is closed to new replies.