We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Add shadow to slideshow heading and subheading sense theme

Solved

Add shadow to slideshow heading and subheading sense theme

liustraa
Tourist
3 0 2

I want to add shadow to slideshow heading and subheading text. 

 

I tried lots of codes but it doesnt seem to work.

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3080

This is an accepted solution.

Hi @liustraa 

Do you mean text shadow? 

If it is, check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

h2.banner__heading.inline-richtext.h1, .banner__text.rte {
    text-shadow: 5px 3px 5px rgba(0, 0, 0, 0.5);
}

 

And Save. 

Result:

Made4uoRibe_0-1704837622015.png

if this wont work please, share your store URL. Thanks!

 

 

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 5 (5)

Abdosamer
Shopify Partner
1040 188 225

Hi @liustraa , can you share your store url?

Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work

Made4uo-Ribe
Shopify Partner
10211 2427 3080

This is an accepted solution.

Hi @liustraa 

Do you mean text shadow? 

If it is, check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

h2.banner__heading.inline-richtext.h1, .banner__text.rte {
    text-shadow: 5px 3px 5px rgba(0, 0, 0, 0.5);
}

 

And Save. 

Result:

Made4uoRibe_0-1704837622015.png

if this wont work please, share your store URL. Thanks!

 

 

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
liustraa
Tourist
3 0 2

it worked thank you, maybe you have a code that would make shadow for slideshow button "text" not the button itself too?

Made4uo-Ribe
Shopify Partner
10211 2427 3080

Check this one, same Instruction. 

 

.button, .button-label {
    text-shadow: 5px 4px 4px rgba(0, 0, 0, 1);
}

 

And Save. 

Im not sure if this will work cause im only using the demo theme. 

 

 

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
liustraa
Tourist
3 0 2

it worked, thank you!!