last year the same thing happend to me and i noticed that i change the internet explorer's text-size from medium to larger. it might be the case for you too.
serkan sendur
Postaholic
2,062 posts since Jan 2008
Reputation Points: 854
Solved Threads: 127
why dont you post your entire page so we can display in our computers?
serkan sendur
Postaholic
2,062 posts since Jan 2008
Reputation Points: 854
Solved Threads: 127
i have a web page which i set the body with the following external styles.
.body{
background-image:url(bg_image.jpg);
background-repeat: repeat;
font-size: 12px;
font-family: Arial, Verdana, Georgia, Times New Roman, Sans-Serif;
}
.body a:link{color:#0000FF; text-decoration:none;}
.body a:visited{color:#0000FF; text-decoration:none;}
.body a:hover{background-color:none;color:none; text-decoration:underline;}
The problem is only in fonts.All fonts in my page appears to be BOLDED WHILE I DIDN`T SET LIKE THAT.
I HAVE TRIED TO CHECK WHAT IS THE PROBLEM WITHOUT SUCCESS.
I will appreciate if someone will tell me what to do,or i should do to force all the font to be UNBOLDED.
thankx.
just try to add this after your css code.. don't know if it will help
cguan_77
Nearly a Posting Virtuoso
1,317 posts since Apr 2007
Reputation Points: 19
Solved Threads: 115
try putting it after this code
not so sure if it will help..just try it....
cguan_77
Nearly a Posting Virtuoso
1,317 posts since Apr 2007
Reputation Points: 19
Solved Threads: 115
yah! use in u r body tag like and try.
font-weight: normal;
kavithakesav
Junior Poster in Training
52 posts since Nov 2007
Reputation Points: 10
Solved Threads: 2
It would definitely help others to see a full page code, including CSS, etc. for accurate triage. Certainly something like the following may work (note "body" and ".body" in your case are synonymous, and seems redundant):
body {
font-weight: normal;
}
However, the above may not be enough (and is the default behavior anyway), and totally depends on your page markup. For example, you might have an extra or or something around your content. In that case, you'd either need to (ideally) modify your markup appropriately (i.e. remove the or in this case), or change your CSS to select the given element and overwrite the bold behavior.
In the meantime, we're really just guessing at solutions...
scottloway
Junior Poster in Training
55 posts since May 2008
Reputation Points: 22
Solved Threads: 12
speed tweak take the dot(.) out of your css body definition,
is just
almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376
I don't see anything here that would define bold text; if this is your entire CSS, then it seems your issue is with HTML - if you post it (or point to somewhere it exists online), we can take a look.
i have a web page which i set the body with the following external styles.
.body{
background-image:url(bg_image.jpg);
background-repeat: repeat;
font-size: 12px;
font-family: Arial, Verdana, Georgia, Times New Roman, Sans-Serif;
}
.body a:link{color:#0000FF; text-decoration:none;}
.body a:visited{color:#0000FF; text-decoration:none;}
.body a:hover{background-color:none;color:none; text-decoration:underline;}
The problem is only in fonts.All fonts in my page appears to be BOLDED WHILE I DIDN`T SET LIKE THAT.
I HAVE TRIED TO CHECK WHAT IS THE PROBLEM WITHOUT SUCCESS.
I will appreciate if someone will tell me what to do,or i should do to force all the font to be UNBOLDED.
thankx.
scottloway
Junior Poster in Training
55 posts since May 2008
Reputation Points: 22
Solved Threads: 12