Jump to content

DenisK

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by DenisK

  1. an example of that would be:<head><style type="text/css">p { font-size:12px;font-family:Arial;color:#000;}</style></head><body><p>text here</p></body>i don't know if that is what you were asking for, but i can give another example.

  2. try putting your footer out of the site divfrom this<div id="site"> content <div id="footer"></div></div>to this<div id="site"> content</div><div id="footer"></div>and also change your footer to this one

    #footer{	background-color: #FFFFFF;	border-top:1px solid #CCCCCC;	height: 17px;	padding-top: 3px;	padding-left: 15px;	padding-bottom: 3px;margin-top: 10px;	border-bottom:1px solid #CCCCCC;	clear: both;}

  3. Try this to make the page centered with a fixed width:
    div#container {width:800px;/*fixed to 800 pixels*/margin: 0 auto; /*centers the page*/line-height:130%;border:1px solid #003366;}

    Good luck

    800px is not good 750px is good users with a 800 by 600 px screen dysplay will still see a scroll bar at the bottom of the page.
  4. Its better to combine them together.becouse the users browser will have to call up a style sheet 2 timeswhich might take longer for the page to loadbut it is realy optional.

  5. Thats wierd because it worked on minebut just try putting the footer outside the #site divfrom this<div id="site"><div id="footer"> </div></div>to this<div id="site"></div><div id="footer"> </div>and putt clear:both; to ypur footer.and could i see the link to your website (if its different)

  6. Yes, Just putt a color that is almost the same color in the background imageSee if that works.It will help when the user has images disabled, or something like that.In reality you specified the background-image: ###### ;but the background-color: Is not specified ;

×
×
  • Create New...