My Website

playminigames

New Member
Messages
216
Reaction score
6
Points
0
it all looks good, except for the header the big white space doesnt look good up at the top. other than that one thing, its all good
 

peterac

New Member
Messages
24
Reaction score
0
Points
1
Joshua, If I may suggest

1. html needs a doc type <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

2. to align the page containers and center all , the following

#wrapper, #header { position: relative;

#wrapper { padding : 0 0 0 5px;

#menu a { width: 154px;

#page { width: 935px;

#sidebar ul { padding: 0 0 0 10px;

3. remove the search container from the sidebar ul (allows padding to the ul and not the search box)

trusting this is of assistance

Peter
 
Last edited:

joshuachen28

New Member
Messages
5
Reaction score
0
Points
0
Joshua, If I may suggest

1. html needs a doc type <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

2. to align the page containers and center all , the following

#wrapper, #header { position: relative;

#wrapper { padding : 0 0 0 5px;

#menu a { width: 154px;

#page { width: 935px;

#sidebar ul { padding: 0 0 0 10px;

3. remove the search container from the sidebar ul (allows padding to the ul and not the search box)

trusting this is of assistance

Peter

Thanks Peter. I will make the changes.
 
Top