hi,
I would a shadow in hero module in home and I add:
@media (max-width: 1199.98px)
.acm-hero.style-1 .hero-item h1, .acm-hero.style-1 .hero-item .h1 {
text-shadow: 2px 3px black !important;
}
but nothing change, where I wrong?
text shadow
Hi librandi,
If you want to show the shadow on all the screen, you can use the following CSS code:
.acm-hero.style-1 .hero-item h1, .acm-hero.style-1 .hero-item .h1 {
text-shadow: 2px 3px black;
}
If you want to show the shadow on the small screen as the code that you provided, you can use the following CSS code:
@media (max-width: 1199.98px) {
.acm-hero.style-1 .hero-item h1, .acm-hero.style-1 .hero-item .h1 {
text-shadow: 2px 3px black;
}
}
I solved
saguaros locked the discussion.