Jump to content

keffodan

Members
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Favorite Area of Science
    programming

keffodan's Achievements

Lepton

Lepton (1/13)

0

Reputation

  1. Could someone please explain to me what this will php code will actually do with a brief description of each value/attribute? Is it essentially creating a form with a place to enter a name and a choice of choosing module 1 or module 2? What do the method = post and action = link do exactly? Any help appreciated. <form id ="test" name = "test" method = "post" action = "http://www.ipa.ie/test.php"> </form> <label for = "name">Enter name</label> <input type = "text" name = "name"id = "name"/> <label> <input type -"radio" name = "modules" value = "1" id = "modules_0"/> web</label> </br> <label> <input type = "radio"name = "modules" value = "2" id = "modules_1"/> hardware</label>
  2. Im working with dreamweaver at the moment trying to make my first site. i have my page set up lik so <body> <div id="container"> <div id="sitelogo"> Content for id "sitelogo" Goes Here </div> <div id="header">content for header goes her </div> <div id="navbar">Content for id "navbar" Goes Here</div> <div id="lrftnavbar">Content for id "lrftnavbar" Goes Here</div> <div id="footer">Content for id "footer" Goes Here</div> </div> </body> linked to this style sheet: @charset "utf-8"; #container { background-color: #CCC; height: 768px; width: 1366px; border: thin solid #FFF; } #header { background-color: #CCC; height: 50px; width: 1213px; border-bottom-width: thin; border-bottom-style: solid; border-bottom-color: #FFF; clear: right; float: right; border-right-width: thin; border-right-style: solid; border-right-color: #FFF; } #sitelogo { float: left; height: 101px; width: 150px; border-bottom-width: thin; border-bottom-style: solid; border-right-color: #FFF; border-bottom-color: #FFF; border-left-color: #FFF; border-right-width: thin; border-right-style: solid; border-top-color: #FFF; } #leftnavbar { clear: both; float: left; height: 616px; width: 150px; border-right-width: thin; border-right-style: solid; border-right-color: #FFF; } #navbar { float: right; height: 50px; width: 1214px; border-bottom-width: thin; border-bottom-style: solid; border-bottom-color: #FFF; border-right-width: thin; border-right-style: solid; border-right-color: #FFF; } #footer { clear: both; float: left; height: 5px; width: 1366px; border-top-width: thin; border-top-style: solid; border-top-color: #FFF; border-right-width: thin; border-right-style: solid; border-right-color: #FFF; } *{margin:0; padding:0; background-color:#CCC } The problem is that when i changed the footer height to anything different it stays the same in the live view regardless of browser. My design view is a mess but my live view is ok( bar the fact that it wont change). Any advice on how i should structure the page differently or if what im doing is completely wrong? all the divs are in the container id div aside from that they're separate. I intend to put 6 div tags within the nav bar( within the container) to make 6 drop down links, any advice on how to do this?? Any help is greatly appreciated.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.