Is there a way to add a drop shadow to all the buttons that are Light Transparent? They are on most of the pages at the top of the page: https://neighborhoodsinphoenix.com/
They all have images behind them and it sometimes gets hard to read.
Let me know if there is an CSS that would work for the site.
thanks!!
Hey bemodesign,
Thank you for the inquiry.
You can try this css code:
#top .avia-button .avia_button_icon, #top .avia-button .avia_iconbox_title {
text-shadow: 1px 2px black;
}
You can also apply a semi transparent background to the buttons:
#top .avia-buttonrow-wrap .avia-button.avia-color-light {
background: rgba(0,0,0,0.2);
}
Best regards,
Ismael
