WebSite X5Help Center

 
Dave E.
Dave E.
User

Mobile site help  en

Autor: Dave E.
Visitado 2619, Seguidores 3, Compartilhado 0  

I am creating a "normal" website, plus I want to create a webpage that is compatible with mobile devices. Do I have to create 2 sites using a "mobile template" design for the second site, or Is there a way to duplicate the site, but have different templates for each? Hope this makes sense to someone?? Dave

Publicado em
9 RESPOSTAS - 4 ÚTEIS
Paul M.
Paul M.
Moderator

Hi Dave,

You don't have to do a thing, actually.  Version 10 of Website X5 is very smart in this regard, and will create a compatible design for you automatically, which will look good and function well on desktops and mobile devices alike.

The only thing you need to pay close attention to is your file format for any multimedia files.  Due to incompatibilities amongst the various tablets and smartphones, etc, it's best to opt for MP4

Ler mais
Publicado em de Paul M.
Dave E.
Dave E.
User
Autor

Hi

Thanks for the quick response.  Understand what you are saying but if thats the case why have they got "mobile" templates available??

Dave

Ler mais
Publicado em de Dave E.
Paul M.
Paul M.
Moderator

That's a good question, and one I can't give you an informed answer to.  Maybe someone else will chip in.

As far as I'm aware all of the preset templates are designed for a 1024 x 768 pixel display, including those marked as mobile templates.  The HTML5 code and CSS that Website X5 produces takes care of any rendering issues and differences between fixed and mobile devices.

You can optimise your project for a particular resolution of your choice, but in that case you would need to create a custom template.

Maybe Incomedia felt that the design of the 'mobile' templates was more suited to a handheld display?  I'm not sure...  but what I do know is that you could just as easily pick a 'mobile' template and use it for a project aimed at desktop users if you so wished.  There would be absolutely no technical problems in doing so.

This is one of the many great features of X5.

Ler mais
Publicado em de Paul M.
Dave E.
Dave E.
User
Autor

Thanl yo very much for taking the time to reply.

David

Ler mais
Publicado em de Dave E.
Dave E.
Dave E.
User
Autor

Thank you very much for taking the time to reply.

David

(Must have had a senior moment with the spelling).

Ler mais
Publicado em de Dave E.
Steven Anderson
Steven Anderson
User

I created a second website. I use v9 which isn't responsive and I believe v10 isn't either it is only adapts to mobile devices. So I set up a second template, slightly less features and larger menus. I have it in a m. Sub domain which redirects from my main site.  I have loaded my sites on at www.delacombepark.com and www.m.delacombepark.com if you want a look.

Ler mais
Publicado em de Steven Anderson
Esahc ..
Esahc ..
Moderator

Pardon my ignorance Steven - but what technique did you use to automatically redirect to the subdomain if the device is mobile?

BTW - the mobile site looks great!

Ler mais
Publicado em de Esahc ..
Steven Anderson
Steven Anderson
User

I used the scipt

<script>

if (document.location.search.indexOf("skipmobile") >= 0) {   [removed] = "skipmobile=1";   }   

else if ((document.location.hostname.match(/\.mobi$/) || screen.width < 850)   && [removed].indexOf("skipmobile") == -1)   {   document.location = "http://m.delacombepark.com";   }

</script>

which i put in the head of the website

I also put in

<link rel="apple-touch-icon" href="/dpccicon.png"/>

which also goes in the website HEAD and allows someone to add a iphone looking app pic to their iphone home screen if they add the website to the homescreen of their iphone

Ler mais
Publicado em de Steven Anderson
Esahc ..
Esahc ..
Moderator

Thanks Steven - I'll try it Much appreciated!

Ler mais
Publicado em de Esahc ..