Need to change tagline position, size

  • Unknown's avatar

    I haven’t previously done customization on my CSS, and I just switched to the apostrophe theme on fourthandsycamore.com

    I’d like to move my tagline (currently italicized at the very top center) down a line or so to center it, and also make the font size a little bit smaller.

    I tried playing around with changing the CSS, but nothing ever showed in the preview, and I didn’t want to finalize something I couldn’t see. The tagline is categorized in the theme as an h2, as are all their other headlines… I don’t want to change the other headlines, though – only this one.

    Thanks for your help!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Howdie!

    This should downsize the font of your site description and vertically center it:

    .site-description {
    	font-size: 18px;
    }
    
    @media (min-width: 768px) {
    	.site-description {
    		transform: translateY(30px);
    	}
    }

    Let me know if this works!

    Best regards,

    Michael

  • Unknown's avatar

    Thanks so much, Michael – it worked perfectly!

  • The topic ‘Need to change tagline position, size’ is closed to new replies.