Front Page Latest Article Background Color
- The topic ‘Front Page Latest Article Background Color’ is closed to new replies.
Need help? Check out our Support site, then
Good morning!
I think you can do that with the following.
.summary-main .summary:nth-of-type(1) .details {
background: green;
}
.summary-main .summary:nth-of-type(1) .details * {
color: white;
}
.summary-main .summary:nth-of-type(1) .details a:hover,
.summary-main .summary:nth-of-type(1) .details a:hover * {
color: white !important;
}
Thanks.