lee the pee
Members
-
Joined
-
Last visited
Reputation Activity
-
lee the pee got a reaction from funsella in where to register .my domainIve never heard of .my i even looked on 123-reg.co.uk/godaddy.com and didn't find anything. Then i googled it and .my is a malaysia domain extension which could be why its not listed on any UK/US sites. Its also expensive from what i saw on a site. Do you plan to launch a site in malaysia? Could be worth looking for a web host in malaysia and see if they offer domains.
-
lee the pee reacted to pat24 in Image codeCould be this
{ move_uploaded_file($_FILES["file"]["tmp_name"], "uploads/" . $_FILES["file"]["name"]);
Try changing the above to the below
{ move_uploaded_file($_FILES["file"]["tmp_name"], "images/" . $_FILES["file"]["name"]);
-
lee the pee reacted to WBC in Few errorsIndeed.
-
lee the pee reacted to Dizi in Few errorstrue the width and height don't need to be added to the image if the images are the right size, but if those attributes are needed within the element then they still need to be coded correctly for them to validate
-
lee the pee reacted to WBC in Few errorsIf you make your pictures the right size you don't need to worry about it.
-
lee the pee reacted to Dizi in Few errorswith your img issues you need to add quotes around your widths so they should look like this:
<IMG SRC="images/logo.png" ALT="some text" WIDTH="800" HEIGHT="100"></div>
Also what doctype are you using as really you should be coding in lower-case rather than capitals.
The other errors look like you might not have closed a tag somewhere and so the bits of code that are showing errors is because you aren't allowed to have those tags within the element you have forgotten to close.
If these suggestions don't work, it might help to either post a link to the page in question or post the whole code.
-
lee the pee reacted to WBC in Few errorsOn first looks... Caps?
-
lee the pee reacted to mteam in Large gap<div id="wrap"><!-- added wrapper --> <div class="container"> <div class="logo"> <img src="images/logo.png" alt="some text" width="800" height="100"> </div> <div class="clear"></div> <div class="content"> <p>Welcome to NetsLee my Genreal Discussion Forum with a Blog for interesting blog posts. Its 100% free to join the community and takes a matter of a few clicks to join and chat with others while commenting on the blog posts.</p> <p>NetsLee was setup so I could create a community for friends and close friends to come and have some banter. You will see no forum services, or adverts placed on NetsLee at any time.</p> <br><br><br><br><br><br><br> </div> <p>I also run a private web hosting site. So if you like your own forum, blog or even website let me know or click the image below.</p> <center><a href="http://www.peeweehosting.co.uk"><img src="http://www.netslee.co.uk/images/hosting.png" alt="Home"></a></center> <p>This website is best viewed in Chrome, Sarfari, FireFox.</p> <p>© <a href="index.html">NetsLee.co.uk</a></p> <a href="contact.html">Contact Me</a> </div> <div class="clear"></div> <div class="copybox"> <p>This Site Was Designed By Leigh Sullivan AKa About Lee</p> </div> </div><!-- close wrapper -->
body { background-color: #666666; font-size: 15px; color: #564b47; /*padding: 150px; remove padding */ margin: 0px; text-align: center; } #wrap { /*added wrap rules to center site */ width:950px; margin:0 auto; } .logo{ width: 800px; height: auto; margin: 0px auto; padding: 0px; } .container{ width: 950px; height: 650px; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; -moz-border-radius-topleft: 30px; -moz-border-radius-topright: 30px; -moz-border-radius-bottomright: 30px; -webkit-border-top-left-radius: 30px; -webkit-border-top-right-radius: 30px; -webkit-border-bottom-right-radius: 30px; border: solid; color: #ffffff; background: #7AA9DD; /* margin: -100px 0px ; remove margin */ padding: 10px 0px; } .content{ width: 900px; height: 300px; border-radius: 10px ; -moz-border-radius: 10px ; -webkit-border-radius: 10px ; border: solid; color: #000000; background: #ffffff; margin: 0px auto; padding: 0px; } .copybox{ width: 400px; height: 40px; border-bottom-right-radius: 30px; border-bottom-left-radius: 30px; -moz-border-radius-bottomright: 30px; -moz-border-radius-bottomleft: 30px; -moz-border-radius-topright: 30px; -webkit-border-bottom-right-radius: 30px; -webkit-border-bottom-left-radius: 30px; -webkit-border-top-right-radius: 30px; border: solid; color: #ffffff; background: #7AA9DD; margin: -25px 0 0; /*changed margin*/ padding: 0px; } /* Font */ h1 { font-size: 26px; font-weight: lighter; color: #666666; margin: 0px 0px 20px 0px; padding: 0px; } h2 { font-size: 22px; font-weight: lighter; color: #666666; margin: 0px 0px 20px 0px; padding: 0px; } h3 { font-size: 18px; font-weight: lighter; color: #666666; margin: 0px 0px 20px 0px; padding: 0px; } p { font-size: 14px; font-style: drayton; color: #000000; margin: 10px 0px 15px 0px; padding: 0px; }