Help in font family:

Thread Solved

Join Date: Mar 2008
Posts: 217
Reputation: mrcniceguy is an unknown quantity at this point 
Solved Threads: 4
mrcniceguy mrcniceguy is offline Offline
Posting Whiz in Training

Help in font family:

 
0
  #1
Mar 14th, 2009
i have a web page which i set the body with the following external styles.
  1. .body{
  2. background-image:url(bg_image.jpg);
  3. background-repeat: repeat;
  4. font-size: 12px;
  5. font-family: Arial, Verdana, Georgia, Times New Roman, Sans-Serif;
  6. }
  7.  
  8. .body a:link{color:#0000FF; text-decoration:none;}
  9. .body a:visited{color:#0000FF; text-decoration:none;}
  10. .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.
Last edited by mrcniceguy; Mar 14th, 2009 at 10:54 pm. Reason: .
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 2,052
Reputation: serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light 
Solved Threads: 122
Featured Poster
serkan sendur serkan sendur is offline Offline
Postaholic

Re: Help in font family:

 
0
  #2
Mar 15th, 2009
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.
Due to lack of freedom of speech, i no longer post on this website.
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 217
Reputation: mrcniceguy is an unknown quantity at this point 
Solved Threads: 4
mrcniceguy mrcniceguy is offline Offline
Posting Whiz in Training

Re: Help in font family:

 
0
  #3
Mar 15th, 2009
i did as u said but nothing changed.
Also i noticed this problem is all browsers i tested:

explorer,mozila,opera,google crome and even Safari.
I`m still confused.
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 2,052
Reputation: serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light 
Solved Threads: 122
Featured Poster
serkan sendur serkan sendur is offline Offline
Postaholic

Re: Help in font family:

 
0
  #4
Mar 15th, 2009
why dont you post your entire page so we can display in our computers?
Due to lack of freedom of speech, i no longer post on this website.
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 1,120
Reputation: cguan_77 has a little shameless behaviour in the past 
Solved Threads: 93
cguan_77's Avatar
cguan_77 cguan_77 is offline Offline
Veteran Poster

Re: Help in font family:

 
0
  #5
Mar 16th, 2009
Originally Posted by mrcniceguy View Post
i have a web page which i set the body with the following external styles.
  1. .body{
  2. background-image:url(bg_image.jpg);
  3. background-repeat: repeat;
  4. font-size: 12px;
  5. font-family: Arial, Verdana, Georgia, Times New Roman, Sans-Serif;
  6. }
  7.  
  8. .body a:link{color:#0000FF; text-decoration:none;}
  9. .body a:visited{color:#0000FF; text-decoration:none;}
  10. .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.. <div><B></B></div> don't know if it will help
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 217
Reputation: mrcniceguy is an unknown quantity at this point 
Solved Threads: 4
mrcniceguy mrcniceguy is offline Offline
Posting Whiz in Training

Re: Help in font family:

 
0
  #6
Mar 16th, 2009
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  3. <link rel="stylesheet" type="text/css" href="css/styles.css" />
  4. <title>No body can stop you from being happy</title>
  5. </head>
  6. <body class="body">
above is how i`m linking my styles.
so how or should i put the Code u suggested above.???
Last edited by peter_budo; Mar 21st, 2009 at 3:02 pm. Reason: Keep It Organized - For easy readability, always wrap programming code within posts in [code] (code blocks) and [icode] (inline code) tags.
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 1,120
Reputation: cguan_77 has a little shameless behaviour in the past 
Solved Threads: 93
cguan_77's Avatar
cguan_77 cguan_77 is offline Offline
Veteran Poster

Re: Help in font family:

 
0
  #7
Mar 16th, 2009
try putting it after this code

<body class="body">

not so sure if it will help..just try it....
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 217
Reputation: mrcniceguy is an unknown quantity at this point 
Solved Threads: 4
mrcniceguy mrcniceguy is offline Offline
Posting Whiz in Training

Re: Help in font family:

 
0
  #8
Mar 16th, 2009
nothing changed..
Reply With Quote Quick reply to this message  
Join Date: Mar 2009
Posts: 28
Reputation: shniager is an unknown quantity at this point 
Solved Threads: 2
shniager shniager is offline Offline
Light Poster

Re: Help in font family:

 
0
  #9
Mar 16th, 2009
Try to use this css property.
font-weight: lighter, normal, bold, bolder;
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 52
Reputation: kavithakesav is an unknown quantity at this point 
Solved Threads: 2
kavithakesav kavithakesav is offline Offline
Junior Poster in Training

Re: Help in font family:

 
0
  #10
Mar 17th, 2009
yah! use in u r body tag like and try.

font-weight: normal;
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



Tag cloud for HTML and CSS
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC