Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #22278

    I cannot find how to change the font and color in the tagline on the home page of my website. I see there are options to change the font on the site’s title but not on the tagline. I tried to click the edit pencil next to the tagline but there are no font options.

    #22279
    Arnel C
    Member

    Hello,

    Thanks for the question about the BoldGrid customizer site title fonts.  There is no direct way to change the font and color of the tagline in BoldGrid.   If you want to change the font/color – or add your own ones, then you will need to add code to the site.  In order to add your own fonts, you would need to edit the style.css with the font you’re trying to use as well as the header.php in order to add the Google font. In the header.php file, you would add the code after the header tag (the code is provided for you in Google Fonts):

     <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css '>

    This would allows the theme to load the font. Next you would need to edit stylesheet.css and define WHERE you’re using the new font. For example:

    .h1 site-title {
    font-family: 'Open Sans', Roboto, sans-serif;
    3
    }
    

    This would change the H1 fonts into the Roboto font. If you’re making changes like this to the theme, then you should be using WordPress Child themes. Themes are like versions of plugins and WordPress: they always update. If you make these custom changes and then update the theme, your changes would be lost. As you can see, making this kind of change requires some knowledge of modifying the CSS and editing the theme files. The theme files are always found in the wp-content folder under themes.

    In regards to your question on the character map, there is not one provided, though you could probably look up the font and then find one for it on the internet.

    I hope that helps to answer your questions! If you have any further questions or comments, please let us know.

    Regards,
    Arnel C.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How do I change the font and color of tagline on home page?’ is closed to new replies.