Hi all,
I have a "default" template and a "mobile" template.
I have this page on the CMS: http://<site_url>/mycontacts
I would have the same CMS page http://<site_url>/mycontacts with different content on the mobile template.
Is it possibile to have two CMS page with the same name the first working for the default template and the second working for the mobile template?
The page should have the same link so that i don't have to change the link everywhere in the mobile template.
Thank you very much
claudio
Usually it's done by having two blocks of which one is always "display: none;". Which one exactly is determined by @media queries.
You can create your mobile content in the same page but wrap it in lets say
<div class="mobile-only">mobile content</div>
and style it so it only shows on smaller resolutions.