Archive title and font sizes throughout the site

Hi:

  1. How do I completely suppress the Archive title. I can see how to edit it (and have done that) but I would like to remove it completely

  2. If I decide to keep it, how do I change the size of the font - there are multiple font size options but they appear to be apply to lots of places. So, when I changed the size of the Archive header (made it smaller) it also shrunk the test in the footer. How do I separately set the font sizes

thanks.

Hello Bronwyn,

The quickest way to do it would be to add this custom CSS in X > Theme Options > CSS:

.blog .x-header-landmark,
.archive .x-header-landmark {
    display: none;
}

To do that, you can add this code in the Global CSS:

.blog .x-header-landmark .h-landmark,
.archive .x-header-landmark .h-landmark {
    font-size: 20px;
}

.blog .x-header-landmark .p-landmark-sub,
.archive .x-header-landmark .p-landmark-sub{
    font-size: 14px;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.