Image 1 - Desired Design (Explore our collections is positioned separately down in middle. Also how can i add a partition below if as shown in the image??).
Image 2 - Designed i’m stuck with.
Could you drop your store link?
store link - https://6b771c-3.myshopify.com/
password - jewelsmisa
Go to your Online store > Themes > Edit code > Assets, open base.css and add this code at the bottom
@media (min-width: 768px){
#Banner-template--16902098452735__image_banner .banner__text {
position: absolute !important;
bottom: -100px;
left: 50%;
transform: translate(-50%);
}
}
Please update code like this
@media (min-width: 768px){
#Banner-template--16902098452735__image_banner .banner__text:first-child {
position: absolute !important;
bottom: -100px;
left: 50%;
transform: translate(-50%);
}
}