Jump to content

DenisK

Members
  • Posts

    12
  • Joined

  • Last visited

Everything 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. this is what i did td.right_box { vertical-align: top;}and it worked for me. Try it see if it works.
  3. 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;}
  4. 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.
  5. DenisK

    Multiple css

    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.
  6. When i looked at your new style sheet it was still the sameyou have to get rid of #site {height:400px; <---------- THIS}
  7. 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)
  8. replace your #site with this one #site{ width:999px; text-align:left; background-color: #FFFFFF; margin-right: 0px; margin-top: 0px; float: left; margin-bottom: 0px; padding: 0px;}
  9. I think i fixed it ..just a minute i will get the code for you....
  10. I just realised clear both did not worki am trying to work on the website right nowmaybe i can figure it out.
  11. DenisK

    CSS Validator

    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 ;
  12. DenisK

    CSS Validator

    Hi , It might be becouse of your body background color body { background: Needs color here ;}Try it
×
×
  • Create New...