Page 1 of 1

Re: Menu broke only on Ipads/Web album showing double

Posted: Tue Aug 20, 2013 11:17 am
by HarmO
Why don't you try cleaning up your code by just removing all spaces and line-breaks in the menu template.

The extra spaces and line-breaks can make some browsers go haywire.

Notice for example the <span>-tag where you close the tag only after 4 line-breaks:

Code: Select all

<li class="menuactive"><a class="menuactive"
  href="http://www.amaritavargas.com/cmsms/"><span



>Home</span></a>
</li>
This is how it should look:

Code: Select all

<li class="menuactive">
  <a class="menuactive" href="http://www.amaritavargas.com/cmsms/">
    <span>Home</span>
  </a>
</li>