How do i change the button position on a section

i need to change my button position from the middle to the arrow part on this certain section only. the rest of the sections can keep in the centre.

web: www.hayclon.com

i wish to centralise with text shown.

@zhiyuan ,

Please add this CSS to your theme

div#Hero-164431786978d8f1ea .page-width {
    display: flex;
    margin-top: 150px;
}

Thanks!

@zhiyuan

Go to assetes/theme.css

Find this calss .hero__btn And add below css.

.hero__btn {
margin: 150px 0px 0px 150px;
float: left;
}

This apply to all my section? i only wish to apply on only one section. plz help :slightly_smiling_face:

@zhiyuan ,

It’s applicable only one section

div#Hero-164431786978d8f1ea .page-width {
    display: flex;
    margin-top: 150px;
}

Thank You!