meld78
November 6, 2023, 2:07am
1
Hi there,
Can someone please tell me how to reduce the margins/padding below the product block?
I’m using the Flow theme.
I prefer using custom CSS for those rather than having to update the theme liquid files.
And also above the Accordion/FAQ section
Hi @meld78 ,
Can you provide me with the link to your store? I will review the site and provide solution accordingly.
Thank you
meld78
November 6, 2023, 3:41am
3
Thank you, I appreciate this.
https://islandlab.com.au/
Password: frield
Hi @meld78 ,
Try adding this css at the end of base.css file.
div#PageContainer:has(.product-details-wrapper) .visual-navigation__wrapper {
padding-top: 5px;
padding-bottom: 5px;
}
.product-details-wrapper {
padding-bottom: 5px;
}
.main-page-container:has(.product-details-wrapper) {
margin-bottom: 5px;
}
Regarding Accordion/FAQ section, I counld not find this section on the site. Can you let me know where the FAQ section is?
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Makka
meld78
November 6, 2023, 4:00am
5
thank you so much. It’s on the product page for the Essential Home Collection
Hi @meld78 ,
Add below css on base.css to remove padding from the Accordion/FAQ section.
#PageContainer:has(#AddToCartForm) .accordion--faq-wrapper {
padding-top: 0px!important;
}
Thank you
meld78
November 6, 2023, 4:34am
7
thank you. where do I find the base. css?
You will have to make changes to the theme. Please follow below step to add code to the base.css file.
meld78
November 6, 2023, 4:41am
9
thank you so much for the screenshot. I typed in base to search for it but I can’t find it
@meld78
It looks like you have theme.css or theme.min.css on your site. Please search for theme.css or theme.min.css. This should be inside assets folder.
yes. You can add the new css to the end of this file
meld78
November 6, 2023, 5:20am
13
amazing, thank you so so much!
Would you be able to help me with another small issue please?
The bottom footer of footer bottom has the correct colour settings for the font (I have added the word TEST) and it’s white the copyright and powered by shopify is showing in dark and only visible when hovering over.
would you be able to tell me how I can change that colour, please?
Hi @meld78 ,
Seems like you have added the CSS and the padding has been reduced.
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Makka