How can I position text above photos on mobile version in Debut theme?

hello, how I can move my text above the photo? (ONLY ON THE MOBILE VERSION) Desktop version everything is ok. (THEME - Debut)

1 Like

Hello There,

Please share your page store URL and Password.
So that I will check and let you know the exact solution here.

1 Like

https://kvapis.lt/password
password - marius

1 Like

https://kvapis.lt/password
password - marius

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width:768px){
div#shopify-section-feature-row {
position: relative;
}
.feature-row__item.feature-row__text.feature-row__text--left {
position: absolute;
top: -38px;
left: 24px;
}
}

Screenshot :- https://prnt.sc/KDldgXEHivat

1 Like

it works! and maybe it’s possible to align-center this text? (ONLY MOBILE)

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width:768px){
div#shopify-section-feature-row {
position: relative;
}
.feature-row__item.feature-row__text.feature-row__text--left {
position: absolute;
top: -38px;
text-align: center;
}
}
1 Like

perfect! and how to do with the

second photo the same thing?

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width:768px){
div#shopify-section-1653915432cf293b55 {
position: relative;
}
.feature-row__item.feature-row__text.feature-row__text--right {
position: absolute;
top: -40px;
text-align: center;
}
}

Screenshot :- https://img001.prntscr.com/file/img001/xXEa_8CNTd-lVU5-_UR6YA.png

1 Like