• Resolved Guenny

    (@guenny)


    Hello Together,
    i looking for a solution to change the font of the site title in the header image.

    I was looking in the sytle.css and i tried to update the following set of code:

    /* headding */
    
    h1,
    h2,
    h3,
    .h1,
    .h2,
    .h3{
    	clear:both;
    	overflow:hidden;
    	margin:.5em 0;
    }
    h4,
    h5,
    h6,
    .h4,
    .h5,
    .h6{
    	clear:both;
    	margin:.5em 0;
    }

    It works, but now are all other titles also update. i only want to update the text in the header image.

    Can someone help me?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Guenny,

    Can you post a link to the site?

    Anyway, I think the problem is that you should have more restrictive rules like

    .header-image-text h1,
    {
    	clear:both;
    	overflow:hidden;
    	margin:.5em 0;
    }

    Otherwise you are just applying styles to all of the h1,h2,etc.. in the site

    Thread Starter Guenny

    (@guenny)

    The Page is today only locally and i try to learn handle wordpress.

    This above mentioned css style is not out of the template, right?

    Theme Author nobita

    (@nobita)

    Hi Guenny

    i only want to update the text in the header image.

    Fonts style rules exists fonts.php
    Add to fonts.css ( or style.css ) last line below code

    #header-image p{
    /* set your font size */
    	font-size:100%;
    }

    If you using child theme, copy parent fonts.css and paste child theme.

    H1 site title change fonts size example

    #site-title span{
    	font-size:16px;
    }

    thank you.

    nice this worked for me but what about to change the font family of site title and not only the font size
    I read that with css3 i can use whatever font i like.
    i tried at fonts.css to change font family but without result.
    Thanks!

    sorry the answer was in front of my eyes

    @import url(https://fonts.googleapis.com/css?family=Parisienne);

    #site-title span{
    font-family: ‘Parisienne’, cursive;
    }

    thanks!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change Site Title Font’ is closed to new replies.