Muse Website display on ipad and iphone suboptimal

I created a website in muse on my Mac laptop and it looks great, but when viewing it on my iphone or ipad there is a white gap between navigation and the top of each full screen slide show. Can anyone help?

Hi Amber,
I investigated the issue and found a few tweaks to fix the issue with your site.
1. Please change scroll motion value "Key position" of the fill image (wood) to 0px from negative value. Please refer to the following screenshot : http://prntscr.com/2n8y5q
2. Drag all other fill images upwards to slightly overlap on the previous image. You may also have to tweak the scroll motion value "Key position" for all the fill images. For example, I changed the value to 640px from 600px for this image : http://prntscr.com/2n8yku
Hope this helps.
Cheers!
Aish

Similar Messages

  • Background images for website enlarges on iPAD and iPhone

    I have a responsive website. My CSS3 for the background looks like this:
    body {
               background url(.../images/backgroundArchx1920.jpg) no-repeat center center fixed;
               -webkit-background-size:cover;
               -moz-background-size:cover;
               -0-background-size:cover;
               background-size:cover;
    It looks great on a desktop and on my home page on all devices. BUT when I go to pages that have a photo gallery on the the iPAD and iPhone 5 enlarge the background and it is not fixed anymore.
    What am I missing?
    RandRobinson

    There are many places to get an answer to your question, but this is not likely it. This is a user-supported technical support forum for other users - not developers. Maybe someone here can help, but I think you are better off with Google or a web development support forum.

  • Safari and Firefox on my desktop suddenly stopped combine ting to any website.  IPad and IPhone work fine from the same wifi. Any ideas.

    Safari and Firefox will not connect to website On desktop. IPad and IPhone work fine from the same wifi.

    Restart your router.

  • I have updated to 8.1 on both my ipad and iphone 5. I am missing photos...they display as blank boxes. What should I do next?

    I have updated to 8.1 on both my ipad and iphone 5. I am missing photos...they display as blank boxes. What should I do next?

    Apps downloaded on one should also appear on the other as long as the app in question runs on both iPads and iPhones.

  • HT204053 I have an Apple ID and use I Cloud with my Ipad and Iphone. I am trying to publish a website from my macbook but my user name and password is not recognised when I try?

    I have an Apple ID and use I Cloud with my Ipad and Iphone. I am trying to publish a website from my macbook but my user name and password is not recognised when I try?

    Ken.Lloyd wrote:
    Sorry for the delay. System preferences icloud is not an option for me. Syst preferences mobileme is
    The minimum requirement for iCloud is Lion 10.7.2 - earlier systems don't show the iCloud preference pane. If you want to use iCloud you will have to upgrade to Lion or Mountain Lion (assuming your computer meets their requirements) but even so you won't be able to publish web pages to iCloud because it does not provide web hosting. This page examines that situation in more detail:
    http://rfwilmut.net/missing2

  • Local host banner when viewing on iPad and iPhone

    Hi, the embedded FC form on my website runs great when viewing on the desktop but the actually website disappears when viewing on an apple device. When this happens the form still works but the yellow banner appears.
    The Adobe Muse website is not yet live as I'm still testing via a temporary business catalyst URL... I really just want an assurance by the FC team that when we do publish via BC the forms will work on iPads and iPhones. I'm starting to get nervous that they won't work when published.
    The forms are embedded using the proper embed code.
    Thanks

    Hi,
    The local banner is supposed to show when you are viewing the web page on a local server or host.  It seems that you have a slightly different problem here as you do not see this local banner when viewed on the desktop but you do when viewed on iOS devices.
    Please take a look at these posts and see if you have run into the issues mentioned there: http://forums.adobe.com/message/5813658
    http://forums.adobe.com/thread/1352067
    If you do find that your web page is using jquery.scrolleffects.js
    You have two choices to fix this:
    1) Remove jquery.scrolleffects.js from the web page.
    or
    2) Move the embed code out of the cloned element.  For example, remove the existing form embed code, and place the following at the end of the body element:
    <script type="text/javascript" src="https://formscentral.acrobat.com/Clients/Current/FormsCentral/htmlClient/scripts/adobe.for m.embed.js" style=""></script>
    <script type="text/javascript" style="">
    $(document).ready(function()
    ADOBEFORMS.EmbedForm({formId:"yourFormsFormIDGoesHere", place:$('# u12813')[0], placeHow:'child'});
    </script>
    If you still have problem, please let us know the temporary URL that you are using or the source of your web page with the embed form.
    Thanks,
    Lucia

  • Mixed results on iPad and iPhone 6 Plus with background image. How to fix this?

    Flash Professional CC
    I'm having an issue with adding images on iPhone 6 plus and iPad. I'm getting mixed results with two items: 1) a background image and 2) a button that should appear at the bottom left-hand corner on any device. In one case the background image appears enlarged and only shows about 30% of itself. In the other case, the bottom left-hand button appears about 50 pixels to the left when x=0. I also get different results when I set the following:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    This does not produce the expected results. I would like to have consistent results across iPad and iPhone 6 plus, which seams to be an issue. The immediate fix for this is to leave the images on the stage instead of using addChild. I could then just stretch the background image so that it spans the whole screen. But I want to add the items dynamically for greater flexibility.
    Here are two cases:
    Case #1:
    This an iPhone 6 plus and you should notice 2 things. 1) There is black and white on both sides. The blue background SHOULD APPEAR ACROSS THE WHOLE SCREEN. 2) The red button in the corner SHOULD APPEAR IN THE LEFT MOST CORNER OF THE
    SCREEN.
    Case #2:
    This an iPhone 6 plus and I have set the scale X, Y to the stage.stageWidth/Height:
    mc_stageBackground_Main.scaleX = stage.stageWidth;
    mc_stageBackground_Main.scaleY = stage.stageHeight;
    This results in a close up of the background image.
    Here is the code that I'm using:
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    //When this is active the background image spans across the device (iPhone 6 plus) correctly. The main logo image does not line up correctly.
    /*stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;*/
    var main_logo:MC_LOGO_MAIN = new MC_LOGO_MAIN();
    var mainBackground_2208: MC_MAIN_BACKGROUND_2208 = new MC_MAIN_BACKGROUND_2208();
    var mainBackground_1024: MC_BACKGROUND_1024 = new MC_BACKGROUND_1024();
    var mainCorner: MC_MAINCORNER = new MC_MAINCORNER();
    var chapters: MC_CHAPTERS = new MC_CHAPTERS();
    var _stageWidth = 1024;
    if (stage.stageWidth > _stageWidth)
        //Add bigger background if the stage is bigger than 1024
        mainBackground_2208.x = stage.stageWidth/2;
        mainBackground_2208.y = stage.stageHeight/2;
        addChild(mainBackground_2208);
        //Using this code results in a very close up view of the stage on iPhone 6 plus  
        /*mc_stageBackground_Main.scaleX = stage.stageWidth;
        mc_stageBackground_Main.scaleY = stage.stageHeight;*/
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild(mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //add logo to sit at 50 pixels from the top of the stage
        /*main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});*/
    else
        trace ("The stage is 1024 or smaller");
        //Add 1024 background if stage is 1024 or smaller
        mainBackground_1024.x = stage.stageWidth/2;
        mainBackground_1024.y = stage.stageHeight/2;
        addChild(mainBackground_1024);
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild (mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //adds chapters
        chapters.x = (stage.stageWidth - stage.stageWidth)+75;
        chapters.y = stage.stageHeight - 120;
        addChild(chapters);
        TweenLite.from(chapters, 1,{ height: 0, delay:.5, ease:Elastic.easeOut});  
        //adds the Main logo to sit at 50 pixels from the top of the stage
        main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});

    On all of the devices go to settings - facetime - iphone cellular calls - oFF, this part of Apple continuity.

  • Using iMessage on iPad and iPhone

    Hi all,
    I have successfully setup iMessage on both my iPad and iPhone devices.
    I was wondering if anyone can help me with the following problems:
    When my iPad is in stand-by mode or with the smart cover on the screen, it will only receive the iMessage on my iPhone and not iPad. If I have both devices turned on and are readily available then I will get the iMessage on both messages at the same time. Is there perhaps a setting or a setup step that I have missed to enable my iMessages to be in sync?
    Can I change the display name of my iMessage rather than it coming in under my full email address eg My Name instead of [email protected]

    Assuming you use the same iCloud account for all devices, check the following on each device:
    Settings > Messages > Send & Receive > You can be reached at > enable the phone number and email addresses you use..

  • How do I open email pdf's on iPad and iPhone?

    HII have an iPad on Ios7 and an iPhone 4.  I can't open PDF attachments on either device.  When I click I them in the email, it starts to load in Safari with the blue line running across.  The line then disappears and then a blank page appears.
    I've tried downloading Adobe from the App Store In order to 'share' by clicking on the icon that is a square with an arrow poking out of the top, however Adobe doesn't appear here when I click on it - just message, mail, twitter and facebook.  There's no option to 'open in' on the bar underneath this (the one with bookmarks, reading list etc).
    can anyone help please?
    My mail account is an @me.com on iCloud.
    Thanks.
    Fran.x

    lillylocket,
    What is your mail app on your iPad and iPhone?  Typically PDF attachments are opened in the preview screen of Apple Mail.  But it sounds like your PDF attachments are opened in Safari.
    Please you take a look at the Safari section of the following FAQ documents to open PDF documents in Adobe Reader for iOS.
    For iPad, How to open PDF documents in Adobe Reader for iOS (iPad on iOS 7 or 8 version)
    For iPhone, How to open PDF documents in Adobe Reader for iOS (iPhone on iOS 7 or 8 version)
    As you have discovered, Safari does not include the "Open In" options for the Share button.
    When you tap anywhere in a PDF document in Safari, the secondary toolbar is displayed below the top toolbar.  You need to look for the text label button "Open In..." instead of the Share button.
    Hope this helps.
    Please let us know if you have additional questions.

  • IPad and iPhone are not shown in iTunes

    Hello!
    Yesterday all works fine. I connected my iPad and iPhone to iTunes and they were synced. But now, they aren't displayed in iTunes.
    I am using Lion and iTunes 10.4.
    Furthermore, i noticed, iTunes doesn't start up by plugin my devices since i installed Lion. Is this normal?

    Hey Medaxe,
    In this link are some troubleshooting steps to get your iPad and iPhone to show up in iTunes again:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Welcome to Apple Support Communities!
    Cheers,
    Delgadoh

  • HT201263 Last night the screens on my ipad and iphone both started toggling first to my screen saver then to the applie icon.  And it will not stop and I cannot get in.

    My iPad and iPhone screens suddenly began toggling back and forth between the Home screen and the apple icon.  I can't even get into the system to reboot and iTunes won't recognize it.  I've heard there is a Device Recovery Mode for over-coming this.  But how do you do it?

    Hi,
    Try a reset first.  Hold down both the Sleep & Home buttons together until the Apple logo is displayed onscreen.
    For info on Recovery Mode, see: http://support.apple.com/kb/HT1808
    Regards,
    Steve

  • HT4970 May i use my PC to manage the reminder of my ipad and iphone?

    May i use my PC to manage the reminder of my ipad and iphone?
    And how can I do it?

    Why install the control panel on your PC when you can just as easily go to the iCloud website?
    Because you can't access your photo stream photos from the iCloud website.  I iCloud control panel gives you the ability to have those same pictures streaming between your iPhone/iPad (your photo stream), sync to your local pc. 
    I too use gmail exchange so my mail, contacts, notes, and calendar are already sync'd.  Like I said, I only use the photo stream sync'ing aspect of the iCloud control panel.

  • Can I see the budget of unread emails on ipad and iphone before update?

    Hello everyone.
    I would like to know if I can see the budget of my unread e-mails on ipad and iphone before update.
    That is, I turn on my ipad or iphone and see immediately if and how many unread messages I have.
    Thank you!

    If you go to Settings>Notification Centre>Mail each of your email accounts will appear here separately. You can then change if Badges are displaye on the Mail App - which will show you the number of emails - or not.
    Regards,
    Steve

  • IPad and iPhone not working with a monitor

    I tried to get my iPad and iPhone to play Netflix on a Acer 20inch monitor.  It started to work than stopped. I got a message that the display connected display is not sponsored. It there a download that is available to have my monitor display video.
    I have them connected with a VGA connector. I functions for a bit then I get the non support message.

    Do you mean per app? Have done for calendar on iphone, but reluctant to do so on ipad as that's the one that contains loads of updates (as it means deleting everything on the ipad?)... if I have to do this I will eventually, its just that as it's both my iphone and ipad involved, it seems like it might be more likely to be an icloud issue? She said hopefully...

  • Both my iPad and iPhone have stopped receiving e-mail from Comcast using the Mail app.

    This is really frustrating.  I just spent an hour on the phone with a fairly good Comcast tech, and he couldn't solve the problem.  They said it might be because Mail goes through iCloud, and iCloud may be having trouble.
    I have tried restarting both the iPad and iPhone, changing ports, deleting and re-setting up the comcast mail account, etc.  I am able to view my e-mail on my MacBook Pro using Outlook, and the Comcast website e-mail is also OK.
    Any suggestions?  It would be good if I could talk to an Apple tech, but apparently that is not an option.

    Thanks for the additional information.  No error messages.  No issues w/ POP3 e-mail being locked out....
    I had not changed any settings before this problem occured.  Both Mail apps on the iPad and iPhone just crashed.  I believe in causality (I am a Physicist), so probably it wasn't anything on my iPad or iPhone.
    It has become all too common for tech companies to blame anyone but themselves.  As a customer with little control or input, I find this infuriating.
    Now, both my iPad and iPhone have started working again, after nearly 6 hours w/ out e-mail working.
    Maybe it was sunspots!  
    Thanks again!

