Can someone help me?
PW: mewbid
Hi there, @hidaniellegreen !
Welcome to the Community! Definitely a great place to gather some input regarding anything about the platform!
With regards to your inquiry, please visit this help document as a possible alternative solution to what you are after with needing help tweaking your Dawn theme. Since you are using a Shopify made theme, you may qualify for 60 minutes of design time from our Themes department.
Once you are able to pinpoint the help you may need with adjusting your theme (that is not possible within the editor), you can reach out to our live support team to inform them that you would like to make such customizations and they will assist you with accomplishing this with the help of the themes team.
You can definitely relay this request to them and start that conversation to see how best to proceed and what options are available to you. Definitely let me know how this works out for you.
Hi,
If you want to make narrow 2-column footer (current layout but narrow), please copy & paste the code below in Assets/section-footer.css.
@media screen and (min-width: 750px) {
.footer {
width: 100%;
display: inline-flex;
flex-direction: column;
}
}
If you want the newsletter up and make 3-column layout footer, please copy & paste the code below in Assets/section-footer.css.
@media screen and (min-width: 750px) {
.footer {
display: inline-flex;
flex-direction: column;
align-content: space-around;
align-items: center;
width: 100%;
}
.footer__content-top {
display: inline-flex !important;
align-items: flex-start;
justify-content: space-between;
flex-direction: row;
}
.footer-block--newsletter {
flex-wrap: wrap !important;
justify-content: space-between;
margin-top: 0 !important;
}
}
It will look like below.
Hope it helps.
If you need further assistance, please let me know.
Thanks.
What file would those be in?