Shape 5

Joomla Templates => Campus Life - Club => : chriddo January 17, 2016, 03:07:12 AM



: Full site width causes misaligned
: chriddo January 17, 2016, 03:07:12 AM
Enabling the Full Site Width will cause the alignment of the responsive menu and the login menu to be misaligned. See attached.

Please let me know how to fix this or make a change in the template and make a new release version.


: Re: Full site width causes misaligned
: jonahh January 18, 2016, 02:00:04 PM
Hello

I'm not sure whats going on off hand as I can't replicate on the demo when I set it to full site width. Can you please post a URL of this?

Thanks,


: Re: Full site width causes misaligned
: chriddo January 18, 2016, 02:56:59 PM
Just sent you a PM with details. Let me know if you need further info


: Re: Full site width causes misaligned
: jonahh January 19, 2016, 12:56:33 PM
Thanks, I took a look and the reason is because you have a <p> tag in the custom_2 position and this is causing the spacing to appear.  Just remove the <p> and it will show proper:

:
<p>
<a href="#">
<span class="ion-card"></span>
   CSR Annonsera
</a>
</p>

Change to:


:
<a href="#">
<span class="ion-card"></span>
   CSR Annonsera
</a>


: Re: Full site width causes misaligned
: chriddo January 19, 2016, 01:23:21 PM
Thanks!