Site logo

Archived topic

How do i remove logo and edit titles in category page?

5 replies · Started by Sean on December 20, 2017

Viewing posts 1–6 of 6

I've created a page as a category to post specific posts

A few questions:

How do I get rid of the big logo in the post header?

What do I do to centre and resize the title "Real Brides"?

And how do I change the colour and size of the post title "Balveen"?

Hi there,

Remove header logo:

.category .site-header .site-logo {
    display: none;
}

Center and resize:

h1.page-title {
    text-align: center;
    font-size: 35px;
}

Color and resize:

h2.entry-title {
    font-size: 20px;
}
h2.entry-title a {
    color: #000;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Thanks, the only problem is the css you gave removes the logo from my navigation menu as well, I just want the logo removed from the post headings. How do I do that?

Thanks,
Sean

Great, it is working now. Thanks!

No problem!

This archived topic is closed to new replies.