We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Move newsletter position next to theme block

Solved

Move newsletter position next to theme block

Louver
Excursionist
23 0 3

Hi! I am struggling with changing my footer. I would like to place the newsletter on the right side of the footer and the "support" menu block on the left side of the footer. Is there any way to do this? Because right now they are on top of each other (see image). I am using the spotlight theme.

Scherm­afbeelding 2023-12-21 om 19.37.17.png

Accepted Solutions (2)
niraj_patel
Shopify Partner
2391 516 516

This is an accepted solution.

Hello @Louver 


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 </body> on theme.liquid


<style>

     .footer .footer__content-top {
       display: flex !important;
      justify-content: space-between;
      align-items: center;
  }

</style>

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

niraj_patel
Shopify Partner
2391 516 516

This is an accepted solution.

Hello @Louver 

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 </body> on theme.liquid


<style>

 .footer ul.footer-block__details-content.list-unstyled {
          display: flex;
          flex-direction: column;
           justify-content: flex-start;
           align-items: flex-start;
}
my solution worked then like & accept solution.

</style>

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 7 (7)

niraj_patel
Shopify Partner
2391 516 516

Hello @Louver 
can you share store URL?

 

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
Louver
Excursionist
23 0 3
niraj_patel
Shopify Partner
2391 516 516

This is an accepted solution.

Hello @Louver 


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 </body> on theme.liquid


<style>

     .footer .footer__content-top {
       display: flex !important;
      justify-content: space-between;
      align-items: center;
  }

</style>

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
Louver
Excursionist
23 0 3

thank you so much! That worked!

Louver
Excursionist
23 0 3

Just 1 more question, in the menu block on the left it now shows "contact" and "FAQ" next to each other, is there also a way to show them on top of each other? Thanks in advance!

niraj_patel
Shopify Partner
2391 516 516

This is an accepted solution.

Hello @Louver 

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 </body> on theme.liquid


<style>

 .footer ul.footer-block__details-content.list-unstyled {
          display: flex;
          flex-direction: column;
           justify-content: flex-start;
           align-items: flex-start;
}
my solution worked then like & accept solution.

</style>

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
Louver
Excursionist
23 0 3

yes it worked. amazing! Thank you so much!