LexHammer Posted February 2, 2011 Share Posted February 2, 2011 Hello, is there a way to move one object left to right or right to left without writing 10000 times Thank you Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/ Share on other sites More sharing options...
BlueSkyIS Posted February 2, 2011 Share Posted February 2, 2011 CSS or tables. Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168886 Share on other sites More sharing options...
nankoweap Posted February 2, 2011 Share Posted February 2, 2011 certainly not a php coding issue, but an html issue. try the "align" attribute of the paragraph tag... <p align='left'> this is to the left </p> <p align="right"> this is to the right </p> if you need to get fancier, brush up on css and tables as blueskyis mentioned. Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168890 Share on other sites More sharing options...
jamesxg1 Posted February 2, 2011 Share Posted February 2, 2011 This is not PHP its CSS/HTML but try this. <div style="float:left">LEFT</div> <div style="float:right">RIGHT</div> http://www.w3schools.com/css/css_float.asp James. Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168895 Share on other sites More sharing options...
LexHammer Posted February 2, 2011 Author Share Posted February 2, 2011 Thank you all. This is what i needed! Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168972 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.