There is a situation where multiple pages contain h elements nested inside a standard container div class.
When trying to edit a specific h2 element in a specific page using CSS, simply editing the h2 or the container does not work. Other methods attempted include:
Creating an exclusive div class for the h2 and attempting to style it conventionally
Putting the h2 in an id, such as: "blablablah"
CSS attempts:
.faq_title h2 {}
h2 faq_title {}
just faq_title {}
- Another attempt involved creating two containers for that specific page in order to style the h2:
''
Then in the CSS:
.container_help h2 {}
I would greatly appreciate assistance with this. If someone could help me understand this, I may not need to ask for help for a while.
Thank you!!!