CSS alignment issue

hkjeffchan

New Member
Rewrite your HTML structure from
HTML:
<div class="wrapper">
  <div id="logo">
    <div>SLIDER STUFF</div>
    <div id="social"></div>
  </div>
  <br class="cl">
</div>
to
HTML:
<div class="wrapper">
  <div id="logo">
    <div id="social"></div>
    <div>SLIDER STUFF</div>
  </div>
  <br class="cl">
</div>

Let me know if it solves your problem. I check that in my Firefox and it works great.
 
Top