Move button on top banner in dawn 3.0

Solved
ebon
Pathfinder
113 3 39

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
48 11 9

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>
I am available for freelance work.
Skype: Emirates77777 | E: artur.sulkowski.1405@gmail.com

View solution in original post

Replies 2 (2)
Emirates7
Shopify Partner
48 11 9

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>
I am available for freelance work.
Skype: Emirates77777 | E: artur.sulkowski.1405@gmail.com
ebon
Pathfinder
113 3 39

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?