Solved

Move button on top banner in dawn 3.0

ebon
Pathfinder
116 3 41

Does any have code to move the Button in the top Banner on Dawn 3.0 to the bottom left or right?

Thank you.

 

Mu URL is preacha.com

Accepted Solution (1)

Emirates7
Shopify Partner
214 50 40

This is an accepted solution.

Try add below code to any liquid file of your theme.

<style type="text/css">
.banner__buttons {
position: absolute;
    left: 30px;
    background: #000;
}
.banner--desktop-transparent .banner__box,
.banner__content {
position: static !important;
}
.banner {
position: relative;
}
</style>

View solution in original post

Replies 2 (2)

Emirates7
Shopify Partner
214 50 40

This is an accepted solution.

Try add below code to any liquid file of your theme.

<style type="text/css">
.banner__buttons {
position: absolute;
    left: 30px;
    background: #000;
}
.banner--desktop-transparent .banner__box,
.banner__content {
position: static !important;
}
.banner {
position: relative;
}
</style>
ebon
Pathfinder
116 3 41

Thank you, it works on desktop but doesn't place it on the bottom of the banner on mobile.

Can you edit the code to include mobile as well?