How can I minimize logo space and move it right in the footer?

I want to re-position my logo from the existing place to the right in the footer, above the payment icons. How can I do this?

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.scss.css and paste this at the bottom of the file:
.grid__item.seaction_gape.medium-up--one-third:last-child {
    display: flex;
    flex-flow: row-reverse;
}
.footer_logo-1 .desktop_logo img {
    width: 90%;
}

ul.footer_logo-1 img {
float: right !important;
}

Hello @hunainkhan ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

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

.footer-logo {
  margin-left: auto;
}

Save changes

Hope this can help. Let us know if you need any further support.

Transcy