View Single Post
  #10 (permalink)  
Old Jan 28th, 2007, 22:06
nuttycoder nuttycoder is offline
New Member
Join Date: Jan 2007
Location: Hull, East Yorkshire, UK
Age: 27
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Looking good so far

Just somthing you could use

1) you could centralize your site so it fits for all resolutions all you do is change your css wrapper code from

Code: Select all
#rap {
    margin: 0 auto;
    text-align: left; 
    border: 0px solid #000 }
to this:
Code: Select all
#rap {
    margin: auto;
    text-align: left;
    width:760px; /* change to the width you want your site */
    border: 0px solid #000 }
that way it will be in the center of the browser instead of in the left hand side,

not really noticable in small resolutions but with bigger ones like mine (1280 x 1024) its very noticable.

2) why not put yor css in an external file then just link to it for everypage then you only need to change your css code once.

use this in your header section:
Code: Select all
<link rel="stylesheet" href="foldername/filename.css" type="text/css" />
just change filename.folder name to the location where your css file is located.

Also in case you don't already know some of youe links don't work or the page don't exist yet the pages are:
snes.html
flash.html

Last edited by nuttycoder; Jan 28th, 2007 at 22:35. Reason: Adding to post
Reply With Quote