2012-09-28 153 views
0

我在Firefox中修復了視頻分類佈局中的問題,它在谷歌瀏覽器中正常工作,但是在Firefox中對齊中心的表離開它的位置並使水平滾動條使其需要一些專家手在智者,我展示了Smarty的編碼,請你們幫我耀人還可以檢查Page Where Firefox Givin Prob.Firefox更改桌面佈局

入住此頁面在谷歌Chrome和Firefox中的作品以及在Chrome而不是Firefox中,請幫我

<div align="center"> 
<table border="0" align="center"> 
{section name=i loop=$cat step=4 max=6} <!--ROWS EG change max=???--> 
    <tr> 
{section name=cat loop=$cat start=$smarty.section.i.index max=4}<!-- COLUMNS EG change max=??? to the ammount and step=??? to the same ammount--> 
    <td align="center"><a href="index.php?cat={$cat[cat].id}"><b>{$cat[cat].name}</b><br /><img border="0" width="153" height="120" src="{$cat[cat].picture}" {if $firefox eq "1"}class="reflect" alt="No Image Yet"{/if} /></a></td> 
    {/section} 
    </tr> 
{/section} 
</table> 
</div> 

回答

1

br作爲您的div中的第一個元素:

<div align="center"> 
    <br/> 
    <table border="0" align="center"> 
    . 
    . 

,或者你可以將搜索段之後增加一個更清晰的:

. 
. 
</div> 

<div style="clear:both"></div> 

<div align="center"> 
. 
. 

爲什麼這個問題發生是因爲你的搜索部分的div,這是浮到離開的原因,重疊的第二div和推table。在添加一個更清晰後,第一個div有東西推而不是你的表。

+0

其工作感謝很多即時答案thanx很多人 – kab

+0

不客氣。這似乎與浮游物和東西有關。 ;) – dpp

+0

謝謝你寶貴的幫助你的建議真的幫助我謝謝你 – kab