Need Full Width Image with Text Overlay in Superstore 5.3.0 Theme

Solved

Need Full Width Image with Text Overlay in Superstore 5.3.0 Theme

GBIT_Team
Tourist
8 0 5

Hi! We are using the Superstore Version 5.3.0 theme and would like our "Image with text overlay" to be full width. Basically, we want a full width banner at the top of our landing page. I tried adding the following code to Asset > /theme.css that I saw in another post, but I guess it did not work with our theme. 

.template-page .main-content .page-width { MAX-WIDTH: 100%; }

Any help is appreciated. We also don't mind having all sections full width. 


https://www.neptunegolfcarts.com/

Accepted Solution (1)
BSS-TekLabs
Shopify Partner
2144 634 737

This is an accepted solution.

 

<style>
.image-with-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
</style>

 

please replace to this code @GBIT_Team 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 13 (13)

BSS-TekLabs
Shopify Partner
2144 634 737
.image-with-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

Can you try this code @GBIT_Team 

BSSTekLabs_0-1724863425119.png

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2144 634 737

- Here is the solution for you @GBIT_Team 
- Please follow these steps:

z5686811214059_e66de1953f1db631f9134af5cdb796ad.jpg

- Then find the theme.liquid file.
- Then add the following code at the before tag </head> and press 'Save' to save it.

<style>
.image-with-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
</style>

- Here is the result you will achieve:

BSSTekLabs_1-1724863467528.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
GBIT_Team
Tourist
8 0 5

This one did not work for me either 

GBIT_Team
Tourist
8 0 5

Thanks for the quick response! It made it a little wider, but still not full width.

BSS-TekLabs
Shopify Partner
2144 634 737

This is an accepted solution.

 

<style>
.image-with-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
</style>

 

please replace to this code @GBIT_Team 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2144 634 737

- Here is the result you will achieve @GBIT_Team :

BSSTekLabs_0-1724864097616.png

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2144 634 737

Can you try this @GBIT_Team 

<style>
.image-with-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
</style>

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
GBIT_Team
Tourist
8 0 5

This one worked! Thank you 😊

BSS-TekLabs
Shopify Partner
2144 634 737

Glad to help you. Have a good day @GBIT_Team .

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

BSSCommerce-B2B
Shopify Partner
1500 429 486

@GBIT_Team , try this

 

.image-with-text {
  padding: 0!important;
  margin: 0!important;
}
.image-with-text-background {
  min-width: 100vw!important
}

 

Result:

BSSCommerceB2B_1-1724863825055.png

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

GBIT_Team
Tourist
8 0 5

Unfortunately none of those are working for me either.

BSSCommerce-B2B
Shopify Partner
1500 429 486

@GBIT_Team, let put this befor </body> of theme.liquid file

<style>
.image-with-text {
  padding: 0!important;
  margin: 0!important;
}
.image-with-text-background {
  min-width: 100vw!important
}
</style>

I think it will work 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

GBIT_Team
Tourist
8 0 5

Another user solved it above, but thank you for your help as well!