Make Rich Text Background Transparent

Solved

Make Rich Text Background Transparent

plants4friendz
Explorer
46 1 10

Hello,


My rich text banner is blocking my mega menu on this page. Anyone have any suggestions for how to make the background truly transparent?

Screenshot 2024-10-06 at 9.01.55 AM.png

 

www.thespiralpath.love/products/flower-reading

 

Thank you!

Accepted Solution (1)

Aashish_Bhatt
Shopify Partner
123 10 16

This is an accepted solution.

Hi @plants4friendz ,

 

Thanks for asking a great question here on the Shopify Community!

I'm a Shopify expert, and I'm happy to help you with the issue you're facing. After reviewing the website URL you shared, I found that there’s a CSS issue causing the problem. To resolve this, you’ll need to make a small adjustment in your theme’s code. Please follow these steps:

 

Note: A basic understanding of code is required for this fix.

Steps to resolve the issue:

  1. Log in to your Shopify admin dashboard.
  2. Navigate to Online Store and click on Themes.
  3. On the right-hand side, click on the three dots (•••) next to your live theme.
  4. Select Edit Code from the dropdown.
  5. In the left-hand sidebar, locate and open the base.css file under the Assets folder.
  6. Scroll down or search for line 166, where you’ll see the following code:

 

.isolate {
  position: relative;
  z-index: 0;
}

 

7. Replace that code with the following:

 

.isolate {
  position: relative;
  z-index: -1;
}

 

8. Once you've made the change, click Save in the top-right corner.

 

Now, refresh your website and test the page—it should work fine!


if you have any more questions or need further assistance free to ask.

 

If Helpful, Please Like & Accept Solution
Any Queries? Reach Me via Email: development.aashish@gmail.com
I am open to conversation.

View solution in original post

Replies 4 (4)

Aashish_Bhatt
Shopify Partner
123 10 16

This is an accepted solution.

Hi @plants4friendz ,

 

Thanks for asking a great question here on the Shopify Community!

I'm a Shopify expert, and I'm happy to help you with the issue you're facing. After reviewing the website URL you shared, I found that there’s a CSS issue causing the problem. To resolve this, you’ll need to make a small adjustment in your theme’s code. Please follow these steps:

 

Note: A basic understanding of code is required for this fix.

Steps to resolve the issue:

  1. Log in to your Shopify admin dashboard.
  2. Navigate to Online Store and click on Themes.
  3. On the right-hand side, click on the three dots (•••) next to your live theme.
  4. Select Edit Code from the dropdown.
  5. In the left-hand sidebar, locate and open the base.css file under the Assets folder.
  6. Scroll down or search for line 166, where you’ll see the following code:

 

.isolate {
  position: relative;
  z-index: 0;
}

 

7. Replace that code with the following:

 

.isolate {
  position: relative;
  z-index: -1;
}

 

8. Once you've made the change, click Save in the top-right corner.

 

Now, refresh your website and test the page—it should work fine!


if you have any more questions or need further assistance free to ask.

 

If Helpful, Please Like & Accept Solution
Any Queries? Reach Me via Email: development.aashish@gmail.com
I am open to conversation.
plants4friendz
Explorer
46 1 10

Thanks so much Aashish! Is there something similar that could fix this issue?

 

Screenshot 2024-10-06 at 9.57.49 AM.png

Aashish_Bhatt
Shopify Partner
123 10 16

Try to add below code just underneath the above code  on same file base.css

.header-template--18535041106165__ss_header_1_w7bFHW {
    z-index: 9;
    position: relative;
}

 

If Helpful, Please Like & Accept Solution
Any Queries? Reach Me via Email: development.aashish@gmail.com
I am open to conversation.
plants4friendz
Explorer
46 1 10

Hmm, no luck!