Site logo

Archived topic

Center the logo on certain pages

3 replies · Started by Kim on December 7, 2019

Viewing posts 1–4 of 4

Hi, we want to center the logo on some pages ("Woocommerce My Account" for example), by default it's on the left. Is this somehow possible?

Many thanks in advance :-)

Hi there,

Where would the navigation go?

On these Pages there would be no navigation.

Hi there,

Woocommerce adds specific classes to the body for example:

.woocommerce-account .inside-header {
    text-align: center;
}
.woocommerce-account #site-navigation {
    display: none;
}

If you wanted to target the checkout then the selector is .woocommerce-checkout so this would apply to the Account and Checkout:

.woocommerce-account .inside-header,
.woocommerce-checkout .inside-header {
    text-align: center;
}
.woocommerce-account #site-navigation,
.woocommerce-checkout #site-navigation {
    display: none;
}
This archived topic is closed to new replies.