How can i move the terms & the policies up a lil bit (Narrative Theme)

please check the attached pic

Website: WWW.OXYTOCIN.SHOP

  • Add a product in the cart so you can see

@Fares2
Hii,

@media only screen and (max-width: 749px) {
.cart-drawer__disclaimer.rte {
	display: none;
}
.rale-widget.rale-customized {
  padding: 0;
}
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Like This

hi @Fares2 ,

this is solve for you.
You can add the short code bellow at the bottom of /assets/theme.scss.css file :
.rale-widget.rale-customized{

position: relative;

top: -25px;

}

Please add below css code in bottom of theme.scss.css file

@media only screen and (min-width: 750px)
.cart-drawer__disclaimer {
margin-bottom: 0;
}
.rale-widget.rale-customized {
margin-bottom: 30px;
}

Thank you.