Hi, Im looking at learning some webdesign and coding just for some basic sites not as a profession... and i was wondering if some people would be kind enough just to send me there email addresses for msn to help me out if i get stuck? any help would be greatly appreicited as i get stuck not and again lol thanks!
you have a page that is designed to look great at a particular window size (not a good idea), but the problem is that you have no way of controlling the window size with which people will be viewing your pages. There are no sure-fire techniques, but there a few ways you can manipulate the user's screen size. The easiest method is to use a little JavaScript. Place this code in between the <head> and </head> tag at the top of HTML page: <script language="javascript" type="text/javascript"> window.resizeTo(1024,768); </script>