I am hoping this should be a relatively simple problem to fix. I am a newbie with code and am trying to insert the right code on my webpage. I am trying to enter this in the Wordpress HTML editor on a page. I want this shortcode aligned left: [starratingmulti id=1 tpl=12 element_size='24' average_size='24'] and this code aligned right, all together on the same line: <?php echo adrotate_banner('3'); ?> Basically, I want the adrotate banner to show to the right of the starratingmulti. I am using the runPHP plugin which allows me to have the php evaluated with the post. I would greatly appreciate it if anyone could help me formulate the right code! I have been struggling with this for a while.
try: <?php echo adrotate_banner('3'); ?> try this: <table> <tr> <td style="text-align:left">[starratingmulti id=1 tpl=12 element_size='24' average_size='24']</td> <td style="text-aling:right"><?php echo adrotate_banner('3'); ?></td> </tr> </table> granted not in the same line in the code, but displays as if it was. it they don't separate to the left and right, then put a td in between or use padding.