Jump to content

Little Goat

Members
  • Posts

    733
  • Joined

  • Last visited

Posts posted by Little Goat

  1. Yep these are well known problems with using divs.  :) As for making all the divs the same legnth you carnt though you can make it look like it does using the faux coloumns method.

    Actually you can make the divs the same length.you have to put those div in a container div though,and then for each div (the columns and the container) set the css to this:
    #container{height:100px(or some hieght you know is smaller than you need); overflow:visible;}#col1{height:100%; overflow:visible;}#col2{height:100%; overflow:visible;}

    that sould make them all the same length.LG

  2. well, what I meant was the 16 colors that you can just type the name of.LGEdit:because grey and green both start with gre. and only gray works with the name.LG

  3. well, you can just go to a flash site and see what they use, here's one:

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="800" height="650" id="paginaLibroeddoi" align="top">      <param name="allowScriptAccess" value="sameDomain" />      <param name="movie" value="paginaLibroeddoi.swf" />      <param name="quality" value="high" />      <param name="scale" value="noborder" />      <param name="bgcolor" value="#ffffff" />      <embed src="paginaLibroeddoi.swf" quality="high" scale="noborder" bgcolor="#ffffff" width="800" height="650" name="paginaLibroeddoi" align="top" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" />    </object>

    I have no Idea how that works, I just got it off of a flash site.LG

  4. Ok, so do you have the login sessions worked out then?if you use sessions, do this:

    <?phpif(!isset($_SESSION[username]) or !isset($_SESSION[password])){include("filewithform.html");}else{include("yourhomepage.html");}?>

    if you use cookies, replace $_SESSION with $_COOKIES.LG

  5. Hi, I have a css file and I ran it through the validator and made it valid, except for warnings.It says stuff like no color for background-color: when I do have one. :):) CSS:

    /* whole document */body{background:url(gradientturquoise.jpg);}div{float:left; margin:1px;}/* end Whole *//* Links Column */#links a, #links a:hover, #links a:link, #links a:visited, #links a:active{text-decoration:none; margin-bottom:1px; width:100%; background-color:#222222;}#links a:link  {color:#ffffff;}#links a:visited  {color:#cccccc;}#links a:hover  {color:#f0f0f0; text-decoration:underline; background-color:#666666;}#links a:active  {color:#000000;}div#links{width:20%; background-color:#000000; height:100%; overflow:visible; font-size:125%;}#links h2{background-color:#c0c0c0; color:#333333; text-align:center; margin-bottom:1px;}/* end Links *//* Header */div#head{text-align:center; width:100%; height:128px; background:url(music011.gif); font-family:bradley hand ITC,forte;}div#head h1{font-size:500%; color:white;}/* end Header */div#content{background-color:#eeeedd; height:100%; overflow:visible;}div#container{width:100%; height:100px; overflow:visible;}

    can anyone please help?thnx, LG

×
×
  • Create New...