How can I justify the footer menu text to the right in Taste Theme?

Dear community members,

How to justify the footer menu text to the right?

Thank you.

https://ma-vie-food.myshopify.com/

Password: baubro

Hello again, In section.footer.css line 410, you’ll see this,

@media screen and (min-width: 750px)
.footer-block__details-content>li:not(:last-child) {
    margin-right: 1.5rem;// change 1.5rem to 0
}

change margin-right to margin:right:0

@Gaiar

add this code to your base.css file.

Navigate to online store >> Click edit theme code.

Now find base.css and paste the following code:

@media screen and (min-width: 750px){
.footer-block__details-content>li:not(:last-child) {
    margin-right: 0 !important;
}
}

Thank you @eFoli-Marvic .

Both solutions worked.

Thank you @lunaworks .

Both solutions worked.