Jump to content

dbarto

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by dbarto

  1. I pretty new to css so please bear with me if I seem a halfwit! :) I have written a 3 column layout in css (using a framework from someone else) and it works fine in most of the browsers I have tested in (FF, opera and even IE6) The problem is the left column doesn't show in IE7. There is space for it but it just doesnt show. Could someone please give me some hints as to how to fix the issue please?Thanks :)
    I'd use tables to get a nicer layout. I guess that IE7 has problems with the positioning, but you can avoid this by using tables.<TABLE><TR> <TD><DIV class=left>left</DIV></TD> <TD><DIV class=center>center</DIV></TD> <TD><DIV class=right>right</DIV></TD></TR></TABLE>HAPPY 2007
  2. I would rewrite some of your code. It's better to use tables and styles to format the layout.A small example:<HTML><HEAD><STYLE type="text/css">BODY { background: #FFFFFF;}TABLE.mainlayout { background: url("http://www.geocities.com/videoawards/images2/600.jpg") center repeat-y; margin: 0; padding: 0; border: 0;}IMG { border: 0;}.center { text-align: center;}</STYLE></HEAD><BODY><CENTER><TABLE class=mainlayout><TR><TD colspan=2><IMG src="http://www.geocities.com/videoawards/images2/mainlayout.jpg"></TD></TR><TR><TD class=center>Some text here</TD><TD class=center>Some more here</TD></TR></CENTER></TABLE></BODY></HTML>I know it doesn't actually solve your problem, but it shows you how to align backgrounds.Hope this helps.HAPPY 2007

×
×
  • Create New...