Layout problem for small devices

I have created a site using a three column liquid header and a template using it for almost all my pages.  The sit is www.ituna.ca  - views fine for me now but when I try to view on an ipaad or ipod, the page does not display correclty at all.  Where did I go wrong and how can I fix it.
Thanks,
Pat
The css is below:
@charset "utf-8";
body {
background: #4E5869;
margin: 0;
padding: 0;
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
line-height: 1.4;
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
h1, h2, h3, h4, h5, h6, p {
margin-top: 0;  /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px;
font-size: medium;
text-align: left;
h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.6em;
font-weight: bold;
color: #000;
letter-spacing: 0.2em;
.container .content #maincontentleft {
float: left;
width: 50%;
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
border: none;
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
color:#F60;
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
a:visited {
color: #090;
text-decoration: underline;
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration: none;
color: #F90;
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 90%;
max-width: 1260px; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
float: none;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
background-image: url(PNG%20and%20PSD/layout5.jpg);
background-repeat: no-repeat;
background-color: #FFF;
.headerdiv {
padding-left: 15%;
background-image: url(PNG%20and%20PSD/greengrass.jpg);
/* ~~ These are the columns for the layout. ~~
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
.sidebar1 {
float: left;
width: 15%;
padding-bottom: 10px;
text-align: center;
background-color: #FC0;
background-repeat: repeat-x;
.content {
width: 50%;
float: left;
padding-top: 10px;
padding-right: 0;
padding-bottom: 10px;
padding-left: 20px;
background-color: #FFF;
.nocolumncontent {
float: left;
width: 80%;
margin-left: 40px;
.container .contentnocolums {
width: 80%;
margin-left: 40px;
.sidebar2 {
float: right;
width: 33%;
padding: 10px 0;
background-color: #FFF;
text-align: center;
.container .sidebar2narrow {
width: 10%;
float: left;
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
font-size: 1em;
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
list-style: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
margin-bottom: 15px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 3px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-bottom-color: #FFF;
text-align: center;
ul.nav li {
border: 2px solid #FFF;
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
padding: 5px 5px 5px 15px;
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
text-decoration: none;
color: #000;
background-color: #FFF;
font-weight: bold;
border: 4px outset #FFF;
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
color: #FFF;
background-color: #FC0;
/* ~~The footer ~~ */
.footer {
padding: 10px 0;
position: relative;/* this gives IE6 hasLayout to properly clear */
clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
background-color: #FFF;
/* ~~miscellaneous float/clear classes~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
float: left;
margin-right: 8px;
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
.container .content #maincontentleft {
width: 45%;
h3 {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #F60;
h6 {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #333;
font-weight: normal;
.floatrightrecreation {
float: right;
width: 400px;
.realestateheadings {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FC0;
background-color: #333;
.REALESTATECONTACT {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
font-weight: bold;
color: #666;
text-align: center;
.center {
text-align: center;
font-size: small;
.container .sidebar1 div {
background-color: #FFF;
text-align: center;
.listitems {
list-style-position: inside;
list-style-type: square;
.container .sidebar2 h2 em no bold {
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
color: #333;
font-size: .8em;

Using Adobe's CSS templates put you behind the eight-ball from the
start. The tutorial linked to might have been a fairly good and reliable
tactic last year, but I'm afraid it might be a bit obsolete. If you
decide to deploy media queries, please read all of the comments
thoroughly and not just the tutorial.
If you'd like to use a more bulletproof method to support small devices,
we do have a product that will help you:
http://www.projectseven.com/products/templates/pagepacks/cssbuilder/index.htm
Here are the example pages (do view the code):
http://www.projectseven.com/products/templates/pagepacks/cssbuilder/csspbm_11.htm
You can read the user guide first, if you like:
http://www.projectseven.com/products/templates/pagepacks/cssbuilder/help/guide.htm
Al Sparber - PVII
http://www.projectseven.com
The Finest Dreamweaver Menus | Galleries | Widgets
Since 1998

Similar Messages

  • Does any one know about the small Hardrive that "The Power Company" is producing, sponsored by Indiegogo, for small Apple mobile devices (iPhones, iPods, etc,).  Do they work or cause problems for the device or iCloud storage?

    Does any one about the small hard drive that "the Power Company" is bringing out as a crowdsourced project by Indiegogo?  Does it work, does it cause problems for IOS, iPOD Touch or iCloud?

    I have not heard that mentioned here before. What does the Indiegogo page say?

  • ISE CWA redirection problem for Apple devices

    Hi,
    I'm testing some guest scenarios (CWA) in my lab using ISE1.3 and WLC2504 (7.6.130).
    I have noticed that redirection to ISE portal doesn't work for apple devices (iOS 7 and later).All other devices like laptops,androids etc work fine.
    Seems that the workaround on WLC that bypasses the CNA on iDevices doesn't work in my case.The device tries to open the ISE portal and shows just a blank page (attached photo)
    The problem doesn't appear for devices with iOS 6 but only for newer versions.
    I've also tried with version 8.0 on WLC without success.
    Any advise?
    Regards. 

    Captive portal/wispr support for apple ios7
    CSCuj18674
    Description
    Symptom:
    When attempting to access the Guest Portal with an Apple iOS 7 device while the WLC "Captive Portal Bypass" feature is enabled, the web sheet on the device still appears, preventing the user from continuing the flow.
    Conditions:
    The Apple device is running Apple iOS 7.
    Workaround:
    In the ACL on the WLC used for captive portal redirection and exemption of special traffic for the Guest Portal, add exemptions for the IP resources that resolve from "www.appleiphonecell.com" and "captive.apple.com" FQDNs.
    IMPORTANT NOTE: These IP addresses are associated with the FQDNs of "www.appleiphonecell.com" and "captive.apple.com" and are subject to change by the entities hosting those domains. If the IP addresses do change, the ACL would need to reflect that.

  • Fixed Layout EPUB - for multiple devices

    We are looking to create an EMAGAZINE or EPUB with a fixed layout for employee benefit guides that will be viewed on multiple devices (desktops, laptops, tablets, and mobile - both PC and MAC devices) and I am wondering what is the best style to use to accomplish this? With the new fixed layout EPUB, it creatively meets our needs, but will it work on a PC? Or tablet that is not Apple?
    What are the best options for a picture heavy/table heavy online "book" created in InDesign?
    Thanks,
    Jamie

    Hi Jamie,
    Yes you can view your fixed layout epubs on a PC/tablet, there are multiple fixed layout readers available on devices. For PC there is Readium that is a Chrome extension.
    Thanks
    -Anshul

  • Layout problem for Drill down ALV Report

    Hello Everyone,
                           I have developed a ALV drill down report using the method G_GRID->SET_TABLE_FOR_FIRST_DISPLAY. The problem is what ever layout i save for the primary list 'Screen 100' is effecting my secondary list 'Screen 200'.  User need to save both Screen 100 and Screen 200 layouts independently without affecting each other.
    I am calling  screen 100 as below,
    Call metthod g_grid_100->set_table_for_first_display
      Exporting
       i_Save                                     = 'A'
       is_layout                                 =  ls_layout
       is_Variant                                =   ls_Variant
      Changing
       it_outtab                                  =  ct_poitems
       it_fieldcatalog                           =  lt_fieldcat
      Exceptions
       Invalid_parameter_combimation   = 1
       Program_error                            = 2
       too_many_lines                         = 3
       others                                       = 4.
    Could any body suggest me a way to do this..
    Thanks in advance.
    Regards,
    Shyam.

    Hi,
    Use multiple Layout structure (each alv have its own structure) .
    Note the use of disvariant-log_group .
    DATA: gs_disvariant_1 TYPE disvariant ,
               gs_disvariant_2 TYPE disvariant .
    * Layout-Logical groups
    CONSTANTS: gc_log_group_1 TYPE disvariant-log_group VALUE 'ALV1' ,
                            gc_log_group_2 TYPE disvariant-log_group VALUE 'ALV2' .  
    INITIALIZATION.
      PERFORM at_initialization .
    FORM at_initialization .
    DATA: vari TYPE disvariant-variant .
      PERFORM alv_variant_get_default USING gc_log_group_1 CHANGING gs_disvariant_1 vari .
      PERFORM alv_variant_get_default USING gc_log_group_2 CHANGING gs_disvariant_2 vari .
    ENDFORM.
    FORM alv_variant_get_default
      USING
        log_group TYPE disvariant-log_group
      CHANGING
        disvariant TYPE disvariant
        variant    TYPE slis_vari .
      DATA: ls_disvariant TYPE disvariant.
      ls_disvariant-report = sy-repid .
      ls_disvariant-log_group = log_group .
      disvariant = ls_disvariant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = 'A'
        CHANGING
          cs_variant = ls_disvariant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        disvariant = ls_disvariant.
        variant    = ls_disvariant-variant .
      ENDIF.
    ENDFORM.                    "alv_variant_get_default
    Later....
       CALL METHOD gui_alv_grid_1->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_1
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_1.
      CALL METHOD gui_alv_grid_2->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_2
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_2.     
    Regards.

  • Layout problem for Customised SAP Script  ZQM_QCERT_01

    hey guys,
                     i need to generate a customised layout for QM_QCERT_01 used in QC21 tcode.
    I had copied QM_QCERT_01 INTO ZQM_QCERT_01 but after making changes in the HEADER,the table goes to second page and the alignment of all the fileds in table also gets changed. What should i do in this regard ??
                 Pls reply ,,,,<removed by moderator>
    Thanks in Advance,
    Ajay
    Edited by: Thomas Zloch on Nov 21, 2011 11:52 AM

    With the information you provided, I think the easiest thing to do is to create a new copy. Or then you could check the differences by comparing the old and new smartform.

  • Been using an Avastor HDX-800 for storage and backup, also a SUPERDISK for smaller stuff; recently the SUPERDISK does not appear on the screen, and the light blinks while you hear it spin, also the Avastor has started to have the same problem, both USB

    Been using an Avastor HDX-800 for storage and backup, also a SUPERDISK for smaller stuff; recently the SUPERDISK does not appear on the screen, and the light blinks while you hear it spin, also the Avastor has started to have the same problem, both USB conncected, both worked well before, but both now spinning, blinking, and not showing up on the screen as before,
    Interestingly they both appear in the System Profiler, but just not working the same as before
    I have tried other USB ports, but the same responce,

    yes I did reset the PRAM, but no benefit, still the same problem
    my usb devices are:  keyboard, mouse, printer, SD-USB-M3, and LaCie d2 DVDRW:
    the mouse and printed are plugged into the keyboard: i have tried to move, these around, and have even tried just the mouse, printer and SD-USB-M3, but still the same problem
    here is a cut and paste of the current  "System Profiler>Hardware>USB"   (usb device tree)
    USB Bus:
      Host Controller Location:          Built In USB
      Host Controller Driver:          AppleUSBOHCI
      PCI Device ID:          0x0026
      PCI Revision ID:          0x0000
      PCI Vendor ID:          0x106b
      Bus Number:          0x18
    Hub in Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x1002
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    SuperDisk USB 120MB drive:
      Version:          0.0e
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Imation
      Product ID:          0x0002
      Vendor ID:          0x0718
    Hub in Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x1002
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    SuperDisk USB 120MB drive:
      Version:          0.0e
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Imation
      Product ID:          0x0002
      Vendor ID:          0x0718
    USB Bus:
      Host Controller Location:          Built In USB
      Host Controller Driver:          AppleUSBOHCI
      PCI Device ID:          0x0026
      PCI Revision ID:          0x0000
      PCI Vendor ID:          0x106b
      Bus Number:          0x19
    LaCie d2 DVDRW USB:
      Capacity:          451.76 MB
      Removable Media:          Yes
      Detachable Drive:          Yes
      BSD Name:          disk2
      Version:          0.00
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          LaCie
      OS9 Drivers:          No
      Product ID:          0x1011
      Serial Number:          FFFFFFFFFFFF
      S.M.A.R.T. status:          Not Supported
      Vendor ID:          0x059f
    LaCie d2 DVDRW USB:
      Capacity:          451.76 MB
      Removable Media:          Yes
      Detachable Drive:          Yes
      BSD Name:          disk2
      Version:          0.00
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          LaCie
      OS9 Drivers:          No
      Product ID:          0x1011
      Serial Number:          FFFFFFFFFFFF
      S.M.A.R.T. status:          Not Supported
      Vendor ID:          0x059f

  • The backup files for my devices are saved to my internal hard drive. I have a small internal hard drive and would like them to be saved to an external drive. How can I change where iTunes automatically backs up to?

    The backup files for my devices are saved to my internal hard drive. I have a small internal hard drive and would like them to be saved to an external drive. How can I change where iTunes automatically backs up to?

    This has nothing to do with iTunes as iTunes provides no way to move or relocate the backup files.
    A search of google or the fourms would reveal ways to create a folder link to relocate the physical location where the files are stored.

  • Hi, I have small problem, for some time in music area I had two folders to use 1. Apple loops for soundtrack pro 2. Final Cut pro sound effects now both are gray and with out content may I know what happend

    Hi, I have small problem, for some time in music area I had two folders to use 1. Apple loops for soundtrack pro 2. Final Cut pro sound effects now both are gray and with out content may I know what happend

    I just went through this and it appears that my Focusrite Saffire was the culprit. I connected all the outputs on the focusrite according to the way the jacsk on the back were labeled and then set up the multichannel speaker setup to match. Then I went into STP, created a pink noise clip and panned it around, the LFE, center and rears were not in the right place.
    I reconnected the hardware to match the 5.1 pan pot in STP then changed the multichannel speaker setup to match. Everything appears to be correct now but I would have loved to have been able to just assigned the output busses to correct outputs in the saffire.
    Next step is to pan that pink noise around with my SPL meter to calibrate the room.

  • Save for web & devices CS3 Windows problem

    I have been having this problem for a few days now. I try to hit Ctrl+Alt+Shift+S to save for web and devices, and nothing comes up. So I click the file menu and I see the option is grayed out. I thought resetting itwould help, but it keeps happening, then somebody told me it was the size of the picture, but that can't be it, because I couldn't save a picture 5"x5", and that isn't too big. I have a feeling it may be the color settings, but I don't know anything in there, so assistance would be appreciated.

    curt y wrote:
    Go to Image/Mode in PS and see if it is 8 bit and RBG color and change it needed.  Many function don't work with 16 bit image.
    Save for Web & Devices does though, so it's not that.
    Maybe a reset of the Save for web preferences is called for.
    See http://forums.adobe.com/message/1661425#1661425
    (The FAQ is actually for CS2 (!!) but should work in principle with CS3)

  • I have to send large files like 5MB or biger via mobile phone, but in that cases phone is telling mi to plug in power. And when I do that, there is no problem to send the file. For smaller files there is no problem. How can I solve the problem? Because wh

    I have to send large files like 5MB or biger via mobile phone, but in that cases phone is telling mi to plug in power. And when I do that, there is no problem to send the file. For smaller files there is no problem. How can I solve the problem? Because when I'm not at home I can't plug in the power.

    hi,
    I am sending file from server to client i.e client will request for a file and service will send it back....... no socket connection is there...I am using JBOSS and apache axis.
    pls help me out.....
    Rashi

  • CS4 using Save for Web & Devices Problem

    I choose Save for Web & Devices. Select .jpg as file type but on bottom left under preview it says GIF. And I cannot reduce the resolution quality using the slide bar. It always says GIF and file size stays the same.   Can anyone tell me how to fix this?  It's only been happening the last few days. Worked fine before.  Oh and the file I am trying to save is 72dpi RGB less than 200px x 200px.  So don't think it's a file settings issue.

    Thanks for the response.
    The background is transparent and will end up on a white background eventually.
    I tried to make it clear in Dreamweaver by scaling it and it did seem to improve it somewhat. But it still doesn't look like the clear copy in Illustrator that I started with...
    I also need to be able to embed this in a Word document to print for a hardcopy manual.
    I had this same problem with Freehand a few years ago.

  • Lotus Traveler Address Encoding for Apple Devices Problems with Z10

    Hi,
    we have problems with the Lotus Traveler Address Encoding for Apple Devices IBM Notes and Domino wiki
    We are running Traveler 9.0 with BES 10.1 and 10.1.0.2354 on the Z10.
    When composing a new mail addresses from our Domino NAB are shown like this:  [email protected] instead of the name. It seems to me that name search is first looking to the Internet address field in the Domino NAB. In our case this field is empty (and cannot be filled with an address). If the field is empty, the User name or the Short name field seems to be used. This fields are filled with Domino like names like John Doe/City/Company. The Traveler Server will convert these names (see link above) and the Device (Z10) should only show the common name instead of the converted name.
    This is not working on our Z10s. The converted name is always shown like [email protected] and you don't know the real name.
    Is the problem known? Any workarounds?
    Edit: Further investigations have shown that the conversion works if you use an address in the mailbox the first time. If you use it later again, it is coming unconverted from the address chache. Also if you perform a remote search from the contacts app the converted name instead of the common name is shown.
    Regards
    Nico

    Hi Friend,
    While your idevices still having apps downloaded by the old Apple ID, Apple Store will ask you for the old Apple ID and password to updated them. But, if you delete all apps downloaded by the old Apple ID, then download again by the new Apple ID, Apple Store will not ask you anymore for the old one.
    Hope it helps

  • "There is a problem with your device,We're sorry the device you connected may be damaged and cannot be activated for service. "

    My problem is after i did a restore on my 32gb ipod touch i now get a error on itunes that says "There is a problem with your device,We're sorry the device you connected may be damaged and cannot be activated for service. " Please help

    In the ipad discussion forums there apparently is a HUGE problem with people not being able to update to ios 4.3.3, it apparently locks up their devices and they are also getting the error "there is a problem with your device".... some are reporting the same problem with their ipod touch as well... it looks like it's a global issue
    The forum is in the ipad section under the title of "There is a problem with your device".
    I have dodged a bullet on this one since i have not updated my ipod's or ipad in the last couple of days.... i will hold off syncing to itunes until this issue is fixed... good luck, and spread the word if you can to get apple to listen

  • HT5642 Upgraded this morning. All worked fine for about 30min then "no service". Still the same problem and a reset of the device only fixes the problem for 15min. then we are back to no service?? When will apple fix this???

    Upgraded this morning. All worked fine for about 30min then "no service". Still the same problem and a reset of the device only fixes the problem for 15min. then we are back to no service?? When will apple fix this???

    Tried to reset network settings ...only fixes it for 15min. Did a firmware restore and a clean new phone setup. no settings restore. still have network service after around 60min. still running 6.1. i do get a prompt that i have to update settings to LTE. Have not excepted the settings as yet. Cellular data is still set to 3G....

Maybe you are looking for

  • How to read  xml with deep  structure into intarnal table.

    Hi, Could you pls any body provide xslt code for deep structure  convert into internal table. sample xml file: - <ns0:CREATIONOFCONTRACT xmlns:ns0="http://BPCreationXSD.CreationOfContract"> - <CREATIONOFCONTRACTDATA>   <RequestType>L0011</RequestType

  • Sample java code for web service calling

    Hello, I need to call the web services for adding/updating records on Oracle On Demand Entities. In particular i need a sample code in java language that explain how to append the sessionid to the SOAP request when calling the web service. thanks in

  • Test on iPad is free or not ?

    I made it all but how can I test it on my iPad for free ? I tested on the Content Viewer, I posted on my workspace via Folio builder on acrobat.com and verified it, but how can I see it on my iPad ? Do I have to pay a subscription even for my self ?

  • How do i make a new file created appear in the Application Navigator?

    I am doing an extension to JDeveloper..How do i make the new file that the user has created to appear in the Application Navigator? What methods can i use? These are my codes...but it does not work still... File file = new File(dir ,fileName); file.c

  • I installed a music downloader Imesh which has taken over my Firefox browser, how can I get rid of it?

    I installed a program called iMesh to play music on my computer via the internet. When I used Firefox now the search windows have been taken over by 'iMesh Web Search' and they don't bring up the same lists when I searched Firefox previously; e.g. it