Hi, I'm trying to improve this site. I was told that today it's better to relay more on CSS then on regular old html tags (like tables). If you look at the menus on the website - now they are build out of a table - one <td> that contains the image, and one that contains the text. I want to make it in CSS so I put the image in one styled <div> tag and the text in another. the problem is that div breaks line so they don't end up one next to the other. how can I tell the div not to break line so that 2 divs can stay one next to the other?
ok, an update. while fload: left; did seem to enable 2 divs next to each other, if you look at the site I'm trying to improve, when I do that the entire top menu stays at the left of the page - no matter how I played with it (now I've set it back to the old file because I can't leave it that way). what should I do?
You could always use absolute positioning... <div style="position:absolute;top:10px;left:10px;width:200px;height:25px;"> Content here </div> <div style="position:absolute;top:10px;left:210px;width:200px;height:25px;"> Picture Here </div>