I’m looking for help on two items:
-
I want to remove the visibility of a logo in the header. I tried searching for theme css but couldn’t find one. Any tips on how to make the logo invisible?
-
I want to add coloring to specific portion of the footer. Specifically, everything in the footer that comes after the gray separation border. I went into the footer css and tried adding color: #F3F3F3 to the bottom-wrapper but didn’t seem to do anything.
My website is daofco.com and would appreciate any suggestions.
Hi
This is Victor from PageFly - Shopify Page Builder App
Please use this custom CSS code to make the header invisible and this code for the footer color
Please add the code at the bottom of the base.css file
.header__heading {
display : none !important;
}
footer h2, footer a {
color: #F3F3F3;
}
Hope this can help you solve the issue
Best regards,
Victor | PageFly
Hello @jianimo1
You can follow these steps:
- Go to Online Store->Theme->Edit code
- Open your theme.liquid file, paste the below code before
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team
This code works for header, but for the footer, it changes the color of the ENTIRE footer. I only want the section after the gray separator. The section with arrows below. Thank you!!
hi @jianimo1
please try this code to change the color for that section only:
.footer__content-bottom a{
color : #F3F3F3 !important;
}