How can I straighten my footer links in Dawn?

some how, some footer links moved

and not all of them straight as you can see

how can i make all of them straight?

please help :slightly_smiling_face:

store url

https://brebojewelry.myshopify.com/

Hi @YMKjewelry

You can try follow this path:
Themes => edit code => asset => section-footer.css
and add this code to bottom of the file section-footer.css

.footer-block__details-content > li{
margin-inline: 0!Important;
}

Hello @YMKjewelry ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file → add this following code at the bottom of page

.footer-links {
  display: flex;
  justify-content: flex-end;
}

.footer-links {
  margin-left: 10px;
}

Save and preview

Hope this can help.

Transcy

worked! thank you!