Hi guys,
How can I change the font size globally on every element of a whole site with one single font-size statement?
body { font-size: 10pt; } doesn't have any effect on text within tables.
Thus I need to declare it twice like this :
Code:
body { font-size: 10pt; }
td { font-size: 10pt; }
So, what's the catch?
Thanks for the help