February 14, 201214 yr Hello. Not sure if this is the right place. but ive recent got into web design etc... Im currently making a website for my friend i am up to here so far: Click Here Does anyone know why the other drops below and doesnt sit below the other one.
February 14, 201214 yr Does anyone know why the other drops below and doesnt sit below the other one. Hi! and wut?
February 14, 201214 yr I guess that you mean the two Events. One is on the left in the box and the second one is under the boxes as you have not included it in the coming up div. You currently have: <div id="comingup"> <div class="cominghead">COMING UP</div> <div class="seperator"></div> <div id="event"> <div class="teams">VERYGAMES vs. Reason Gaming</div> <div class="eventlink">Event Link</div> <div class="date">14/02/2012 20:00 GMT <img src="images/tv.png" alt="TV" width="16" height="16" /> <img src="images/microphone.png" width="16" height="16" alt="Shoutcasting" /></div> </div> </div><<----this is the one that is closing the coming up div <div id="event"> <div class="teams">VERYGAMES vs. Reason Gaming</div> <div class="eventlink">Event Link</div> <div class="date">14/02/2012 20:00 GMT <img src="images/tv.png" alt="TV" width="16" height="16" /> <img src="images/microphone.png" width="16" height="16" alt="Shoutcasting" /></div> </div> </div> Basically, you have closed the coming up div and then put the second event in so it naturally falls under the layout. Just include it in the div such as: <div id="comingup"> <div class="cominghead">COMING UP</div> <div class="seperator"></div> <div id="event"> <div class="teams">VERYGAMES vs. Reason Gaming</div> <div class="eventlink">Event Link</div> <div class="date">14/02/2012 20:00 GMT <img src="images/tv.png" alt="TV" width="16" height="16" /> <img src="images/microphone.png" width="16" height="16" alt="Shoutcasting" /></div> </div> <div id="event"> <div class="teams">VERYGAMES vs. Reason Gaming</div> <div class="eventlink">Event Link</div> <div class="date">14/02/2012 20:00 GMT <img src="images/tv.png" alt="TV" width="16" height="16" /> <img src="images/microphone.png" width="16" height="16" alt="Shoutcasting" /></div> </div> </div> Edited February 14, 201214 yr by junior
Create an account or sign in to comment