My site previews fine in live, explorer and firefox, but the fonts are extra large and bold on chrome, this is my first site, please assist. I will be happy to provide screenshots and code or css  sheets.

Working on my first site, Am getting different previews. Chrome tends to make the font big and bold while all other browsers work fine. Here is what the preview looks like in chrome followed by the firefox preview. I have my CSS and HTML code sheets below. Am also having a hard time centering the navigation links, they are a little closer to top of the navigation div than the bottom. Any assistance will be appreciated. Please feel free to point any other errors, am sure there is some in there.
@charset "utf-8";
body {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  color: 151515;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  background-color: EFF5F8;
#banner {
#wrapper {
  background-color: rgba(255,255,255,1.00);
  width: 100%;
  min-width: 740px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
#sidebar img {
  max-width: 100%;
#wrapper #banner img {
  max-width: 100%;
h1, h2 {
  color: #3399CC;
  font-family: source-sans-pro;
  font-style: normal;
  font-weight: 600;
h1 {
  font-size: 40px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
#hero {
  float: left;
  width: 58%;
  margin-left: 2%;
#sidebar {
  width: 34%;
  margin-left: 4%;
  float: left;
#footer {
  float: left;
  clear: left;
  padding-left: 2%;
  background-color: #43A6CB;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
a {
  text-decoration: none;
  font-weight: bold;
a:link {
  color: #FF6600;
a:visited {
  color: #FF6600;
a:hover, a:active, a:active {
  color: #7F3300;
  text-decoration: underline;
#navigation ul {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10pm;
  padding-right: 5px;
  padding-bottom: 10px;
  padding-left: 5px;
  text-align: center;
  color: rgba(51,153,204,1.00);
#navigation {
  background-color: #4D4D4D;
  color: #FFFFFF;
  text-transform: uppercase;
#navigation li {
  display: inline;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  margin-top: 10pm;
  margin-right: 10pm;
  margin-bottom: 10pm;
  margin-left: 10pm;
  clear: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: rgba(194,209,221,1.00);
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
Here is the code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>4gals Computer Service Home</title>
<link href="main.css" rel="stylesheet" type="text/css">
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/source-sans-pro:n2,n6:default.js" type="text/javascript"></script>
</head>
<body>
<div id="wrapper">
  <div id="banner"><img src="Images/banners/4gals banner.jpg" alt=""/></div>
  <div id="navigation">
    <ul>
      <li><a href="index.html" title="4gals Computer Services Main Page" target="_self">Main</a></li>
      <li><a href="contact.html" title="4gals Computer Services Contact Page" target="_self">Contact</a></li>
      <li><a href="appointments.html" title="4gals Computer Services, Service Request Form" target="_self">Service</a></li>
      <li><a href="helpful-tips.html" title="4gals Computer Services Helpful tips" target="_self">Tips</a></li>
      <li><a href="meet-the-gals.html" title="Meet Our Daughters; The 4gals" target="_self">4gals</a></li>
    </ul>
  </div>
  <div id="hero">
    <h1>Computer Service For Families and Small Businesses</h1>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
    <h2> </h2>
  </div>
  <div id="sidebar">
    <h2>Call us for today for same-day service!</h2>
    <p><img src="Images/iphone-5_03.jpg" alt=""/></p>
    <p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from &quot;de Finibus Bonorum et Malorum&quot; by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>
  </div>
  <div id="footer">Copyright 2014 &copy; Web design by a-loum</div>
</div>
</div>
<p> </p>
<h1> </h1>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>

Starting with this, you have errors in your CSS code.
body {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  color: 151515;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  background-color: EFF5F8;
body {
  margin:0;
  color: #151515;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  background-color: #EFF5F8;
  font-size: 100%;
Related links:
Windows Chrome, why do my fonts look so bad? - Lee Green
css3 - Bad font rendering Chrome - Stack Overflow
Nancy O.

Similar Messages

Maybe you are looking for

  • Mute and unmute audio in video clips

    Making an hour long movie. I only want the original movie sound on 2 or 3 clips - the rest my own music. In the past I did it by dragging the movie sound (in Box A) to bottom to mute it then raising it where I wanted it to be heard. However, this wou

  • Need Answer on ALE Service Layer

    In my  cusomized outbound program i am using a function module MASTER_IDOC_DISTRUBUTE to generate the IDOCS. I am passing the both sender and reciever values to the function module MASTER_IDOC_DISTRUBUTE then distribution model in BD64 is not require

  • HT1420 how do I deauthroise a computer if is has been stolen?

    how do I deauthroise a computer if is has been stolen?

  • CDs & EXE files slow to open

    Hi, I'm developing in Captivate 4, and many of the e-learning courses that I develop must be placed on a CD for the customer.  Although, the EXE file opens fine, it takes forever.  There are 62 slides in the primary file, but there are swfs imported

  • Panel menus aren't working correctly on dual monitors

    Hi, I posted a question yesterday about this, but no one replied.  Maybe my subject didn't describe the problem so I am trying again. I use DW on a dual monitor Windows XP system.  The program is on the main monitor and I move some of the panels/pale