change position of site title on Affinity theme

  • Unknown's avatar

    Hello. I’d like to move the site title to below the bigger font (ironically the tagline) in the middle of the header image. Anyone know anything for the affinity theme?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi Celine!

    I was able to add text after the bigger font with this CSS:

    p.site-description:after {
        content: 'text after the title';
        display: block;
        font-family: Raleway, "Helvetica Neue", sans-serif;
        font-style: normal;
        font-weight: bold;
        font-size: 0.825rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    Then if you want to hide the text at the top left:

    .header-wrapper.clear .site-title {
        display: none;
    }

    Hope this helps =)

  • The topic ‘change position of site title on Affinity theme’ is closed to new replies.