3
A little more, from my somewhat limited experience with XOOPS themes and their CSS files:
What I do is put something like this in style.css:
Quote:
body, a, p, td, div {
font-family: Arial, Tahoma, Verdana, Geneva, Helvetica, sans-serif;
font-size: small;
}
Then, in styleNN.css (for Netscape browsers), I put this:
Quote:
body, a, p, td, div {
font-size: medium;
}
Everywhere else in my style files, I specify font-size only as a percentage. Nowhere do I specify font-size in points or pixels.
For example:
Quote:
.blockTitle {
background: #FDE875;
color: #dd243c;
font-weight: bold;
font-size: 110%;
}
This has the effect of getting almost exactly the same fonts in both browsers, and what's more the user can scale the fonts (with Ctrl+ and Ctrl-) and all the fonts scale together.
Your milage may vary, but this works for me.