Solved

How to remove text box in image with link

Thomasgalati6
Tourist
5 0 2

Screen Shot 2021-07-05 at 9.05.27 pm.png

Where about in code am I able to remove the text box above the SHOP NOW button 🙂

Accepted Solution (1)
Kinjaldavra
Shopify Partner
2302 570 1422

This is an accepted solution.

hello @Thomasgalati6 


please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

 #shopify-section-162545891710bb3761 .page-width .section-block .featured-content .emphasized-title-wrapper{
          visibility: hidden;
  }

 

View solution in original post

Replies 7 (7)

KetanKumar
Shopify Partner
36839 3635 11972

@Thomasgalati6 

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community!😊
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
Thomasgalati6
Tourist
5 0 2

costfit.com.au

LamQSolutions
Shopify Partner
131 30 44

Hi,

To do that, you can install my free app Custom CSS and add the following code

If you don't want to install the app, you can add the following at the bottom of your assets/styles.scss.liquid or assets/theme.scss.liquid file

.template-index .shopify-section--slideshow .hero-content__title {
  display: none !important;
}

 

Found my answer helpful? Please LIKE or Accept Solutions.
You may be interested in our apps
Scrolly Telling - Create scroll-based animations visually.
Ultimate Sections - Slideshow, Gallery, Collection, FAQs, Brand, Info box, Testimonial and more
Thomasgalati6
Tourist
5 0 2

That doesn't seem to work unfortunately

LamQSolutions
Shopify Partner
131 30 44

Hi,

I see that the text is deleted https://prnt.sc/195gbgs. Could you please recheck it?

Found my answer helpful? Please LIKE or Accept Solutions.
You may be interested in our apps
Scrolly Telling - Create scroll-based animations visually.
Ultimate Sections - Slideshow, Gallery, Collection, FAQs, Brand, Info box, Testimonial and more
Thomasgalati6
Tourist
5 0 2

Hey there, this is the section that I needed text deleting

Screen Shot 2021-07-07 at 2.03.24 pm.png

Kinjaldavra
Shopify Partner
2302 570 1422

This is an accepted solution.

hello @Thomasgalati6 


please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

 #shopify-section-162545891710bb3761 .page-width .section-block .featured-content .emphasized-title-wrapper{
          visibility: hidden;
  }