I was trying to place three ad blocks besides each other on my blog. The codes look like this: <script type="text/javascript" src="http://jserve.performancingads.com/js/perfads.js?r=5848"></script> <script type="text/javascript" src="http://jserve.performancingads.com/js/perfads.js?r=5850"></script> <script type="text/javascript" src="http://jserve.performancingads.com/js/perfads.js?r=5860"></script> I would like these to appear side by side in a row. Whenever i try to place the codes beside each other, the ads get placed below each other, in a column. Can anyone help?
Use a table to place them side by side. <table><tr><td> link </td><td> link </td><td> link </td></tr></table> Code (markup):
You can even have the image tags next to each other or use nobr -------- pf answers http://www.pfanswersagg2.co.cc
You can use a regular (X)HTML construct such as: <p id="headerpics"> <img alt="" src="filename1.jpg"><img alt="" src="filename2.jpg"> <img alt="" src="filename3.jpg"><img alt="" src="filename4.jpg"> </p> The CSS id sets the positioning parameters. James
I think the easiest way is to surround the images with the NOBR tag. <NOBR> <script type="text/javascript" src="http://jserve.performancingads.com/js/perfads.js?r=5848"></script> <script type="text/javascript" src="http://jserve.performancingads.com/js/perfads.js?r=5850"></script> <script type="text/javascript" src="http://jserve.performancingads.com/js/perfads.js?r=5860"></script> </NOBR>
thanks a lot to all of you. i tried the first oe, and it worked! So didnot have to try the other ones. Thanks a lot to all of you. This is indeed a very helpful forum.