Forum Moderators: phranque
Your website looks different on other people's monitors because (in many cases) they have chosen to set font sizes that work for their vision, monitor resolution, ease of scanning, et.
Let the visitor decide: Use % not pixels or points.
- in <HEAD> section of webpage -
<style type="text/css">
font:13px
</style>
- Inline CSS -
<p style="font:13px">blah blah</p>
Change the number accordingly. There are other font attributes you will also want to identify such as font-family, color, bold/italic, etc. Do a few searches for "font css" or similar keywords and read up.