• A newbie here.. Hi everyone.

    I’m diving in to WordPress using the TwentyTen theme and having some ‘slow’ progress. I’ve managed to change a few things but there are a couple of items that I cannot fathom and i’m sure its really easy.

    1. How do I change the size of my post headings/titles? I can’t find the relevant bit in the css
    2. Also I would like to include a nice dotted line underneath each post title as is done on this site: https://thedailygrowl.co.uk

    All help appreciated.
    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • 1.
    line 565

    #content .entry-title {
    	color: #000;
    	font-size: 21px;
    	line-height: 1.3em;
    	font-weight: bold;
    	margin-bottom: 0;
    }

    also influences the page titles.

    2.
    add a bottom border to the above style:
    css border: https://www.w3schools.com/css/css_border.asp

    Thread Starter Dogamusic

    (@dogamusic)

    Thanks for the quick reply. Will go try this out now. Cheers

    I made a slight change for title color.

    #content .entry-title {
    	color: #00008B;
    	font-size: 21px;
    	font-family:Georgia, ‘Times New Roman’, Times, serif;
    	font-weight: bold;
    	line-height: 1.3em;
    	margin-bottom: 0;
    }
    
    .entry-title a:visited {
    	color: #458B00;
    	text-decoration: none;
    }
    .entry-title a:active,
    .entry-title a:hover {
    	color: #ff4b33;

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post title & lines’ is closed to new replies.