How to add texts at top of multi row row

Solved

How to add texts at top of multi row row

NOT1
Shopify Partner
272 2 117

NOT1_0-1726227512001.png

 

How can i put the texts buttons etc (all which are under the image) at top like this :

NOT1_1-1726227546324.png

 

Accepted Solution (1)
websensepro
Shopify Partner
1220 136 156

This is an accepted solution.

@NOT1 , try the below:

 

<style>
  @media (max-width: 768px) {
    .image-with-text__media-item.image-with-text__media-item--medium.image-with-text__media-item--middle.grid__item {
      position: relative;
       top: 280px;
    }

    .image-with-text__text-item.grid__item {
      position: relative;
      top: -328px;
    }
  }
</style>

 

websensepro_0-1726229191657.png

 

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial

View solution in original post

Replies 13 (13)

websensepro
Shopify Partner
1220 136 156

Hi @NOT1 , kindly share the URL of the specific page of your site where this button exist. Thanks!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
NOT1
Shopify Partner
272 2 117

..................

websensepro
Shopify Partner
1220 136 156

@NOT1 , can you also give me the link of specific page where these buttons exist? Thanks!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
NOT1
Shopify Partner
272 2 117

its on my home page just before the footer

websensepro
Shopify Partner
1220 136 156

 

@NOT1 try the below code:

<style>
  .button.button--primary {
    background: none !important;
    color: black !important;
    text-decoration: underline !important;
    font-weight: bold !important;
  }
</style>

websensepro_0-1726228803646.png

It is currently showing in grey color because it is a disabled button.

 

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
NOT1
Shopify Partner
272 2 117

Hey i think there is a misunderstanding I want everything like the text buttons etc all above the image on mobile like this Screenshot 2024-09-13 173904.png

websensepro
Shopify Partner
1220 136 156

This is an accepted solution.

@NOT1 , try the below:

 

<style>
  @media (max-width: 768px) {
    .image-with-text__media-item.image-with-text__media-item--medium.image-with-text__media-item--middle.grid__item {
      position: relative;
       top: 280px;
    }

    .image-with-text__text-item.grid__item {
      position: relative;
      top: -328px;
    }
  }
</style>

 

websensepro_0-1726229191657.png

 

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
NOT1
Shopify Partner
272 2 117

Thanks

websensepro
Shopify Partner
1220 136 156

No worries. Glad it worked!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial

Made4uo-Ribe
Shopify Partner
8250 1977 2425

Hi @NOT1 

Would you mind sharing your store URL? Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
NOT1
Shopify Partner
272 2 117

.................

Made4uo-Ribe
Shopify Partner
8250 1977 2425

Thanks for the info, this is only on the mobile sreen right? 

if it is check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px) {
    .image-with-text__text-item.grid__item {
        position: absolute;
        top: 0;
        z-index: 10;
        padding: 0 20px;
    }

    .image-with-text__grid.grid.grid--gapless.grid--1-col.grid--2-col-tablet.image-with-text__grid--reverse {
        position: relative;
    }
}

 

And Sve. 

result:

Made4uoRibe_0-1726228872805.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
NOT1
Shopify Partner
272 2 117

Screenshot 2024-09-13 173904.pngHey thanks but I want it above the image not in the image thanks