PDA

View Full Version : Can't fix the CSS to match


Ulysses
06-21-2007, 09:59 AM
Hi,

I have one site, running two scrpts, and I just can't get one CSS to match the other. :confused:

I'm nearly there, but I just need to make the body copy (main page text) the same in each.

I am trying to make this (http://healthdetective.com.au/shop/index.php?main_page=index&cPath=2) (While oxygen is vital to every human...) the same as this (http://healthdetective.com.au/about-us.html) (Christopher Manton is a nutritionally-oriented natural ...)

Please help. What do I need to change to make them match?

Thanks

koyama
06-21-2007, 10:24 AM
I'm nearly there, but I just need to make the body copy (main page text) the same in each.

I am trying to make this (http://healthdetective.com.au/shop/index.php?main_page=index&cPath=2) (While oxygen is vital to every human...) the same as this (http://healthdetective.com.au/about-us.html) (Christopher Manton is a nutritionally-oriented natural ...)
Can you point at what is looking different. They look quite similar when I compare them.

Ulysses
06-21-2007, 10:28 AM
Hi koyama,

It's the text (While oxygen is vital to every human...) on the first page, I am trying to match with the text (Christopher Manton is a nutritionally-oriented natural ...) on the second page.

The lettrs a spread apart a bit and maybe the size or something, but there's a slight (annoying) difference.

Thanks for looking at this.

_Aerospace_Eng_
06-21-2007, 10:46 AM
Just compare the stylesheets. Look you have this in the stylesheet on the 2nd page
body {

text-align: left;

font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;

font-size: 75.01%;

line-height: 1em;

}
but in the first page you have this
body {
margin: 0;
font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif;
font-size: 62.5%;
color: #333333;
background-color: #e5edf5;
}