Adding tagline to header and deleting footer entirely

Hi there! I’m using Pixova Lite on my website (connortalks.com), and would like to add my tagline (“So you don’t have to”) to the header and get rid of the footer (the “about” and social links, I’m a fan of giving credit for the theme).

How could I accomplish these things?

Thank you!

EDIT: I should add, I’m comfortable tinkering with code (found a CSS solution in another thread here to get rid of the nav burger). Just haven’t found the code to tinker with for these things – I make changes to footer.php, for example, and those changes aren’t reflected on the site.

Hey there

Looks like you are already done with the footer. I can’t see about and social links anymore
Regarding the header, unfortunately there is no such option in the theme and this will not happen without a customization of the theme, if you want to add something near the logo please add this CSS code in the Appearance > Customize > Additional CSS:

a.logo:after {
    content: "tagline";
    position: absolute;
    left: 13px;
    top: 23px;
    font-size: 12px;
    color: red;
}

Regards

That’s weird, the footer is still very much there for me

That CSS worked perfectly though, thank you!!

I figured out the footer! For anyone else looking to get rid of it, add this to Additional CSS:

#footer {
display: none;
}

Hey there

Thanks for sharing that info :slight_smile:

Regards