Why does Live View not work with the following: @media only screen and (max-width: 480px)?

When I use the above media query in my stylesheet Live View ceases to update the viewport.  I have to update it manually each time I add or change a style.  This is not the case when I use styles under a common tablet sized query @media only screen and (max-width: 768px), or when there is no query at all.  Is this a bug or is there something I am missing here? 

Code errors might account for the discrepancy. Validate your code and fix any reported errors.
CSS - http://jigsaw.w3.org/css-validator/
HTML - http://validator.w3.org/
Nancy O.

Similar Messages

  • Why does Apogee Jam not work with the Ipod Touch 4G

    Hi,
    I have a Apogge Jam an it works fine with my Mac Book, but it does not seem to be compatible with my Ipod Touch 4g.
    Only the Gibbson L&M app recognize the Apogee Jam, but no other App (Ampkit, ....) :-((
    With the IPhone 4 it shall work, can tell me anybody why Apogee Jam is not compatible with the Ipod Touch 4g (
    although the Gibson-App works)?
    Is there perhaps still other Apps which work with the Ipod Touch and Apogge Jam?
    Thanks
    Michael

    I cannot answer the specifics, but I would guess it is a software issue because Griffin iTalk app will cooperate with the Apogee JAM on an iPod Touch 4g running iOS5.  If this app can do it, then one would presume the other apps could be updated to do it also.
    From last week up until yesterday, Apogee actually listed the 4G Touch as a compatible device with the JAM.
    Apparently there was some confusion about Garageband now supporting iPod Touch and its functionality with JAM.

  • Why does flash player not work with facebook?

    Why does flash player not work with fcebook?  Whenever I wish to view a video, I get the message that i need to upgrade my flash player. Then no matter how often I download and install flash player I still get the message that I need to upgrade my flash player.  When I go check which version I have, I always get the message that I have the most current one.  I run Mozilla Firefox with Windows.  I don't know anything else.
    Message was edited by: khettich

    This means you don't have the latest version installed.  Update to 11.9.900.117, and Firefox will allow it: Flash Player Plug-in (All other browsers)

  • Why does my imessage not work with only 1 phone number

    Why does my imessage not work with only 1 phone number? It keeps going to imessage and then back to text message

    Both you and the recipient have to have active data connections, and both devices have to have iOS 5 or higher to be able to use iMessage. Also, they both have to have iMessage activated. If that is already the case, there is a possiblility that iMessage is down. It has gone up and down several times in the past week. Check this page for status, and if necessary you can report a problem with a link in the lower right corner. http://www.apple.com/support/icloud/systemstatus/

  • Why does Java Application not working with Macromedia Flash 5 or MX?

    Why does Java Application not working with Macromedia Flash 5 or MX?

    Who says they don't?
    Although I don't know much about those I'd think they should be able to talk to Java Aps using Sockets or request Servlets ...
    Spieler

  • HT4759 Why does icloud Contacts not work with Windows XP?

    Does anybody know why iCloud  Web page does not work with  Windows XP? I  have tried IE, Firefox and Chrome 

    XP is not supported by iCloud, that's why.
    iCloud System Requirements. PC.
    Microsoft Windows 7 or 8
    iCloud Control Panel 2.1 or later
    iTunes 11 or later (for iTunes in the Cloud and iTunes Match)
    Outlook 2007 or 2010 or iCloud.com
    Safari 5.1.7 or later or Internet Explorer 9 or later (for iCloud.com and Bookmarks), Firefox 16 or later or Chrome 23 or later (for iCloud.com)

  • Why does my webcam not work with Skype - can anyone help?

    Why does my webcam on Mac Book air not work with Skype - can anyone help?

    Did you set the Skype Audio/Video preferences to use the camera?

  • Why does Server Monitor not work with non-Xserves?

    Does anyone know why Server Monitor does not work with non-Xserve computers? We acquired a Power Mac for a server, based on there being no apparent difference except for the obvious. Turns out there are some differences after all.
    Do Power Macs lack some hardware components or is this just a software thing?

    God question, unfortunitly I dont have the answer but I would also like to know why the software only works for X-Serve....Is there any 3rd Party Software that is similar to "Server Monitor"?
    Thanks

  • Why does my Blog not publish with the rest of my new pages and photos????

    Much more work was done on my iWebsite today and I even made a rudimentary beginning of a blog.
    QUESTION:
    Why does my blog not publish?
    Lorna in Southern California

    James, the blog is on Safari now. I am embarrassed to say that I had already forgotten that I needed to make a link to the Site Menu. Since I had done all of that in a tear of activity previously, it's as though the process did not stick in my head. Sort of like forgetting to plug in the computer. 8-(
    I did not even realize what I had done wrong until I made a hyperlink from that site to my site menu and checked to see that the blog became visible. It's disconcerting to think that this kind of thing could happen to me again. 8-(
    I would be very interested in seeing people's blogs and how they use them. I've seen blogs used as news reports, blogs with music videos, blogs with photos. I earlier thought that a blog was like a diary: Words only.
    Lorna in Southern California

  • Why does MD098ZM/A not work with my iPad 2?

    I just brought a AV - HDMI adapter(MD098ZM/A), but my iPad 2 doesn't accept this Apple accessory.
    I'm curious why? Is it because I have iOS 4.3.3?

    According to the Apple online store specs, it should work with the iPad2. It makes no mention of a necessary iOS version in the specs.
    http://store.apple.com/us/product/MD098ZM/A/apple-digital-av-adapter#overview
    However, according to the one user in this discussion, iOS 5.1 is necessary.
    https://discussions.apple.com/message/18262906#18262906

  • Why does for-each not work with Enumeration?

    I'm sure there's some reason for this but I don't know what it would be.
    I am calling an existing method [http://java.sun.com/javase/6/docs/api/java/util/zip/ZipFile.html#entries()] And it returns Enumeration<? extends ZipEntry>
    What I would like to do is
    Enumeration<? extends ZipEntry> entries = myzipfile.entries();
    for(ZipEntry ze : entries)but this won't compile because Enumeration is not an Iterator. Which kinda sucks.
    Obviously (I think) Enumeration can't be retrofit to be an Iterator without problems and the APIs that return Enumeration can't change without problems so it seems the only way that for-each would work with an Enumeration is if for-each was allowed to work with Iterator and Enumeration.
    So my question is, why isn't it? (To be clear I know how to enumerate an Enumeration, I'd just like to know if anybody has a clue why for-each was not designed to support Enumeration)

    Still it does'nt fully answer the why question. Why does the Collections class not implement a static iterable(Enumeration) method that does not impose the overhead of an addiditional ArrayList, as in the following class:
    import java.util.Collections;
    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipFile;
    public class EnumerationToIterable {
        public static <T> Iterable<T> iterable(final Enumeration<T> enumeration) {
         return new Iterable<T>() {
             @Override
             public Iterator<T> iterator() {
              return new Iterator<T>() {
                  @Override
                  public boolean hasNext() {
                   return enumeration.hasMoreElements();
                  @Override
                  public T next() {
                   return enumeration.nextElement();
                  @Override
                  public void remove() {
                   throw new UnsupportedOperationException();
        public void iterateOne(ZipFile myzipfile) {
         Enumeration<? extends ZipEntry> entries = myzipfile.entries();
         for (ZipEntry ze : Collections.list(entries)) {
             // process ze
        public void iterateTwo(ZipFile myzipfile) {
         Enumeration<? extends ZipEntry> entries = myzipfile.entries();
         for (ZipEntry ze : iterable(entries)) {
             // process ze
    }Could it be more simple?
    (Thanks for the Dukes)
    Piet

  • Why does snaps pro not work with mountain lion?

    I spent a lot money purchasing the pro addition only to be told that it won't work with mountain lion due to Apple's written something into the code that does not permit me to make videos with it. I even tried ot make a video of Indesign acting up so i could send it to Adobe support and it wouldn't allow me to. Is this the resaon it suddenly doesn't work anymore? Are there plans to fix mountian lion to allow me to use my software? Alternatively,, does Apple have something that does screen captures of videos?

    this is the repsonse form Ambrosia: (Not sure I understand it)
    As far as Snapz Pro X 2 functionality, some major backend Digital Rights Management changes enacted by Apple may be what is preventing you from recording movies you were previously able to record using our software. Basically, our program can no longer access videos before the DRM protections are enabled, unfortunately we have no control over these changes. Please see the following FAQ:http://www.ambrosiasw.com/support/faqs/products/snapz-pro-x /Why-does-the-content-of-my-capture-display-as-a-checkerboard
    BTW I am current on the latgest version.
    Does anybody know how to work around my problem? I need to be able to record videos on my computer.

  • RSS Viewer not working with the BBC Weather Service

    Hi all  
    I  am unable to display an anonymous RSS feed on my  publishing site. I have checked similar posts but mine seems subtly different 
    in ULS
    Cannot find site lookup info for request Uri http://open.live.bbc.co.uk/weather/feeds/en/??????/3dayforecast.rss.
    My farm is patched to  SharePoint 2013, August CU. I am building demo intranet for a client to help them with their requirements. 
    I have not touched the master page ( hoping to do that shortly in the  branding phase) or embeded any JS.....yet
    - BBC weather RSS feed ( have tried this also on the server to check for firewall issue)
    - no Ajax options set
    - Have disabled Data View Caching .. though not sure this makes any difference.  
    My next thought was to start looking to see if  Web Proxy is causing my an issue. I have found this albeit for another version of SharePoint
    <system.net>
    <defaultProxy>
    <proxy proxyaddress="http://Proxy_Server:port" bypassonlocal = "true"/>
    </defaultProxy>
    </system.net>
    Now I have put in my actual proxy ip and port and I am getting close. Do I honestly need to hard code a credential  here ( as I had to with AutoSPSourceBuilder)

    Kumar
    Have you looked at the ULS logs to see if there are any clues. 
    As regards my issue, it  has been 'fixed' but I think it is a tactical solution rather than one we will deploy in production 
    Ok, I noticed when I demoed the intranet to the client last Thursday that one of my feeds was working.   I now  understand that this dev server is no longer using the web proxy. In which case we have two scenarios
    OOTB default Proxy
    <!-- DAN: OOTB <defaultProxy / -->
    <defaultProxy
    This the "tactical" config I have now and all feeds work.
    Proxy settings with bypass list
    <defaultProxy useDefaultCredentials="true">
    <proxy proxyaddress="http://Proxy_Server:Port" usesystemdefault="True"/>
    <bypasslist>
    <add address="http://open.live.bbc.co.uk" />
    <add address="http://MyIndustryFeed/rss" />
    </bypasslist>
    </defaultProxy>
    This is the config I had for my demo.  The second feed didn't work till I added the address to the bypasslist.
     If we were to reconnect the web proxy and use the above,  I understand you need to ensure the  proxy access on the server gets authenticated via the app pool account for the relevant web app - hard code credential or "always allow this
    user ". If you go down this route I will be interested in how you get on..  
    As a consultant all I can do is raise support  issues with the client - I am now allowed domain admin or web proxy access to verify  ;-(

  • Why does "enclosing folder" not work from the SEARCH window?

    I do a command+F search.
    Command+2 to view as list rather than groups
    and then sort by date modified.
    When I find the file/folder I want I'd really like to do a command+[up arrow] which in the GO menu is a valid command.
    Why does this work in finder windows but not in the search window?
    I'm not using spotlight, just the good old command+F
    This used to work in Sherlock 1 [using command+E] and when you opened the enclosing window, the file was already hi-lighted, faster to locate and saved mousing.

    You'll note that in the Go menu that command is grayed out meaning it's not active in the search results display.
    If you upgrad to Leopard then you can go to the Finder's View menu and select "Show Path Bar." The full path to any selected item in the Finder's window will be displayed in a path bar in the lower portion of the window. You can then double-click on any displayed folder to open a window on that folder.

  • Why does animated .gif not work with windows?

    I have created an animated .gif to place in a powerpoint presentation, but when I sent it to my client who used a windows computer, it does not work. When I try to open the .gif in my windows 98 virtual machine, it says it has errors.
    I created it in photoshop CC using the timeline and saving it with "save for web".

    AAAAAAAGGGGGGHHH!  Stupid Powerpoint corrupted the files when it "packaged" them
    Thank you for pointing me in the right direction.
    It is very difficult to figure out what my client is doing on his end.
    It won't let me mark you both as correct.

Maybe you are looking for

  • Accessing PL/SQL table in SQL query

    Hello, Is it possible to use plain SQL to query PL/SQL table? In my case this table is returned by UTL_HTTP.REQUEST_PIECES function, which is defined as: create or replace package utl_http is type html_pieces is table of varchar2(2000) index by binar

  • Dual-band Time Capsule is, practically, useless, only if...

    Hi everyone! It goes like this: I bought a dual-band 2TB Time Capsule. I configured it and gave "2.4Ghz" as the name for the 2.4Ghz network. Then I went to "More Options" and named "5Ghz" the... 5Ghz network. They show up in the wireless networks lis

  • I can't download Ps and Lr after buying it...

    Hei I bought Adobe Ps and Lr, already paid the money, but I can't download the files, because the Windows is too old for the system requirements on my laptop. I have a PC at home with proper windows, but I don't have acces to internet there... The do

  • I can't open *.indd files in Adobe InDesign CS4

    I've just installed the trial version of Adobe Indesign CS4 and I cannot open my *.indd files which contain my business brochures etc. How can they be opened? Operating system:  Windows XP pro SP3. Processor: Intel E8400, Gigabyte P35 Chipset with 4G

  • Why isn't all of my music showing up with iTunes Match?

    My old computer died so I can't access my original iTunes.  So I purchased the iTunes Match subscription in hopes of moving my music over to my other computer.  Much of my music showed up but there is a lot that didn't -- including CDs that I burned