Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

website scrolls to the right in Firefox

more options

my website scrolls to the right in Firefox but not in any other browsers. can anybody suggest how to fix? THX! the website is www.truthcafe.net

my website scrolls to the right in Firefox but not in any other browsers. can anybody suggest how to fix? THX! the website is www.truthcafe.net

글쓴이 jjoyous1 수정일시

모든 댓글 (4)

more options

replied by accident...

글쓴이 jjoyous1 수정일시

more options

The DIV above it with the ads have floating elements. In such a case you need to add a clearing DIV to prevent content from being placed to the right of it. You can either add an extra DIV with style="clear:both" under the last DIV.ai (preferred). In that case you need to remove the height:35px from the containing DIV as well (width: 750px; height: 35px;). Or you can add the style="clear:both" to the DIV with the shifted content (<div style="text-align: center; clear:both">).

You should always be careful with specifying the height. It is always better to let the browser do this in case of increased font sizes or other changes made by visitors.

<div id="1974125074" align="center">
 <div class="bnu"></div>
 <div style="width: 750px;">
  <div class="ai" style="margin-right: 5px;"></div>
  <div class="ai" style="margin-right: 5px;"></div>
  <div class="ai" style="margin-right: 5px;"></div>
  <div class="ai" style="margin-right: 5px;"></div>
  <div style="clear: both;"></div>
 </div>
</div>

<div style="text-align: center;">
 <div style="width: 900px; margin: auto;">
  <div>
   <table>
   </table>
  </div>
 </div>
</div>

글쓴이 cor-el 수정일시

more options

thank you so much!!! you are a lifesaver.

more options

Please click the Helpful button next to the answer that solved your Firefox support issue, when you are logged in, so this thread gets marked as Solved.