Forum Moderators: not2easy
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
.content {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
td {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
I have the main body, and ALL content in a DIV with the class "content". This defines yet another background image and margins. I have a header div, then a table for two columns, then I have text that is not in a table or DIV other than the content DIV, which all things are in. This single line of text would not take on the proper font until I added this to my stylesheet:
div {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
Is this normal? I thought that since ALL things are in the DIV class "content" that it would take on the proper font - uh, well, maybe I see an issue? I see I have 10pt in one place and 10px in another.........
Well, comment anyone, in the meantime, I'll play with that...... I'd like to know if after defining a font in the DIV class="content" I should have to define it elsewhere. Maybe I see the issue now.
Shadows Papa
It was the PT vs. PX thing - the px was a bit smaller, when I changed it, I found that it was working, I just had it defined incorrectly.
And to get 10PT, I'd need to state 13 or 14px to get the same, correct?
I'll try it - takes only seconds.
Thanks again to all.
Shadows Papa
body, html {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
I can't remember which resource I found that in, though. It might be worth a try.