Hi there, I was playing around with some code and finally got the result I wanted, however I didn't notice that when online the website has affected the right column and pushed it down to the bottom of the page. http://www.paid2review.co.uk/links.html Can anyone see anything wrong with the code? Or do you think it could be the CSS? Thanks for any help. Matt
hi, i believe you forgot to float the google element to the left - haven't you? then, for the main content div use margin-left: (width of google div + let's say 8 px ;-)) there you go - you should see it correctly now
But in the CSS file my left column is already set to float to the left :-/ I've used the margin-left now for the divs as you suggested, and it moves them across but its still appearing below the google adverts :-/ Thanks for the help so far
When you float the elements you have to make sure that their size + margins are smaller than the width of the parent element, otherwise the right most one goes under the others.
exactly, maybe setting visible borders to those three elements (parent, left, main) would help to achieve this... good luck (of course remove those borders after successful aligning ;-))