DIV question

Soldato
Joined
10 Apr 2006
Posts
7,853
Location
North West
Within the <body> of a html page:

<div id="top">

<div id="banner_left">1</div>
<div id="banner_center">2</div>
<div id="banner_right>3</div>


</div>

That shows 3 images which are linked through CSS using:
#banner_left, #banner_center, #banner_right.

The 3 images appear fine, one above the other, the numbers are there just to check whilst im doing this incase the images arent linked correctly.

But if i add another div into the html page the banner_right image dissapears, and so does the number 3.

ie.

<div id="top">

<div id="banner_left">1</div>
<div id="banner_center">2</div>
<div id="banner_right>3</div>


</div>

<div =id"bottom">
</div>

That causes the banner_right image and text to dissapear when i test the page, there is nothing linked to the id bottom, even when i add properties to the id bottom, they appear on the page, but the banner_right is still not present :confused:

So any help would be nice :D

edit: **** sake, missed a " off the 3rd one thats why lol, typical :\
thread can be closed! :p
 
Last edited:
Back
Top Bottom