
October 15th, 2012, 01:46 PM
|
|
Registered User
|
|
Join Date: Oct 2012
Location: Jersey
Posts: 16
Time spent in forums: 2 h 35 m 46 sec
Reputation Power: 0
|
|
A couple things here:
I don't really know what you mean by 'my header is overflowing the body'. Header and body are actual HTML tags, that shouldn't be confused with what you think is the head and body of your web page. Try to be a little more specific. Are you #header is overflowing into the #content div?
Also, in your css, the images you have are relative paths (using the ../ notation). Would you be able to throw these images up on a server somewhere and give it an absolute path (http:// )? If not, just try filing the divs with background color or borders so you can visually see what is going on during development.
Lastly, steer away from using inline CSS: <div style='width:900px;'>. This is the lazy man's approach and you'll want to shoot yourself in the foot when the project starts to grow. Keep all of your CSS in an external stylesheet.
I did my best to try and decipher what you wanted here . Hopefully this helps, try messing around with what you have and what I provided to see if you can come up with what you want. If not respond back with your issues.
|