Maybe you are looking for

  • If I press Delete my iCloud account will it delete everything off my phone?

    I have an iCloud username from like 5 years ago. It was never verified. But my phone keeps tryiing to make it THE iCloud account to use. So I want to switch it over to my current apple ID. So If I press"Delete Account" Is that going to wipe my phone,

  • Media Manager help!!

    I want to create independent media files from subclips in my FCP project with Media Manager. Since I did not understand this process in the beginning I have logged and filed all the subclips in a variety of bins regardless of there master clip origin

  • SBO 8.8 and Windows 7

    Hello adept SBO I have installed SBO 8.8 in windows Seven, but sometimes i got some issues like oppening,... brief SBO is not stable. I am using SBO8.8 with SQL Server 2005 and 2008 R as license Sql server and windows 7? I wonder if this troubles are

  • Firefox or Adobe will not allow downloading useable PDF files anymore. Started with last update of Adobe/Firefox.

    For the last few days, I think it was after an update in Firefox or an update in Adobe reader, I cannot save a PDF file from the web and then open it with either Adobe Reader or PDFlite. The file opens and I can read it just fine within Firefox using

  • My ipod is not updating new songs?

    I resently changed my computer and intalled ipod n itunes from the CD....But now my ipod is not updating the new songs and i don't know how 2 export the songs i already have in the ipod. Now i don't want to lose the songs in the ipod but i also want