I'm attempting to customize the font-family of the headings within my header section differently from the headings located elsewhere on the webpage. Unfortunately, I am encountering difficulties in ensuring that this style change only affects the specific header ID.
Here's the approach I took:
#header h1,h2,h3,h4 {
font-family: 'Helvetica';
}
However, this implementation results in all h1/2/3/4 tags adopting the Helvetica font regardless of their location within or outside the header division. I believe I might be overlooking a simple solution. Can anyone offer assistance? Thank you!