I want to style a specific H4 tag, those are added as widgets on blog post pages, therefore I use the CSS selector, but I'm struggling to get it work
This is what I want to happen:
#post-RANDOMNUMBER > div > div.awac-wrapper > div > h4 {
font-size: 20px;
}
Something I've tried but obviously it does not work
#post-(n) > div > div.awac-wrapper > div > h4 {
font-size: 20px;
}