I have just been given some bug fixes to do on some code I haven't seen or developed before.
On the page there are four paragraphs (<p>
) but I need to increase the font-size of only the first one and not the others.
It is not possible to add an extra class for the paragraph that needs changing but is there any way to do it another way using css?
Here's the css that would change all of them:
.<company-name>-information-page .<company-name>-content p {
font-size: 16px;
}
Thanks.