Jump to content

umanga

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by umanga

  1. I don't actually understand what you are saying. But the following code may solve the problem. #wrapper { width: 960px; margin: 0px auto; } Try adding this to your CSS and enclose everything in the HTML BODY with <div id="wrapper"> <body> <div id="wrapper"> <div>Every other thing you code goes here.</div> </div> </body>
  2. Maybe the following CSS code will help you out. html, body { font-family: Verdana, Geneva, Arial, sans-serif; margin:0; height: 100%; text-align:center; } #top { background-color:#bfb; width: 100%; height:18%; } #midleft { float:left; background-color: #ddd; width: 12%; height: 65%; padding: 1%; padding-right: 2%; } #mid{ background-color: #ff9; float: left; margin-left:5px; width: 75%; height: 35% } #back{ background-color: #bfb; width: 100%; height: 7%; clear:both; } Feel free to ask any other question.
  3. Try using "z-index" in #nav.I am sure your problem gets solved. Tutorial:http://www.w3schools.com/cssref/pr_pos_z-index.asp
  4. What do you actually want to know??It would be better if you tell in detail about your problem. Regards.
  5. I analyzed your website and found out that some unwanted spaces has covered your heading.So this is wait I came up with: /*Edited*/#heading { font-size: 33px; margin: 0 0 20px; text-align: center; text-transform: uppercase; color: #000000; line-height: 160px;/*Try working with different values.It works*/ }
×
×
  • Create New...