Thanks for that, I have tried it and played around with the font-size, I can make it bigger, which is not what I want, I want to make it smaller. If I set the size as 0 then it disappears altogether, if I set it to say 0.1 then its the same size as it there was no code.
Whilst we are on the font subject, what fonts can I change it to. The owner wants the font ‘Fruitiger’ never heard of it but apparently its similar to Helvetica Neue. Is it possible to change the whole site to a new font and not per page?
The Theme uses rem( rem (root em) units) relative to the root (html) font size where em is relative to its direct or nearest parent.
em’s were available first in browsers. rem’s added later so a lot of “older” references tend to show examples in em’s. All browsers now (iOS > 5), IE > 8) support REM as a unit of measurement.
So the answer is either would work. You can end up with very different results using em vs rem as they are relative measurements to different elements. Most modern designs are now using rem because if elements direct or nearest parent change then the element might unexpectedly change.
The reality is you can use any CSS valid length unit like rem, em, px. Just remove the space.