• Resolved Terry J

    (@texasbiz)


    Greetings! Very nice simple and clean theme.

    When removing the logo in header and just showing site title, the font size is very, very large. I see class “col grid_5_of_12 site-title” but adding custom css has no effect for site-title.

    How can this be changed via custom css?

    I have used dev tools, but can’t seem to locate correct class to modify.

    Is there any way to show both site title and tagline?

    Thanks in advance.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Terry J

    (@texasbiz)

    Anyone else can help? Really like to use the theme:)

    Hi

    You can use this to ID what needs to be changed
    https://www.ads-software.com/plugins/stylist/
    or to change it, with that plugin.

    Thread Starter Terry J

    (@texasbiz)

    Thanks @irishblake!

    After thinking about it, tried the !important on custom css font size and solved my issue. Strange thing have not had to do that with any other custom css…

    Thanks again for taking time to help.

    well lol That does make things much simpler~

    Theme Author Anthony Hortin

    (@ahortin)

    Instead of using !important, you simply need to add more specificity to your css to ensure that it overrides the default.

    As an example, to override the font size for the site title, you could do:

    
    header .site-title a {
        font-size: 30px;
    }
    

    If you want to show the Tagline as well as the site name, you’ll need to make a copy of header.php and add it to your child theme.

    Then you’ll need to edit this file in your child theme by adding the following after line 58 (i.e. after the </h1>)

    
    <p class="site-tagline"><?php echo get_bloginfo( 'description' ); ?></p>
    

    You can then style it as needed by targeting the .site-tagline class

    Thread Starter Terry J

    (@texasbiz)

    Thank you Anthony @ahortin!

    Simple enough:)

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