How To Move Footer Navigation Under Line Separator In Taste Theme?

Topic summary

A Shopify store owner using the Taste theme wants to reposition footer navigation elements below a separator line instead of above it.

Proposed Solutions:

  • niraj_patel provided CSS code to be added to theme.liquid before the </body> tag, targeting .footer__content-bottom with padding adjustments and border modifications
  • Made4uo-Ribe suggested either removing the separator line entirely or adding CSS to base.css, style.css, or theme.css files to set border-top: 0px and padding-top: 0rem on .footer__content-bottom

Current 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.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

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

1 Like

Hello @worldwidemotion

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.footer__content-bottom { padding-top: 1rem !important; } .footer__content-top { padding-bottom: 0rem !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Hi @worldwidemotion

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:

It’s still showing above the separator line:

Are we able to remove the separator line?

add this CSS also

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.footer__content-bottom { padding-top: 0rem !important; border-top: unset !important; }

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

@worldwidemotion

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.footer__content-bottom.scroll-trigger.animate--slide-in { border: unset !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.