Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Responsive Page / CSS 3 question

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #145481
    joej
    Participant

    Hi

    Just a quick question if I wanted a website to be viewed on iPAD / Tablet devices exactly the same as it looks on a desktop pc would I just need to remove from the stylesheet the following references that make the site responsive

    @media screen and (max-width:1024px)
    and its coressponding CSS

    @media only screen and (min-width:801px) {ETC
    @media screen and (max-width:800px) {ETC

    and/or would I also need to alter

    <meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>

    <

    p>Many thanks“`</p>

    #145505
    georgearnall
    Participant

    In theory removing your media queries will make it non-responsive. But to be able to make a proper judgement we would need to see some code..

    You could try commenting out the code and seeing what happens ?

    #145507
    TheDoc
    Member

    You’d need to do both. You’d remove the media queries and change the viewport meta to have a width just a little bigger than your site (assuming that it’s fixed width).

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.