How to remove title in 'Addresses' and center buttons

Solved

How to remove title in 'Addresses' and center buttons

kirstiedav
Shopify Partner
6 0 1

Hello, 

 

Can anybody help me remove the title 'add new addresses' and center the buttons in the account address section?

Website: https://theloveclubbookshop.com/

 

Thank you!

 

1.jpg2.jpg

 

Accepted Solution (1)

LuffyOnePiece
Shopify Partner
650 93 120

This is an accepted solution.

Hi @kirstiedav ,


Add This Css in your Edit Code > Base.css File

 

 

div#AddAddress h2#AddressNewHeading {
    display: none;
}

form#address_form_new div:last-child {
    text-align: center;
}

 

Result:

LuffyOnePiece_0-1711846768076.png

 

If you require further help to optimize or customize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
LuffyOnePiece

 

Sandeep Pangeni
Need help with your store? sandeeppangeni17@gmail.com
For quick response, Contact In WhatsApp +9779867521184

View solution in original post

Replies 3 (3)

Not applicable

Yes I can help you to do that kindly message me privately for more discussion.

LuffyOnePiece
Shopify Partner
650 93 120

This is an accepted solution.

Hi @kirstiedav ,


Add This Css in your Edit Code > Base.css File

 

 

div#AddAddress h2#AddressNewHeading {
    display: none;
}

form#address_form_new div:last-child {
    text-align: center;
}

 

Result:

LuffyOnePiece_0-1711846768076.png

 

If you require further help to optimize or customize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
LuffyOnePiece

 

Sandeep Pangeni
Need help with your store? sandeeppangeni17@gmail.com
For quick response, Contact In WhatsApp +9779867521184
kirstiedav
Shopify Partner
6 0 1

Thank you so much!!