• Resolved sthai

    (@sthai)


    Hi,

    Just started a new website and I want to change the tagline size. In my stylesheet at #site-description I added “font-size: 50px” and have been trying to change it by trying with different sizes but it stays the same…

    #site-description {
    	color: #b14562;
    	font: "Sorts Mill Goudy", serif;
    	font-size: 50px;
    	font-weight: normal;
    	margin: 0;
    	padding: 0 0 .8em 1.9em;
    	text-transform: uppercase;
    	}

    My webpage is https://www.sentidosthai.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Does your theme have a custom CSS option? If not, you need to create that (using a plugin such as jetpack) or by using a Child Theme. Any changes you make to theme files will be erased when the theme is updated. So don’t do it that way.

    Once that’s set up, add this to the new CSS and change the size:

    h2#site-description {
       font-size: XXpx;
    }

    Be sure to clear any site or browser caches after making changes.

    Thread Starter sthai

    (@sthai)

    Thanks! Just created a Child theme and now it does change!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change tagline size’ is closed to new replies.