Mobile (phone & tablet) screen profiles not displaying correctly

RoboHelp 11 on a Windows 7 machine
I have a small project that I put down in August and just picked up again today. The only changes I made today were a background color in the selected layout and adding browsers to the screen profiles (desktop, mobile, phone). I also changed the pixel sizes of aforementioned screen profiles, and saved, but ultimately thought better of it and changed them back. I don't know if that would have made any difference to this problem. (When I made the size changes RH told me to update the media queries, but I'm not using any... or at least none came up in the Manage Media Queries functionality.)
Then I re-generated the output, but the tablet and phone screen sizes are no longer displaying properly when I tested by changing the size of my desktop browser--there is a rather large "dead zone" browser size in which no content is displayed at all (which makes it almost seem like the "responsive" part of the output doesn't work), the internal navigation (forward and back buttons, and bar) is shoved up in the header bar, and no browser horizontal scroll bar appears so that I can scroll to see the edge of wide images. I mainly use IE but this occurred in Firefox and Chrome as well. The desktop display seems to work fine. (I'm so sorry I don't have screenshots now--I can provide some if needed.)
I wondered if this had something to do with my chosen "template" but a brand new project that used that same one (Theme1_Standard) didn't have any problems. Now, I also noticed that the template seems to have changed since I was last in Robohelp, because the unchanged template preview today was definitely not the same as the template from August. The Readme for the latest patch didn't mention anything that I thought seemed to be related.
Like I said, all I changed were a color, the screen profile browsers, and the screen profile sizes which I later discarded. I am completely at a loss as to what caused this and how to fix it. I feel like a complete dolt because it seems to be related to something I *DID* but retracing my steps has yielded nothing.
Thank you!
UPDATE
Still having this issue, but in poking around I discovered that some of the program files on my local machine were updated in mid-September (when it looks like the latest patch's ReadMe file was installed on my computer) and others were updated mid-October (the first time I was in RH since mid-August, though I didn't generate anything then). I don't know if this means anything, but to me it looks mildly suspicious. Thx.

Screenshots:
Internal navigation shoved up into the header bar (yellow on top of black, color changed here just to show this):
In tablet size, an extra wide image does not cause a horizontal scrollbar to appear anywhere at the bottom of the browser to scroll to the right side of the image (sorry this one is hard to see, but the image does go off to the right side of the screen):
Dead zone:
Content reappears at a much smaller size and a much larger size, but the top/bottom/and right-side text wrap is off:
(Again, above, notice no horizontal scroll bar despite the extra wide image.)
It may be of note that I can use a different template (e.g. Theme2_Government) and I don't have such problems. I guess this means there's something wrong with the template/layout in this project. Am I just going to have to reconstruct it?
Thanks,
S

Similar Messages

  • On Equium A100-337 WLAN connection security screen is not displayed correctly

    My computer use to connect to a specific wireless network without any problems automatically. However, now when trying to connect to the same network, the security key screen I am presented with is not the correct type. Instead of two lines of encryption there is only one. When I enter the correct password I get a message to say I am connected to the network but cannot access the Internet. The wireless router is working fine.
    Do I need to reset something on my computer or change a setting?

    Hi
    May I ask what wireless configuration tool do you use???
    Did you try to refresh or to reconfigure the WLan profile on the router and on the notebook?
    Try this. Disable the encryption on router and try to connect without the security settings. If it will work you can set the encryption settings back.
    You could also try to reinstall the WLan driver.
    By the way; did you use any firewalls??? Sometimes enabled firewall could has a bad influence on the WLan or internet connectivity.

  • Splash screen does not display correctly

    Hello everyone. I have a class which shows a spashscreen. When run from the main method it display the splash correcly.
    I have a login module. When the login is sucessful , I call the splashcreen module. Here the problem arises. It just gives me the white background. The image is not there.
    I also encounter this sort of problems when calling other panels from my mainpage. The panels have a background. When called for the first time they appear distorted. When a second time they are called( by clicking the menu button from my mainpage) everything displays correctly.
    I am very confused with the above problem because there is simply no error in the coding. I can't see where the problem lies.
    Please Please Help me! I'll be indepted to you all!

    This is my class that I've written that works fine. Feel free to use it.
    * SplashScreen.java created on May 14, 2003
    * Copyright (c) 2003 Rene Peters Consultancy.
    * This software is the confidential and proprietary information of Rene
    * Peters Consultancy ("Confidential Information"). You shall not
    * disclose such Confidential Information and shall use it only in
    * accordance with the terms of the license agreement you entered into
    * with Rene Peters Consultancy.
    package nl.renepetersconsultancy.util.gui;
    * An application to show a title screen in the center of the screen
    * for the amount of time given in the constructor. This class includes
    * a sample main() method to test the splash screen, but it's meant for use
    * with other applications.
    * @author Ren� Peters
    * @version 1.0 May 14, 2003
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.net.URL;
    import java.util.logging.Logger;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JWindow;
    public class SplashScreen extends JWindow implements Runnable {
    private Logger logger = null;
    private int minimumDuration;
    private String resource;
    private boolean keepRunning = true;
    private boolean waitForStop = true;
    private boolean done = false;
    * Constructor for the SplashScreen. Only used for initialisation. Nothing really happens yet.
    * @param resource Location of the image (jpeg, gif, png or xbm)to be displayed in the SplashScreen.
    * Image must be located somewhere on the classpath. E.g. "nl/petersconsultancy/planner/gui/logo.jpg".
    * @param minimumDuration The time in milliseconds the SplashScreen will be displayed, at least.
    * It can not be stopped before that. Values must be in the range [0, ->]. If smaller the 0 the will be
    * set to 0.
    * @param waitForStop Boolean to indicate if the object will be displayed after the minimumDuration has passed
    * by calling the "pleaseStop" method or if it will stop being displayed anyway.
    * background or the rest of the execution should hold for a while.
    public SplashScreen(String resource, int minimumDuration, boolean waitForStop) {
    logger = Logger.getLogger("nl.renepetersconsultancy.util.gui.SplashScreen");
         if (minimumDuration < 0) {
              this.minimumDuration=0;
         else {
         this.minimumDuration = minimumDuration;
    this.resource = resource;
    this.waitForStop = waitForStop;
    Thread thread = new Thread(this);
    thread.setDaemon(true);
    thread.start();
    * Check if the minimumDisplay time has elapsed already.
    public boolean isDone(){
         return done;
    * Request this from being displayed and have it removed.
    public void pleaseStop(){
         keepRunning = false;
    * Display the SplashScreen.
    public void run() {
    // Build the splash screen.
    if (resource==null) {
    logger.warning("The image to display in the SplashScreen is set to 'null'.");
    return;
    } else if (resource.equals("")) {
    logger.warning("The image to display in the SplashScreen is set to an empty string.");
    return;
    URL URLImage = this.getClass().getClassLoader().getResource(resource);
    if (URLImage==null) {
    logger.warning("The resource for the image to display in the SplashScreen can not be found.");
    return;
    ImageIcon imageIcon = new ImageIcon(URLImage);
    JLabel label = new JLabel(imageIcon);
    // Set the window's bounds, centering the window.
    // Take the dimension of the icon for reference.
    int width = imageIcon.getIconWidth();
    int height = imageIcon.getIconHeight();
    Dimension screenDimension = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (screenDimension.width-width)/2;
    int y = (screenDimension.height-height)/2;
    this.setBounds(x,y,width,height);
    JPanel content = (JPanel) this.getContentPane();
    content.add(label);
    // Display it while running for a while in the background.
    this.setVisible(true);
    try { Thread.sleep(minimumDuration); } catch (Exception e) {}
    done = true;
    if (waitForStop) {
         while (keepRunning) {
    try { Thread.sleep(100);} catch (Exception e) {}
    setVisible(false);
    this.dispose();
    public static void main(String[] args) {
    SplashScreen splash = new SplashScreen("nl/renepetersconsultancy/util/gui/images/Ape.jpg",500, true);
    while (!splash.isDone()){
    try { Thread.sleep(50000); } catch (Exception e) {}
    splash.pleaseStop();
    System.exit(0);

  • Outlook web login screen not displaying correctly on Exchange 2007 service pack install

    Hello everyone,
    I believe our exchange server installed a service pack 3 update and after rebooting the server, we noticed that the Outlook web access login screen is not displaying correctly.  The page looks white with some black X's (I think that's where the
    pictures/background images used to be).  We tried to restart the ISS service with no luck.  I would appreciate any help you guys can provide.
    Thanks,
    Brian Kourdou

    Hi,
    I have seen this issue in another similar thread, that issue was solved by re-creating the OWA virtual directory.
    Please try the following steps to solve this issue.
    Open EMC, navigate to Server Configuration -> Client Access, under Outlook Web App tab, double-click owa (default web site) properties.
    Then check InternalURL, ExternalURL, Forms-Based Authentication settings ect
    Open EMS, use Get-OwaVirtualDirectory get the list of virtual directories and identify the directory which is giving the problem.
    Remove it with this command
    Remove-OwaVirtualDirectory “owa (Default Web Site)”
    Now create it again with the following command
    New-OwaVirtualDirectory -OwaVersion “Exchange2007″ -Name “owa (Default Web Site)”
    Then configure the “owa” virtual directory settings like InternalURL, ExternalURL, Forms-Based Authentications etc… & check the OWA by logging with some test users.
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • Slideshow images will not display correctly on mobile phone

    Hello,
    I have a website which I used several slideshows, in areas I would typically just used a rectangle and fill with photo.  This was done because my client wants to be able to update the images through business catalyst.  Unfortunately, when viewed on a mobile phone (I am using iOS 7) the slide show images do not display correctly.
    What can be done to fix this?  Is there another workaround I should try?
    Thanks!

    Hi Nicole
    The images that you are using on parties page are stretched , if you check the image frame you can see that.
    As a result the image frame is stretched over the side image , they are not showing properly. If you resize from Muse end , then also it would not be fixed because Muse remembers the image size as you have inserted and when viewed , Muse stretches the image to original size as how it was inserted.
    Please resize the images outside Muse , use any image editor like Photoshop and then use the exact dimension of the image frame on page.
    This would resolve the issue.
    Thanks,
    Sanjit

  • Page is not displaying correctly on mobile

    Hey. Can anyone help me to see why my page is not displaying correctly on mobile.
    www.highestgoodclothing.com/phone/videos.html
    The page displays correctly on a desktop.
    On mobile there is a right margin that I do not want there. All of my other mobile pages seem to be working just fine. How do I fix this? Thanks

    Hi,
    I think it may be <div class="html5gallery-viral-0"> (contains the social media buttons) // screencasteu.worldsecuresystems.com/AP/2013-08-01_1033.png
    It's the only element that isn't in sync with the other elements on page, when compared to home.html for example.
    Kind Regards,
    Alex Pavelescu

  • Screen not displaying correctly. It keeps moving as the mouse moves

    Screen not displaying correctly. It keeps moving as the mouse moves

    Your problem is not the same as that of the original poster of this thread, and it can be very confusing for everybody if we try to answer more than one question in each thread.
    In order for us to give your problem our undivided attention to try to solve it, would you kindly start your own thread, describing the trouble you are having in the fullest detail, including completing your details to show what Mac or iDevice you are using, what operating system, and what version of the application in question. Please remember to post in the forum relevant to your hardware or version of OS X.

  • Firefox is not displayed correctly on USB-screen

    Firefox 4.0 is not displayed correctly on USB-screen (Samsung SyncMaster LD 190). Firefox 3.6 was displayed correctly.
    looks like an incompatibility problem between UbiSync and FF 4.0

    You can try to disable hardware acceleration in Firefox.
    *Firefox > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    If you have made changes to Advanced font settings like increasing the minimum/default font size then try the default minimum setting "none" and the default font size 16 in case the current setting is causing problems.
    *Firefox > Preferences > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow pages to choose their own fonts.
    *Firefox > Preferences > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but to use an extension to set the default page zoom to prevent issues with text not being displayed properly.
    You may have zoomed the page(s) by accident.
    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl/Command+0 (zero))
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Why is the map not displaying correctly on "find my phone"  I am getting large grid squares on the map

    why is the map not displaying correctly on "find my phone"  on my computer.  I am getting large grid squares on the map.  I have tried deleting my history, tried zooming in & out, but the grid squares won't go away..

    Welcome to Apple Support Communities
    It means that it is not connected to the Internet, so it may be turned off. Another option would be that somebody has resetted it to default settings and has changed the Apple ID, being impossible to track your son's iPhone. Anyway, report it to the police because it is the only thing you can do at the moment

  • My mini i pad 2 retina display screen is not work correctly after two days of buying appear some gray line on screen un furtunately i live in iran and i havnot access to any i pad store please guide me

    My mini i pad 2 retina display screen is not work correctly after two days of buying appear some gray line on screen un furtunately i live in iran and i havnot access to any i pad store please guide me

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

  • HT4061 my screen is not displaying it is black.  The phone rings but nothing displays, this is the same when I receive a text

    My screen is not displaying it is black.  The phone rings but nothing displays, The same is happening when I receive a text.

    Hi there Mrunner,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    -Griff W.

  • Screen not displayed correctly using InteractiveViewer

    I have created a report that prompts the User for Start and End dates.  When the Prompt dialogue box is displayed using interactiveViewer the images are not displayed correctly.
    Does anybody have a fix for this problem ??
    Example attached.
    Ron Smith
    DBA

    My guess is that the toolbars don't show up when you view the reports either.
    There should be a virtual directory called 'crystalreportviewers' on your webserver. This is where you will find all the images supplied by the viewer.
    Right click on the image that is having problems and select properties.  This should give you location of the viewer.
    You should be able to trouble shoot this way be comparing the actual path with the real path of the missing images.
    Hopefully this will help.
    <a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/robhorne</a>

  • Div header tag - not displaying correctly

    I thought I had resolved an issue with a div header tag, but - as per a reply in my 'text as gif' thread, possibly not!
    The header contains three images; a logo, a banner (text), and a picture of a castle.  These should display in a  line.
    When I first set it up, I realised that the castle picture was normally ending up below the other two on smaller screens etc. 
    So I changed the dims for my div container from min 760px/max 1260px, to a set width (960px).  I then rejigged the three images so the widths were within 960px, with some to spare for the spacing (total widths of the three are 900: hspacing another 20 pixels).  There is no padding/borders defined.  Therefore the total should be well within the 960 width (?).
    It looks fine on my PC (widescreen); in 3 browsers, using the restore down menu command (ie to make it not full screen), and by  using the Dreamweaver multiscreen preview (phone, tablet, smaller desktop).  It wasn't ideal (as scrolling required), but at least meant the header (and the rest of the screen) displayed correctly, ie in a horizontal line (and then sidebar - content - sidebar).
    If I set my container width much smaller, most of the screen will be green (the body) in big screens.
    If I rejig the dimensions, it's all a bit hit and miss (and why don't the current dimensions work?).
    Do I need to define the width of the header (as well as the container)?
    Help!  Thank you
    http://hertfordcarnival.org.uk/dev/Index.html

    Hi there, I started off using one big image, but it didn't look right with regards to size and placing (ie I wanted the logo on the left edge, the castle on the right edge, etc). When you say slice, what do you mean?  One image in from fireworks, and then ... ? Thanks again
    Date: Wed, 7 Dec 2011 01:37:10 -0700
    From: [email protected]
    To: [email protected]
    Subject: Div header tag - not displaying correctly
        Re: Div header tag - not displaying correctly
        created by osgood_ in Dreamweaver - View the full discussion
    Datafan55 wrote: I thought I had resolved an issue with a div header tag, but - as per a reply in my 'text as gif' thread, possibly not!  Why not just use one big image  then you wont have a problem of with the alignment. Certainly don't use 'vspace' and 'hspace' to position the images. If you want to use 3 seperate images start by setting them us as one complete image then slice it into 3 images. Then use the following css to position the images side by side. #header img If the total sum of the width of the images is the same or does not exceed 960px then the images should be in a nice row side by side. They will actually sit side by side without using 'float' but you'll get a small gap between them which will be added to the sum of the width which will exceed 960px causing the third image to drop onto the next line.
         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/4068499#4068499
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4068499#4068499. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver 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.

  • JPG images not displayed correctly in Bridge and Photoshop (Mac OS)

    (Note: I have copied the content of this query from the Creative Suites forum where I originally opened it.)
    I am using CS4 under OSX 10.4.11 on a PowerMac G5 Quad with 23" Apple cinema display. Images which have been captured as JPG are displayed fine by Preview, but when opened in Bridge, Camera Raw or Photoshop. the colours are all "washed out". The attached screen capture should give an idea of the difference, with the upper being Camera Raw (image settings) and the lower being Preview. My monitor has been calibrated and I'm using sRGB IEC61966-2.1 colour space in Camera Raw and Photoshop. The colours displayed by Preview are pretty close to "real life". I find it virtually impossible to adjust the colours in Photoshop to get back to anything similar.
    After opening the image in Photoshop without adjustment, and Save As JPEG with embedded color profile, Preview displays the new image the same as Photoshop. Save As JPEG without embedded color profile, and Preview displays this copy just like the original. It seems that Photoshop is making different (incorrect) assumptions about what color space to use when there is no embedded color profile. Shouldn't it assume sRGB like virtually everything else (http://en.wikipedia.org/wiki/SRGB)? Or is its interpretation of sRGB incorrect? How can I fix this?
    Re: JPG images not displayed correctly in Bridge and Photoshop 

    xxxxyyyyz wrote:
    …If there is someone out there who has experience of obtaining decent colour management in CS4 on a Power PC, I would really like to know how you achieved it.
    That would be yours truly, and I hasten to reply because I may have some insights that can help you too.
    Just get it it out of the way, here's my setup:
    Photoshop 11.0.2 ("CS4"); VersionCue disabled and uninstalled.—2.5 GHz Power Mac (PPC) G5-Quad; 16GB RAM; mutant, flashed 550MHz nVidia GeForce 7800GTX 1,700MHz 512MB VRAM; ATTO ExpressPCI UL5D LP SCSI card; Mac OS X Tiger 10.4.11 and Leopard 10.5.8 boot drives; Spotblight, Dashboard and Time Machine permanently disabled; dual 22" CRT monitors; USB wireless 'n' available but connected to the Internet via wired Ethernet; 1 FW flatbed scanner; 2 SCSI scanners (one tabloid-size transparency scanner and a film scanner); various internal & external HDs; FW Epson 2200 and Ethernet Samsung ML-2850ND printers; 2 X Back-UPS RS 1500 XS units.
    I can unambiguously and in good faith represent to you that my color management, from capture to print, is as spot-on as anyone with any kind of setup can hope to achieve.  Unequivocally and without qualifications.
    Now, first things first:  Forget about trying to synchronize color management across the point applications lumped together only by Adobe marketing fiat into a variety of meaningless "creative suites".  Concentrate on Photoshop.  Do not try to use Bridge to synchronize anything.
    The "suites" are a totally artificial construct created by Adobe bean counters and marketing types.  The point applications (i.e. the individual programs clumsily bundled together, e.g. Photoshop, Illustrator, InDesign, etc.) are developed independently by separate engineering teams that are not only not in the same building, but in different cities, different states of the American Union, and even in different countries.  They have very little communication among them, if any, as evidenced by repeated posts in these forums by Photoshop engineering staff urging us, the end users, to let the other teams know in their own forums that a given problem exists and is actually affecting our work.
    Enough said about the cause of the problem.  The end result is that Color Management is at very, very different levels of progress and sophistication in each individual point application, with only Photoshop fully entitled to be considered state of the art.
    Secondly, a disclaimer:  I have been hanging on to my CRT monitors and take care of them as Jascha Heifetz used to take care of his Stradivarius.  I don't know what I will do if I manage to outlive the usefulness and accuracy of my CRTs (unlikely at this point).  I have despaired in futile efforts to bring the luminosity of any LCD monitor down to where I would feel comfortable calibrating and profiling it.  I believe my monitors are the foundation of my color management efforts.
    Especially if you have one of the extreme wide-gamut LCD or LED monitors, you'll face an uphill battle. 
    Be careful to avoid any version 4 icc profiles, whether canned or generated by your calibration software.  Stick to version2 icc profiles.  Ask the manufacturer of your calibration software/hardware if in doubt.
    Here are some not-too-recent, but thoroughly representative screen shots of the calibration results I obtain with my monitors, which I calibrate and profile often and regularly (I validate the calibration at least several times per month).
    In a nutshell, my color management practices and settings mirror those described by Bruce Fraser, Jeff Schewe, Andrew Rodney and Gary Ballard's site.  I have learned from all of them.
    My working color space is ProPhoto RGB.  I choose to work with PSD and PSB files.  As a long-time, rabid JPEG hater, I only rarely deal with JPEGs, using them sporadically to illustrate a point in this forum or elsewhere in the web.  My main output consists of prints.
    I only deal with tagged image files (files with an embedded color profile) and often recommend beating up with a baseball bat any moron that hands you an untagged file—figuratively of course, but I find the expression gets my point across unambiguously.
    Following is a screen shot of some of my pertinent settings:
    Note that I have never bought into the "suite" concept myself.  I do have and routinely use Adobe Illustrator 10.x, InDesign 2.x and Acrobat Professional 8.x, but they are all older, independent versions of each point application, licensed at different times.
    Be further advised, that the answer to many problems offered by Adobe engineers often is not to install VersionCue, or uninstall it, or at least disable it.
    Also, as outlined at the beginning of this post, concentrate on Photoshop, not on synchronizing applications that can't really communicate with each other, despite the claims of Adobe marketing hacks to the contrary.
    One big caveat, do not fall into this trap:
    xxxxyyyyz wrote:
    …I believe my problem has nothing to do with my monitor profile, for several reasons, but…
    …It seems extremely unlikely to me that…
    You either want to learn, or you don't.  You either want to solve your problems, or you don't.
    When you start arguing instead of studying, questioning advice instead of following it and detecting where you went wrong, you're on the right track to nowhere.  That attitude will get you there fast.  Remember you are the one with the problem, and only you can acquire the discipline to learn how to solve it.
    Go ahead and ask me anything that is not clear, just don't argue with me please, and don't tell me why you think Fraser, Rodney, Ballard and I are wrong.  You see, I am not experiencing any problem that needs fixing.  I have an interest in helping you, but not in hearing about your speculations, theories or conclusions.
    Good luck.
    Wo Tai Lao Le
    我太老了

  • HTML Form Not Displaying Correctly in Outlook 2010 (Exchange 2013)

    Hello,
    I have recently migrated to Exchange 2013. Clients are still using Outlook 2010. There is an application that automatically sends an HTML form by email for the users to fill in. The form consists of radio buttons, text areas and drop down list. However,
    in Outlook 2010, the form is not rendered properly.
    When I clicked the "If there are problems with how this message is displayed, click here to view it in a web browser" link, the email is opened in
    IE and the form is displayed correctly.
    I also tried opening the same email in other clients, such as Thunderbird, Apple Mail Client and in mobile phones - the form is displayed correctly. I wonder
    why it fails to do so in Outlook 2010. The user mentioned that this does not happen in Outlook 2003 and prior to migration (I used Exchange 2010 previously). I have also tried using OWA, but the form does not display correctly
    Any help?
    Note: I can't attach any images or links as it is mentioned that my account is not verified yet. I will post some screenshots when it is possible to do so

    Hi 
    Outlook 2007 or newer use Microsoft Word for their HTML engine.
    You can refer this page http://www.campaignmonitor.com/css/ shows
    many things that do not work in different clients.I think Someone needs to re-code
    the HTML form to make it work in the current versions of Outlook. You can try formatting with text and HTML and see the results.
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

Maybe you are looking for

  • How do I combine all my contacts on different devices?

    I have an iMac (running Lion), an iPhone 4S and a New iPad. All are software updated. On my Mac, it appears that I have three different contact lists: All Contacts,iCloud Contacts and iMac Contacts Each of these have some contacts, but none of them h

  • Nokia Lumia 520- Automatically restarts and goes i...

    Hi, My Nokia Lumia 520, bought yesterday automatically restarts itself and goes into flight mode. I then have to remove the battery and restart (normal restart doesnt work) to make it correct. It has happened atleast 10 times since yesterday. Any sug

  • I found ORA-00001 ERROR but there is not Unique Constraint or Primary key

    Tell me is the error in following code declare      cursor c1 is      select a.cust_no as loan_id,a.cust_no as instrf,152 as l_code,cor_brwr,      a.name,21 as pro_id,FRST_CT_DT,      ADD_MONTHS(C.ct_DaTe,c.PERIOD_MM)as maturity,'S'as secured,irr as

  • Po Released

    Hi All, Release Producure is not Re actvate at time of modification of PO if total amended value is less than Original value. Please suggest if any customization is available for this. Thanks in advance........... Sanjay

  • Strange thing happening

    hi friends, I'm not able to understand what's happening with the already Executed JAR file is not loading Archived class files even when the path is defined in the CLASSPATH variable but the same works fine when the program is executed with the main