PDA

View Full Version : Problem with website


snakeyes37
11-19-2005, 09:37 PM
Hi,



I seem to be having a problem, I have a banner being controlled by a css file, I recently experienced a problem where I wouls resize the browser window and the whole page would dis-align itself. When the browser window was returned to its normal full screen mode, the page would align itself again and display normally. So I figured out that the reason was the coding in the css file that was causing it to happen, I took out margin-left, right, bottom, and replaced it with a simple margin: 50px auto, that ultimately fixed the problem. But now there is a second problem, as you can see on the website, the two image links dont exactly connect with the top banner, theres a small span of space between the two, I'm having a problem connecting both of them together. I could add the margin-top command, but once I do that the whole page displays oddly again when the browser window is resized.

http://webwizardz.50webs.com/website2.html


Thanks.

Pennimus
11-19-2005, 11:05 PM
But now there is a second problem, as you can see on the website, the two image links dont exactly connect with the top banner, theres a small span of space between the two, I'm having a problem connecting both of them together.

The 'small span of space' is your 50px margin applied to the container div. Your container, which usually contains the entire contents of a page, is wrapped around the two image links only.

snakeyes37
11-19-2005, 11:46 PM
The 'small span of space' is your 50px margin applied to the container div. Your container, which usually contains the entire contents of a page, is wrapped around the two image links only.


The only reason why I have those two wrapped up, is beacuse I cant have the header and the links all in the same css command, because I cant move one image without moving the whole thing. I wrapped up all the images in the container, but the space between the links and the banner is still there.