Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2005
    Location
    France - Limoges
    Posts
    101
    Plugin Contributions
    0

    Default Template depending on screen resolution

    Hi, is it possible to display a specific template depending on the screen resolution. I have a special template for WideScreens that I would like people to be able to use without selecting a template from a selection box...

    Thanx in advance for any advice.

  2. #2
    Join Date
    Nov 2005
    Location
    France - Limoges
    Posts
    101
    Plugin Contributions
    0

    Idea or Suggestion Re: Template depending on screen resolution

    Ok, I have found a way around this, that I really appreciate. It's not good to use this kind of method too often as it really isn't recommended for SEO.

    I use it to hide or display certain graphic elements depending on screen resolution. I tend to like a centered website wich isn't too wide, so on both sides of the website, I like to add logos + other info, that isn't vital, but that kind of stops the screen from looking too empty. Here is an example : http://www.netjuggler.net/index.php (note you will only see the difference in 1280 +. It works on a resize + reload of page as the javascript is based on page width.

    <html>
    <head>
    </head>

    <body>
    <div id="para">Some text here</p>


    <script type="text/javascript">
    if(document.width<1280)
    {
    elem = document.getElementById("para").style.display = 'none';
    }
    </script>
    </body>
    </html>

    Note it is important that the javascript is placed right at the bottom of the page...

    PS : I'm still looking for a way of changing template depending on screen resolution to try and optimize the website display depending on resolution used.

 

 

Similar Threads

  1. Screen Resolution IS important!
    By Kim in forum Templates, Stylesheets, Page Layout
    Replies: 19
    Last Post: 28 Sep 2011, 12:39 PM
  2. help implement scrip to load stylesheet depending on the user's screen resolution
    By abel2b in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 2 Apr 2009, 01:53 AM
  3. Screen Resolution
    By sowie09 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 27 Feb 2009, 02:01 PM
  4. Screen Resolution Solution?
    By kdiscrete in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 11 Jan 2009, 03:12 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg