Image does not center on mobile device

Hi,
     I've made an html page in dreamweaver with a logo in the center. It displays just fine in every browser, but when I viewed it in the phone, it displays incorrectly (the logo is displayed on top of the page instead). I already set the image's ("navbar") left and right pixels to auto and the position to relative. Anybody know what I did wrong?
#NavBar {
          height: 500px;
          width: 420px;
          left: 15px;
          right: auto;
          position: relative;
          top: 145px;
          margin: auto;

Not sure I understand what relationship if any a #NavBar has to a logo image.  But I will tell you that positioned elements are rarely if ever needed in primary layouts. It's actually better if you don't use positioning.
Without seeing a link to your live page or at a minimun the complete code, it's hard to speculate about what you might or might not have done.
Nancy O.

Similar Messages

  • ITunes 12.0.1.26 does not recognize my mobile devices.

    iTunes 12.0.1.26 does not recognize my mobile devices.

    Hello,
    I have the same experience with my iPod Classic under 12.0.1.26 under Max OS X Yosemite 10.10.2. But on another Mac with OS X 10.7.5 and iTunes 12.0.1.26 it is recognized.
    Regards
    mhomscheidt

  • TS1538 My ipod touch will not connect to itunes. I reset the ipod touch. uninstalled itunes and installed it. Turned off firewall however the device manager still does not show Apple mobile device usb. What should i do next? I have windows 7.

    My ipod will not connect to itunes. I reset the ipod touch. uninstalled itunes and installed it. Turned off firewall however the device manager still does not show Apple mobile device usb. What should i do next? I have windows 7.

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • SVG image does not appear in mobile version but does in desktop version

    Hi,
    I am new to using Muse and have created only one site before in Muse. I have taken screenshots to show the problem I am having.
    I have used Illustrator to create the following logo image that I save out as an SVG file:
    As you've probably guessed, I have used clipping mask to insert the marbly purple image into the shapes and text (this may be relevant to the problem, I don't know).
    I then save it out as an SVG with the following details as advised by Adobe:
    Then moving into Muse, I File > Place the SVG file. 'Unable to generate thumbnail' comes up in both desktop and phone versions:
    Regardless, I uploaded to FTP post to my website. While the SVG appears perfectly on my desktop browser, it does not show at all on my phone browser:
    This is not only happening on my phone, I have visited the same website on multiple phone devices and still the SVG image does not appear. Any ideas why this is happening?
    Have I totally missed something about file formats for mobile browser versions in Muse?
    Also- in illustrator, I saved the SVG logo for the mobile version as a SMALLER SVG than the one I saved for the desktop version.
    Thanks

    Use a PNG file. I see nothing in your logo that would warrant using anything else. You're not scaling it, there is no interaction and all you are doing is masking out some data that is pixels already. Pardon me, but using an SVG makes no sense at all. Beyond that one would need to see the file, but my guess would be that the "responsive" setting once again embeds some garbage data. Wouldn't be the first time...
    Mylenium

  • MenuManager in TableViewer does not work on mobile device (tablet with Win 8)

    Hi
    Welcome everybody This is my first post on this forum. I really hope you can help me out with this. It is kind of strange.... Ok, so I am developing RCP/SWT application, and it has to work on mobile device with windows 8 as well (10' tablet with windows Cool. So far so good - everything work pretty nice, except one thing that is really annoying. So I have this table, and user has possibility to use right click menu (context menu) on each row. Problem is that it does not work at all on mobile device. Right click on tablet is actually defined by pressing finger for longer period of time - then after 1 or 2 second menu should appear. Problem is that it does not at all. Funny thing is that when I connect a mouse using USB port to tablet I am able to open this menu Smile - it works completely fine. Menu works also with finger action when I press on empty (e.g. table without any data) I noticed that this issue is related with constructor style option SWT.FULL_FULL_SELECTION that is used for creating table. When I remove it from the constructor, right click works fine but there is not any data (no record is selected), so I can not perform any context menu action. Menu is dynamic, so depending on what data is loaded, the contain of menu changes. Main problem is that method menuAboutToShow is not called at all!. The code looks like that:
    Table table = new Table(parent, SWT.FULL_SELECTION | SWT.VIRTUAL | SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI);
    table.setLinesVisible(true);
    table.setLayout(myTableLayout);
    createColumns(table, layout);
    table.setHeaderVisible(true);
    tableViewer = new TableViewer(table);
    tableViewer.setContentProvider(myContentProvider);
    tableViewer.setLabelProvider(myLabelProvider);
    MenuManager contextMenu = new MenuManager();
    contextMenu.setRemoveAllWhenShown(true);
    contextMenu.addMenuListener(new IMenuListener() {
    public void menuAboutToShow(IMenuManager mgr) {
    contextMenu.add(new MyAction(action)); // THIS PLACE IS NEVER CALLED WITH RIGHT FINGER CLICK!
    // dynamic filling context menu engine
    Menu menu = contextMenu.createContextMenu(tableViewer.getControl());
    tableViewer.getControl().setMenu(menu);
    getSite().registerContextMenu(contextMenu, null);
    Additional info: this tap-hold functionally is standard equivalent for right click on tablet device with Windows. I did not do any additional implementation for that. I think it should just work. I have several tables in my application and in all of those this problem appears. Any idea what may be wrong ?
    cheers,
    Pawel

    I have just installed SWT Example on my tablet (from here: https://www.eclipse.org/swt/examples.php#standaloneOutsideEclipse) and this same problem appears on the table example. I think it is general problem/bug. Should I report this as a swt eclipse bug ?

  • MenuManager in TableViewer does not work on mobile device

    Hi
    Welcome everybody This is my first post on this forum. I really hope you can help me out with this. It is kind of strange.... Ok, so I am developing RCP application, and it has to work on mobile device with windows 8 as well (10' tablet with windows . So far so good - everything work pretty nice, except one thing that is really annoying. So I have this table, and user has possibility to use right click menu (context menu) on each row. Problem is that it does not work at all on mobile device. Right click on tablet is actually defined by pressing finger for longer period of time - then after 1 or 2 second menu should appear. Problem is that it does not at all. Funny thing is that when I connect a mouse using USB port to tablet I am able to open this menu - it works completely fine. Menu works also with finger action when I press on empty (e.g. table without any data) I noticed that this issue is related with constructor style option SWT.FULL_FULL_SELECTION that is used for creating table. When I remove it from the constructor, right click works fine but there is not any data (no record is selected), so I can not perform any context menu action. Menu is dynamic, so depending on what data is loaded, the contain of menu changes. Main problem is that method menuAboutToShow is not called at all!. The code looks like that:
    Table table = new Table(parent, SWT.FULL_SELECTION | SWT.VIRTUAL | SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI);
    table.setLinesVisible(true);
    table.setLayout(myTableLayout);
    createColumns(table, layout);
    table.setHeaderVisible(true);
    tableViewer = new TableViewer(table);
    tableViewer.setContentProvider(myContentProvider);
    tableViewer.setLabelProvider(myLabelProvider);
    MenuManager contextMenu = new MenuManager();
    contextMenu.setRemoveAllWhenShown(true);
    contextMenu.addMenuListener(new IMenuListener() {
    public void menuAboutToShow(IMenuManager mgr) {
    contextMenu.add(new MyAction(action)); // THIS PLACE IS NEVER CALLED WITH RIGHT FINGER CLICK!
    // dynamic filling context menu engine
    Menu menu = contextMenu.createContextMenu(tableViewer.getControl());
    tableViewer.getControl().setMenu(menu);
    getSite().registerContextMenu(contextMenu, null);
    Any idea what may be wrong ?
    cheers,
    Pawel

    Hi
    The "tap-and-hold" is not my functionality. It default SWT Table behaviour on tablet. In windows it self it works like that - to use "right click" you have to do "tap-and-hold". It is just the way it works on tablet I do not have any other application to test it, but I have several tables/tableViever in my application for presenting different results/data, and in all of those this problem appears

  • OA Framework page (custom) does not shrink to mobile device screen size.

    Hi,
    OA Framework page (custom page) using IE6 had application disconnection problem.
    So using IE6.1 beta/IE6.5 for OA Framework page (custom page) does not shrink/fit to the mobile device screen size. Means user have to scroll to the right/bottom every time. IE is set as a Mobile device (and not the desktop).
    We have tried using following Meta Tag (with different content values) to inform the browser that this is a mobile device. But this has not worked.
    pageContext.putMetaTag("MOBILEOPTIMIZED","<META name=\"MobileOptimized\" content=\"176\">");
    How we can fix this issue?
    Thanks in advance.
    Nilesh

    Hi,
    What you are trying to do, I could not understand.
    Apps Schema has all synonyms for almost all the objects in other schema if you will not specify any schema name the it will synonyms created in apps. For not using mention like this shema_name.object_name then it will fetch data from mentioned schema.
    Regards,
    Reetesh Sharma

  • Link to image does not center in browsers

    PLease halp - I have smaller images that link to larger
    images, both are supposed to be centered. The smaller images center
    in the web page fine. The link to the larger image which is set to
    open in self will only go left aligned. Suggestions please!
    My code is:
    <td> <div align="center"> <font size="2">
    <a href="images/Pt%20Loma%20lighthouse.jpg"
    target="_self"><img
    src="images/Pt%20Loma%20lighthouse-sm.jpg" alt="Point Loma
    Lighthouse - Barto Gallery" width="200" height="278" border="0"
    ></a></a><br>
    <font face="Arial, Helvetica, sans-serif">Point Loma
    Lighthouse</font><br>
    </font></div></td>
    Thanks in advance!
    Watier

    When you open an image directly, as you are doing here -
    <a href="images/Pt%20Loma%20lighthouse.jpg
    you have no control over how that image is displayed. If you
    want it to be
    centered, you would have to create a new page with that image
    placed on it
    in a way that allows it to be centered, and then link to the
    new page rather
    than directly to the image.
    By the way, using spaces in your file/pathnames is definitely
    not a best
    practice.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Watier" <[email protected]> wrote in
    message
    news:e88os2$cf5$[email protected]..
    >
    >
    > PLease halp - I have smaller images that link to larger
    images, both are
    > supposed to be centered. The smaller images center in
    the web page fine.
    > The
    > link to the larger image which is set to open in self
    will only go left
    > aligned. Suggestions please!
    >
    > My code is:
    >
    > <td> <div align="center"> <font
    size="2"> <a
    > href="images/Pt%20Loma%20lighthouse.jpg"
    target="_self"><img
    > src="images/Pt%20Loma%20lighthouse-sm.jpg" alt="Point
    Loma Lighthouse -
    > Barto
    > Gallery" width="200" height="278" border="0"
    ></a></a><br>
    > <font face="Arial, Helvetica, sans-serif">Point
    Loma
    > Lighthouse</font><br>
    > </font></div></td>
    >
    > Thanks in advance!
    > Watier
    >

  • SetTimeout() not working on mobile devices

    setTimeout() does not work on mobile devices ie. Safari on iOS 7.1.2 and Android 2.2.  What is the alternative that works on mobile devices?  Thank you.

    Hi Carlos,
    MS mobile browsers are crippled. They don't support many features known from IE. I would suggest to check MSDN for Windows Mobile documentation:
    http://msdn2.microsoft.com/en-us/library/bb158486.aspx
    You might also check the blog of IEmobile Team:
    http://blogs.msdn.com/iemobile/default.aspx
    Best regards,
    Klaus

  • Why does it say can not open  iphone mobile device service not started after the udate fixes?

    can someone please help after i update my soft ware to fix sum bug issues now when i hook up my iphone to my laptop it say can not open iphone mobile device is not started

    Check the links listed in the More Like This box on the right of this window.

  • LR 4 - image does not appear in Preview and will not print`

    The selected image appears on the main/center panel but not in the preview screen.  Printing results in a white sheet of paper with no image at all.  The image has been updated to LR 4 - but made no difference.  I've served help and the forums (where i saw mention of similar problems, but no comments or guidance on the problem).  What am I doing wrong?

    The problem began with the installation of LR4. I print directly from LR4 to my HPZ3100. I routinely select "print preview" in the print dialogue box. Now the first print I see the preview and then it prints. If I select a second print job and use the "print preview" the print preview screen comes up blank and never loads. If I try to delete the print job, it just never responds (resolves) so I have to turn off the computer and the printer and restart to clear the print job. if I don't use the print preview, it prints just fine (except that I'm not able to check what's about to be printed). Thanks for any thoughts you have on this.
    Date: Tue, 10 Jul 2012 16:01:47 -0600
    From: [email protected]
    To: [email protected]
    Subject: LR 4 - image does not appear in Preview and will not print`
        Re: LR 4 - image does not appear in Preview and will not print`
        created by Brett N in Photoshop Lightroom - View the full discussion
    Bill, if this is only happening some of the time, then we are probably looking at a resource issue. Any pattern in when things won't print? e.g. Certain file type won't but others will? Or is it more of a timing/order thing? e.g. First file prints fine, second does not? VStromee, do no files print for you? Or is it like Bill and sometimes the print and other times they do not? Did you install any new software recently or have any updates to the OS or any application that has printing capabilities?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4549692#4549692
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4549692#4549692. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Lightroom by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • HTML5 output is not working on mobile devices, including iPads and iPhones

    Hello,
    I posted a question about this last week but had no reply. So I'm posting it again as it presents a serious problem for anyone wanting to publish content to mobile devices from Captivate 6.
    The problem is that HTML5 quiz content runs incrediably slowly (it at all) and crashes the brower on mobile devices. I have tested this on an iPhone and 2 iPads in 2 different locations.
    This is a demo that shows the problems: http://sshls-dev.port.ac.uk/captivate_problems/
    (Running this demo on a standard laptop / PC will be fine and it will work perfectly. The problem only appears when the content is viewed on a mobile device).
    The problem is more extreem in the 'shorthand' demo. The quiz loads up the first question and then when I press submit it either freezes or closes the browser (Safari) completly. Occasionally it will progress to questions 2 or 3 but then the same happens.
    I am keen on finding an answer / workaround becuase at the moment it effectively means that Captivate cannot be used to display quizes on phones / iPads.
    I would be very grateful if anyone knows how to solve this problem to let me know.
    thanks,
    Emily

    Hi alex,
    Try it with any type of android system.
    regards
    ferry
    Op 22 feb. 2013, om 09:56 heeft Alex Pavelescu <[email protected]> het volgende geschreven:
    Re: BC menu not working on mobile devices
    created by Alex Pavelescu in Content Management and Modules - View the full discussion
    Hi Ferry,
    Just tested on an iphone 4 and it works fine. Please provide details for all the devices on which you have the issue (model type/name, os version, browser version)
    Kind Regards,
    Alex.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5093384#5093384
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5093384#5093384
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5093384#5093384. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Content Management and Modules by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Itunes does not recognize my iphone device

    When plugged into the new itunes V 11. my iphone 4 does not register.  I remember this happening when I first logged into mountain lion and I believe it has something to do with AppleMobileDevice.  I have tried so many things to rectify this.
    I just want to sync to my computer and update my playlists!!!!!
    Please help

    Mountain Lion do not use Apple Mobile Device Service.
    iOS: Device not recognized in iTunes for Mac OS X

  • HT1414 HOw do I back up and restore If I plug my ipod in and it does not appear in the devices column. I have a white screen and i'm trying to fix it and nothing is working :(

    How do I back up and restore my ipod touch if when i connect it to itunes It does not appear in the devices column? I have a white screen and have tried holding down the wake/sleep and home buttons and that is not working. Please help

    Take it in for repair/replace to your local Apple retailer.

  • Image does not appear in applet.

    I am reading the book, Teach Yourself Java in 21 Days.
    There is an example in Ch.11 that shows how to load an image into the applet.
    I have tried to use the code provided as is along with an image as defined in the code. I have also uploaded the html, class and image to a folder on the web. Unfortunately, the image does not appear in the applet. The image does have an image that I created using ms paint.
    Here is the code I am currently using from the book:
    import java.awt.Graphics;
    import java.awt.Image;
    public class LadyBug2 extends java.applet.Applet {
         Image bugimg;
         public void init() {
             bugimg = getImage(getCodeBase(),
                 "ladybug.gif");
         public void paint(Graphics g) {
             int iwidth = bugimg.getWidth(this);
             int iheight = bugimg.getHeight(this);
             int xpos = 10;
             // 25 %
            g.drawImage(bugimg, xpos, 10,
                iwidth / 4, iheight / 4, this);
             // 50 %
             xpos += (iwidth / 4) + 10;
             g.drawImage(bugimg, xpos , 10,
                  iwidth / 2, iheight / 2, this);
             // 100%
             xpos += (iwidth / 2) + 10;
             g.drawImage(bugimg, xpos, 10, this);
             // 150% x, 25% y
             g.drawImage(bugimg, 10, iheight + 30,
                 (int)(iwidth * 1.5), iheight / 4, this);
    }I tried placing the image in an images folder and I also tried changing the code to getImage(getDocumentBase(), "ladybug.gif")
    as well as tried getImage(getCodeBase(), "ladybug.gif") in order to try and grab the image from the same directory as the class file and the html file.
    The image file's name is: ladybug.gif
    The code in the html file:
    <HTML>
    <HEAD>
    <TITLE>Lady Bug</TITLE>
    </HEAD>
    <BODY>
    <P>
    <APPLET CODE="LadyBug2.class" WIDTH=1024 HEIGHT=500>
    </APPLET>
    </BODY>
    </HTML>
    I have gotten previous applet examples from the book to work. One of them did have an error in the author's code which I fortunately was able to overcome. This time, I am afraid, the error eludes me.
    Thanks in advance.
    I do see that there is no start/stop/run in this version, but I believe this should still work because of the init. I am guessing that maybe the problem lies somewhere in there.
    Message was edited by:
    gnikollaj

    According to the javadoc:
    getImage
    public Image getImage(URL url,
    String name)Returns an Image object that can then be painted on the screen. The url argument must specify an absolute URL. The name argument is a specifier that is relative to the url argument.
    This method always returns immediately, whether or not the image exists. When this applet attempts to draw the image on the screen, the data will be loaded. The graphics primitives that draw the image will incrementally paint on the screen.
    Parameters:
    url - an absolute URL giving the base location of the image.
    name - the location of the image, relative to the url argument.
    Returns:
    the image at the specified URL.
    I am confused as to how to use the name after the url.
    Should it read something like:
    bugimg = getImage("http://g.jtrusty.com/JavaApplet/", "LadyBug.gif");
    EDIT: I still get the same error, cannot find symbol at getImage.
    Message was edited by:
    gnikollaj

Maybe you are looking for

  • OBI 11.1.1.7.0 - upgrade from 11.1.1.6.5

    Hello, I'm attempting to upgrade to 11.1.1.7.0 from 11.1.1.6.5 via a Software Only Install on a Win2008 R2 64-bit server. Prior to the upgrade OBI 11.1.1.6.5 was running with no issues. I've downloaded the four 11.1.1.7.0 zip files and extracted via

  • Best approach for sending SMS through workflow

    Hi Experts, I have a scenario where in I have to send SMS as a part of an escalation workflow process.I wanted to ask to the forum as to what is the best approach to send sms from workflow.The information regarding the users and the numbers is to com

  • Find special characters in string (using mask)

    Hi all, I have the following requirement, perhaps someone has got a hint for me: I have got a string of 255 characters. I want to realize that this string only contains characters of a "normal" format, like a-z, A-Z and numbers. Any characters like ,

  • Dropdown-List in PC-UI

    I have a custom field (Z-field) and want to display it via CRM Designer in the PC-UI. Behind the Z-Field is a check table, so using the SAP-GUI, a dropdown box is displayed and only the values from the check table are available. How do I have to cust

  • Internal error occured

    I've just tried updating my Adobe Reader to the latest version but when I try to run the program I get the following error: "An internal error occured" I've tried uninstalling using Adobe's Cleaner Tool from http://labs.adobe.com/downloads/acrobatcle