A store owner using the Origin theme needed help repositioning two elements: moving their brand logo to the right so a background border falls between the two ‘L’ letters, and shifting footer text to the left edge of the page.
How Can I move my brand logo more to the right? I want the boarder between background photos to fall just in the middle of the two “L” letters.
How can I move the text at the footer more to the left? I want it to sit at the edge with just alittle space between the left side of the page and the text.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
h1.header__heading {
margin-left: 20px;
}
.footer__content-bottom-wrapper.page-width {
margin-left: 0 !important;
}
}