Change font size of tagline/site description

  • Author
    Posts
  • #115833

    hi there:

    I want to change font size of tagline/site description that sits over the centre of the header image on the Home page.

    Note that I am not using the Landing Page option.

    I also want to remove the italics from the footer copyright text.

    Thanks for your help 🙂

    best wishes,
    Ralf

    Website: wholebeingevolution.com

    #115981
    Zed
    Cryout Creations mastermind

    Hi,

    The header title’s font size is relative to the configurable general font size. If, however, you want to customize those elements separately you’ll need to apply some custom CSS:

    body #header-page-title .entry-title {
        font-size: 5em; /* failsafe for IE */
        font-size: clamp(2.5em, 5vw, 5em );
    }
    body #header-page-title .byline {
        font-size: 1em;
    }

    These are the default values – adjust them as necessary.

    And to remove the italic from the footer text use:

    body #site-copyright {
        font-style: normal;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #116024

    hi Zed:

    Thanks for your reply!

    Both of these worked perfectly. Thanks!

    best wishes,
    Ralf

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Change font size of tagline/site description’ is closed to new replies.