Mobile friendly websites

Soldato
Joined
30 Dec 2004
Posts
3,421
Location
Worcestershire
I have a website I made a while back, Google keep sending messages that my website is not mobile friendly.
It's made with a WYSIWYG editor & although I have access to alter the code both on the server & in the programme itself I can't seem to grasp how to make the pages fit any size screen.

I've viewed instructions ( & there are lots of enquiries as to how to do this) & cut & pasted the given code into my page header but nothing works :confused:

What the heck do I need to put in the page header ?
 
Soldato
OP
Joined
30 Dec 2004
Posts
3,421
Location
Worcestershire
seems overclockers isn't mobile friendly either so perhaps it's not a simple fix?

200tppi.jpg
 
Soldato
Joined
25 Jan 2007
Posts
4,738
Location
King's Lynn
Realistically you're not going to be able to make a mobile friendly website using wysiwyg in my opinion. Wysiwyg is fine for fixed designs but most mobile sites change with resolution.

To make a mobile friendly site you either need a 'second version' or go with the more modern/accepted approach of making it responsive via media queries in css.

What wysiwyg are you using?
 
Caporegime
Joined
28 Jan 2003
Posts
39,881
Location
England
You don't put anything in the header (unless that's where your styling is, but that's not a good way of doing it).

You will need to create certain styling rules with media queries in a stylesheet that take effect if a screen is of a certain width.

This will be something that you can sink hours into when you start to think about what breakpoints you want for the site you've made and how that layout fits into a responsive design.

Media query example:

Code:
@media (min-width: 481px) and (max-width: 767px) {
    .site-container {
        width: 100%;
    }
}

Then you have other styling that applies to other screen sizes all the way up to desktops, some schools of thought have a mobile first approach that starts with the default styling being applied to mobile and then more styles are applied when you get to larger screens.
 
Last edited:
Soldato
OP
Joined
30 Dec 2004
Posts
3,421
Location
Worcestershire
Thanks for your imput guys, seems there are counless numbers of websites that currently don't scale down to mobiles inc Overclockers it seems so I'll leave things as they are for now.
I'll probably do a separate site scaled down with a link from the home page, Googlebot will not recognise it however
 
Back
Top Bottom