hi everyone if some one could help me i would apreciate it alot. i have my website http://www.mytvtalk.com and where it says the latest articles i have a google adsense block, i was wondering how can i get writing to the right of this block? i have tried <p class="name here"> and then tired to align it in the css as .name here {float:right} but i cant get it to work. please help. thanks.
Hey you can do this: <div class="adsense_movie_left"><script type="text/javascript"><!-- google_ad_client = "pub-7120093336454623"; /* 336x280, created 17/07/08 */ google_ad_slot = "7852795631"; google_ad_width = 336; google_ad_height = 280; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7120093336454623&dt=1216328660706&lmt=1216325596&prev_slotnames=0766409293&output=html&slotname=7852795631&correlator=1216328639540&url=http%3A%2F%2Fwww.mytvtalk.com%2F&ref=http%3A%2F%2Fforums.digitalpoint.com%2Fshowthread.php%3Ft%3D937915&frm=0&cc=100&ga_vid=3296064287755472400.1216328640&ga_sid=1216328640&ga_hid=2069644172&flash=9.0.124&u_h=1050&u_w=1680&u_ah=1020&u_aw=1530&u_cd=32&u_tz=-420&u_his=1&u_java=true&u_nplug=19&u_nmime=88" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"></iframe> </div> <div class="right_of_adsense">Something goes here</div> <br class="clearfloats" /> PHP: And then add this to the stylesheet: .adsense_movie_left { float: left; position: relative; width: 336px; } .right_of_adsense { float: left; position: relative; width: 364px; margin-left: 10px; } .clearfloats { clear: both; } PHP: Don't forget to clear your floats. This is what the Clearfloats BR does.