Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Right align foot menu column

Solved

Right align foot menu column

Ray116
New Member
5 0 0

Hi there,

 

We are a Shopify shop based in Japan and we need some assistance.

 

We are currently using the Trade Theme and wish to edit the Menu block in the footer to align the text to the right on desktop only. We searched for a solution and added the following code to the custom CSS box in the Shopify theme editor, as we only want to modify this specific part.

 

.footer-block--menu {
text-align: right;
}

 

However, the last line of text doesn't align properly, as shown in the image below. Can you please help us with this issue? We would really appreciate it.

 

Screenshot 2024-06-07 153112.png

 

Accepted Solution (1)
Rakesh_patel_68
Shopify Partner
35 5 6

This is an accepted solution.

Hello @Ray116 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find your section footer.liquid
4) Add the following code in the bottom of the file add css

 

<style>
@media screen and (max-width: 749px) {
	#shopify-section-{{ section.id }} .footer-block__details-content .list-menu__item--link {
	   text-align: left;
	}
}
</style>

 


If I managed to help you then, don't forget to Like it and Mark it as a Solution!

 

Best Regards,
Rakesh patel







Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution.

View solution in original post

Replies 8 (8)

Rakesh_patel_68
Shopify Partner
35 5 6

Hello @Ray116 

Hi, Please share your store URL. Thanks.

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution.
Ray116
New Member
5 0 0

sure, our URL is haiz.jp

Darshanp712
Shopify Partner
137 21 18

Hello @Ray116, Please give me a preview link look forward to it. 

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution.
Ray116
New Member
5 0 0

our URL is haiz.jp

Rakesh_patel_68
Shopify Partner
35 5 6

Hello @Ray116 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find your section footer.liquid
4) Add the following code in the bottom of the file add css

<style>
@media screen and (min-width: 750px) {
    #shopify-section-{{ section.id }} .footer-block__details-content>li {
        margin-right: 1.5rem;
    }
}
</style>


If I managed to help you then, don't forget to Like it and Mark it as a Solution!

 

Best Regards,
Rakesh patel

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution.
Ray116
New Member
5 0 0

Thank for your reply, as I add the code to our shop, it does fix the problem on desktop, but it doesnt align on mobile as the image blow.

 

Sorry but can you take a look at it for me? Thank you

 

Screenshot 2024-06-07 155449.png

Rakesh_patel_68
Shopify Partner
35 5 6

This is an accepted solution.

Hello @Ray116 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find your section footer.liquid
4) Add the following code in the bottom of the file add css

 

<style>
@media screen and (max-width: 749px) {
	#shopify-section-{{ section.id }} .footer-block__details-content .list-menu__item--link {
	   text-align: left;
	}
}
</style>

 


If I managed to help you then, don't forget to Like it and Mark it as a Solution!

 

Best Regards,
Rakesh patel







Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution.
Ray116
New Member
5 0 0

I think I got it fixed, thank you!