• I would like to make the title of my site bigger and also centralise it; as far as I’m aware I’ll need to add some code to the custom CSS to do this but I have zero idea where to even start so was wondering if anyone could help me?

    My site is
    http://elliexrachel.com
    if that helps.

Viewing 1 replies (of 1 total)
  • It looks like your site is hosted on WordPress.com. I’m assuming you have access to the Custom CSS feature?

    If so, use this to center the title:

    .site-branding {
    	text-align: center;
    	width: 100%;
    }

    Increasing the font size is a little trickier, since the font size is decreased as the screen width narrows, but this will increase the size on most “desktop” screens:

    @media screen and (min-width: 44.375em) {
    	.site-branding .site-title {
    		font-size: 2.75rem;
    	}
    }

    Of course, feel free to adjust the 2.75 number as you see fit. The higher the number, the larger the font.

    Best of luck!

Viewing 1 replies (of 1 total)
  • The topic ‘Make site title bigger and central’ is closed to new replies.