0
http://rent.neighborrow.com/items/herndon需要幫助使用Firebug移動需要有右側標籤頁CSS定位幫助
<div id="tabs" style="width:350px;height:50px;">
<ul style="width:320px;height:35px;">
<li><a href="#tabs-1">USERS Have</a></li>
<li><a href="#tabs-2">USERS Want</a></li>
</ul>
<div id="tabs-1" style="width:350px;height:50px;"">
<ul class="user_have_list" style="width:350px;height:50px;">
<?php if(count($approved_items)): ?>
<?php foreach($approved_items as $item): ?>
<?
//print_r($item);
?>
<li style="width:330px"><?= $html->link($item["items"]["item"], array("controller" => "items", "action" => "view", $item["items"]["id"])); ?></li>
<?php endforeach; ?>
<?php else: ?>
<li style="width:330px"><a href="#">Nothing Here</a></li>
<?php endif; ?>
</ul>
</div>
<div id="tabs-2" style="width:350px;height:50px;"">
<ul class="user_want_list">
<?php
//if($_SESSION[Auth][User][id]!="")
if(1==1)
{
if(count($requests)): ?>
<?php foreach($requests as $request): ?>
<li style="width:330px"><?= $html->link($request["Request"]["item"], array("controller" => "requests", "action" => "view", $request["Request"]["id"])); ?></li>
<?php endforeach; ?>
<?php else: ?>
<li style="width:330px">Nothing</li>
<?php endif; } ?>
</ul>
</div>
</div>
可能id必須看到它...什麼代碼行是... im假設在style.css中? – adam 2010-08-08 17:16:27
也,我不希望標籤在其他網頁上移動,所以我不一定要玩高手的CSS ...我能做些什麼,只是將它們移動到這個頁面上現在 – adam 2010-08-08 17:20:00
這是代碼的第一行因爲你使用了style屬性,只需添加float:right;在裏面。 – khairil 2010-08-08 17:44:09