我希望我网站上的照片上方的文字位于图片旁边的右侧。我试图这样做但格式化必定是错误的。任何人都可以引导我朝着正确的方向前进。感谢。
答案 0 :(得分:2)
如下所示更改元素顺序,并将float:left;
css添加到.detail-broker
(理想情况下,不如我在下面所做的那样内联)。我相信php代码仍然有效但只是仔细检查它是否有效。
<?php
if($configClass['show_agent_details'] == 1){ ?>
<h4>Contact Your Consultant</h4>
<div class="detail-broker" style="float:left;">
<?php echo $row->agentphoto;?>
<div class="broker-name">
<b><a href="<?php echo JRoute::_("index.php?option=com_osproperty&task=agent_info&id=".$row->agent_id);?>"><?php echo $row->agent_name;?></a></b>
</div>
</div>
<?php
//echo("<div align='right'>");
echo("Phone: <a href='tel:1300791719'>1300 791 719</a><br />");
echo("Email: <a href='mailto:info@newrealestate.properties'>info@newrealestate.properties</a><br />");
echo("Address: Level 4, 150 Albert Rd, South Melbourne, 3205, Melbourne, Victoria");
//echo("</div>");
?>
<?php } ?>