I want to move the footer navigation to underneath the separator line, like shown in the image below. Does anyone know how I can do this, please?
My website is cultureclubworldwide.com and the password is ccww
A Shopify store owner using the Taste theme wants to reposition footer navigation elements below a separator line instead of above it.
Proposed Solutions:
theme.liquid before the </body> tag, targeting .footer__content-bottom with padding adjustments and border modificationsbase.css, style.css, or theme.css files to set border-top: 0px and padding-top: 0rem on .footer__content-bottomCurrent Status:
The issue remains unresolved. The original poster tried multiple CSS solutions but reports the navigation still appears above the separator line. niraj_patel provided progressively updated CSS snippets (adding border: unset !important in the latest attempt), but confirmation of success is pending.
Technical Details:
Solutions involve custom CSS targeting footer classes, specifically manipulating padding and border properties with !important flags to override theme defaults.
I want to move the footer navigation to underneath the separator line, like shown in the image below. Does anyone know how I can do this, please?
My website is cultureclubworldwide.com and the password is ccww
Hello @worldwidemotion
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Can we remove the separator line or you like to stay the line like this?
If you like to remove check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.footer__content-bottom {
border-top: 0px;
padding-top: 0rem;
}
And save.
result:
add this CSS also
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
I tried this but I still see the line separator
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.