• Resolved steviecussons

    (@steviecussons)


    I love the clean theme and how well it works as a portfolio theme. With help from this forum, I have managed to make some minor tweaks to wip website to better suit my purpose, however I would like to add a tagline to my site header. I have added the css code suggested else where in the forum:
    .site-title::after { padding-left: px; content: “Printmaking, drawing, digital image” font-size: 22px; }
    but that hasn’t worked. Any further suggestions, please?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi @steviecussons,

    The quotation marks in the code you posted were likely misformatted. Go to Appearance → Customize → Additional CSS (the menu labels might be different in your language) and add the code below:

    @media ( min-width: 700px ) {
        .site-title:after { 
            content: "Printmaking, drawing, digital image"; 
            font-size: 18px; 
            font-weight: 400; 
            padding-left: 20px; 
        }
    }

    Let me know if that does it. The media query is added to make sure the tagline isn’t displayed on mobile, where there’s not enough horizontal room for it.

    — Anders

    Thread Starter steviecussons

    (@steviecussons)

    Thank you for the reply, Anders, I really appreciate it. I have implemented that but with no result. Perhaps there is a conflict with the other minor changes I have made?

    .single-post .featured-image { display: none; }
    .page-header { min-height: 0 !important; }
    .meta.bottom .tags { display: none !important; }
    footer.site-footer.section-inner p:last-child { display: none; }
    .posts { opacity: unset !important; }
    @media ( min-width: 700px ) {
    .site-title:after {
    content: "Printmaking, drawing, digital image";
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
    }
    }

    Thread Starter steviecussons

    (@steviecussons)

    Thanks, Anders! The code didn’t work dynamically in customise but once I published, and left customise, it worked. Brilliant! Thank you so much for taking the time to help me. Stevie

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tagline’ is closed to new replies.