I wanted to change the background on the post date with a transparent background and add my own colors to the month, day, and year
I applied this coding to the child theme CSS. If you need to know how to create an Astra child theme please check out my other video.
span.date-day {
background: rgba(241, 241, 241, 0);
color: #FECA38 !important;
text-shadow: 1px 1px #000;
}
.ast-article-post .ast-date-meta .posted-on, .ast-article-post .ast-date-meta .posted-on * {
background: rgba(241, 241, 241, 0) !important;
color: #fff;
text-shadow: 1px 1px #000;
}
.ast-article-post .ast-date-meta .posted-on .date-month, .ast-article-post .ast-date-meta .posted-on .date-year {
color: #fff;
}