Can someone help me with adjusting font?

.shows {
text-align: center;
font-size: 50px;
text-decoration: underline;

}

The above is CSS styling applied to paragraph text with the class “shows.”

Am I doing the font size formatting correctly? When I adjust the text-align or take away the text-decoration, the page responds accordingly. However, when I change the font-size value, nothing happens. Thank you in advance for your advice!

That’s how you change the font-size. Do you have another class that sets the font-size for your paragraph? If so, does that class come after your “shows” class?

Hmm, there must have been. I created an id for each column header and adjusted the text for each id and it worked. I don’t know what was overriding the class font-size, but I was still able to fix the issue. Thank you for your help!