View Single Post
  #5 (permalink)  
Old 07-20-2005, 10:11 AM
ChrisRC ChrisRC is offline
WebProWorld Pro
 
Join Date: Mar 2004
Location: Pittsburgh, PA, USA
Posts: 109
ChrisRC RepRank 0
Default

Quote:
Originally Posted by bobby9101
how could i do that without a table?
Since you only have 1 cell, it's simple. Delete all of your table code, wrap the stuff you want centered in a <div id="freeseoservices"> and add a line to your .css file defining the properties for that div:
#freeseoservices {background-color:#fff;border:solid 5px #00008B;margin:0 auto;width:80%;padding:15px;}

Quote:
how do i use css for the hr?
remove the property settings you have in your html and add the following line to your css file:
hr {background-color: #00008B; height:4px;}


Quote:
and how do i type up a doc dec.
That depends on what standard you're coding to. There's a list from the W3C website. 4.1 strict should be fine so you can just enter, as the very first line in your html file:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Reply With Quote