Avenue Theme How to increase the sub-footer height

Hello Guys,

I need to increase the sub-footer height and also color different from second and primary.

Please assist.

Thx

Kind regards

Vitaly

Hi @laketko

This is easily doable, would you mind sharing your store’s URL so we can adjust that?

Let me know!

https://5raonz30fl802i8k-31149031564.shopifypreview.com

Thank you

Vitaly

Add the following code to the bottom of your styles.min.css file:

@media only screen and (min-width: 768px)
{
#shopify-section-footer > section > footer > div.sub-footer.text-center.background-colored.color-primary.colored-top-bottom {
    padding: 10px;
}

#shopify-section-footer > section > footer > div.sub-footer.text-center.background-colored.color-primary.colored-top-bottom > div > div > p {
    padding: 0px;
}

#shopify-section-footer > section > footer > div.sub-footer.text-center.background-colored.color-primary.colored-top-bottom > div > div > span {
    display: none;
}

#shopify-section-footer > section > footer > div.sub-footer.text-center.background-colored.color-primary.colored-top-bottom > div > div > p:nth-child(3) {
    display: none;
}
}

Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!

Thx. And where can I adjust a color of the Sub-Footer?