Reply To: Category archive page headline doesn't line up

Homepage Community Forums Optimal Theme Support Category archive page headline doesn't line up Reply To: Category archive page headline doesn't line up

#2505
Wes
Moderator

    Yes look in your css for this (around line 911)-

    .taxonomy-description {
    background-color: #fff;
    margin: -10px 0 30px;
    }

    …and remove or change the “-10px” to 0.

    To add more padding to the top of the h1 tag, look for the following (around line 1204)

    .taxonomy-description h1, .widget-area h4 {
    font-size: 18px;
    line-height: 26px;
    padding: 0 0 10px;
    }

    …and change the first 0 to 10px or however much space you want to add.