Forum Moderators: not2easy
box 1 box 2
but the box 2 goes below the box 1. I dont know why. Here is the code
<div style="margin: 10px left; width: 40px; padding: 10px 0 10px 10px; text-align:left; background: #ffffff; border: #ccc 1px solid;">
content of box 1
</div>
<div style="margin: 10px left; width: 170px; padding: 10px 0 10px 10px; text-align:left; background: #ffffff; border: #ccc 1px solid;">
content of box 2
</div>
How to display box 1 & box 2 horizontally?
<div style="margin: 10px; float: left; width: 40px; padding: 10px 0 10px 10px; text-align:left; background: #ffffff; border: #ccc 1px solid; ">
<a href="http://feeds.feedburner.com/abcdef" title="Subscribe to my feed" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon32x32.png" alt="" style="border:0"/></a>
</div>
<div style="margin: 10px; width: 170px; padding: 10px 0 10px 50px; text-align:left; background: #ffffff; border: #ccc 1px solid; ">
<form action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">Enter your Email<br /><input type="text" style="width:150px" name="email"/><input type="hidden" value="http://feeds.feedburner.com/~e?ffid=123456789" name="url"/><input type="hidden" value="abcdefgh" name="title"/><br /><input type="submit" value="Subscribe me!" /><br />Delivered by <a href="http://www.feedburner.com/">FeedBurner</a></form>
</div>
I want the feed icon and the form to display in a single horizontal line (possibly working in both IE and Firefox). Note I have removed personally identifying information from the code.Thanks in advance!
<body>
<div style="margin: 10px 0 10px 10px; float: left; width: 40px; padding: 10px 0 10px 10px; text-align:left; background: #ffffff; border: #ccc 1px solid; ">
<a href="http://feeds.feedburner.com/abcdef" title="Subscribe to my feed" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon32x32.png" alt="" style="border:0"/></a>
</div>
<div style="margin: 10px 10px 10px 0; width: 170px; padding: 10px 0 10px 50px; text-align:left; background: #ffffff; border: #ccc 1px solid; float: left">
<form action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">Enter your Email<br /><input type="text" style="width:150px" name="email"/><input type="hidden" value="http://feeds.feedburner.com/~e?ffid=123456789" name="url"/><input type="hidden" value="abcdefgh" name="title"/><br /><input type="submit" value="Subscribe me!" /><br />Delivered by <a href="http://www.feedburner.com/">FeedBurner</a></form>
</div>
</body>
</html>