Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Meer info

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

website scrolls to the right in Firefox

  • 4 antwoorden
  • 2 hebben dit probleem
  • 1 weergave
  • Laatste antwoord van the-edmeister

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

Bewerkt door jjoyous1 op

Alle antwoorden (4)

more options

replied by accident...

Bewerkt door jjoyous1 op

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>

Bewerkt door cor-el op

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.