> From: Angus
> 
> Can anyone tell me why my name and contact information at the 
> following will not center?
> HTML: http://infoforce-services.com/personal/generalresume.php
> CSS: http://infoforce-services.com/css/ifsmain.css


Angus,

You have markup like:
<div id="generalresume_name">Angus D.F. MacKinnon</div>
<p id="generalresume_address">23756 110B Avenue<br />

But your css is:
.generalresume_name {

.generalresume_address {

Either the css needs to be
#generalresume_name {
#generalresume_address {

Or you need to change the markup to class="generalresume_name"

The .whatever is a class, #whatever is an id.

-- 
Peter Williams
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to