Coming Soon page for iPhone

any chance that apple would update the Coming Soon page for iPhone in other countries, coz the list seems to be the exact same since forever !!

Hi
you may do better in the Developer or even the iWeb sections - but possibly the iPhone is designed to display regular (much wider than 480) pages w/o scrolling, so defaults to 'squeezing' yours to suit that.

Similar Messages

  • How to create SEO friendly, responsive "Coming Soon" page? [was:Help please! I am very new!]

    Hi Guys,
    First off, this is my first post, and will be one of many, as the Dreamweaver bug his bitten, and bitten hard!
    I am new to web design, and am learning Dreamweaver and want to become a web designed after hours as a second job/hobby.
    I am currently (unsuccessfully) working on getting a "coming soon" page up and running.
    I would like the image to be scalable - however then all my text goes everywhere. I cant have it as a image as then Google doesn't index it, as well as i need to have a hyperlink in the body of the text.
    If someone could point me into the right direction, I would be forever thankful!
    I have attached the code:
    <html>
    <head>
    <title>coming soon page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
    body {
              background-image: url(background.jpg);
              background-repeat: no-repeat;
    #content {
              position: absolute;
              left: 70px;
              top: 468px;
              width: 912px;
              height: 120px;
              z-index: 1;
              font-family: calibri;
              font-size: 30px;
              color: rgba(255,255,255,1);
    a:link {
              color: rgba(255,255,255,1);
              text-decoration: none;
    a:visited {
              text-decoration: none;
              color: rgba(255,255,255,1);
    a:hover {
              text-decoration: none;
              color: rgba(255,255,255,1);
    a:active {
              text-decoration: none;
              color: rgba(255,255,255,1);
    </style>
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- Save for Web Slices (coming soon page.psd) -->
    <div id="content">The webstie for Hurstar Investments is currently under construction and will be live shortly. If you have any enquiries in the interim, please email us at <a href="mailto: [email protected]">[email protected]</a>. We look forward to hearing from you.</div>
    <table id="Table_01" width="1025" height="768" border="0" cellpadding="0" cellspacing="0">
              <tr>
                        <td width="1024" height="29" colspan="5">
                                  <img src="images/spacer.gif" width="1024" height="29" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="29" alt=""></td>
              </tr>
              <tr>
                        <td width="708" height="339" colspan="3" rowspan="2">
                                  <img src="images/spacer.gif" width="708" height="339" alt=""></td>
                        <td>
                                  <img src="images/logo.jpg" width="274" height="229" alt=""></td>
                        <td width="42" height="739" rowspan="8">
                                  <img src="images/spacer.gif" width="42" height="739" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="229" alt=""></td>
              </tr>
              <tr>
                        <td width="274" height="211" rowspan="3">
                                  <img src="images/spacer.gif" width="274" height="211" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="110" alt=""></td>
              </tr>
              <tr>
                        <td width="70" height="400" rowspan="6">
                                  <img src="images/spacer.gif" width="70" height="400" alt=""></td>
                        <td>
                                  <img src="images/header.jpg" width="414" height="79" alt=""></td>
                        <td width="224" height="101" rowspan="2">
                                  <img src="images/spacer.gif" width="224" height="101" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="79" alt=""></td>
              </tr>
              <tr>
                        <td width="414" height="22">
                                  <img src="images/spacer.gif" width="414" height="22" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="22" alt=""></td>
              </tr>
              <tr>
                        <td colspan="3"> </td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="121" alt=""></td>
              </tr>
              <tr>
                        <td width="912" height="35" colspan="3">
                                  <img src="images/spacer.gif" width="912" height="35" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="35" alt=""></td>
              </tr>
              <tr>
                        <td colspan="3">
                                  <img src="images/footer.jpg" width="912" height="59" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="59" alt=""></td>
              </tr>
              <tr>
                        <td width="912" height="84" colspan="3">
                                  <img src="images/spacer.gif" width="912" height="84" alt=""></td>
                        <td>
                                  <img src="images/spacer.gif" width="1" height="84" alt=""></td>
              </tr>
    </table>
    <!-- End Save for Web Slices -->
    </body>
    </html>
    PS: Using Dreamweaver CS6 if that makes any difference.
    Again, thank you sooo much!
    SiD24

    I would like the website to ajust automatically to different brower sizes without having white on the sides, and the text moving all over the place.
    Try this % width layout.  Copy & paste code into a new, blank document in DW.  SaveAs test.html.  Preview in browsers at various viewport widths and text sizes.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document, 1-Col</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    img {
        max-width: 100%;
        vertical-align: baseline
    body {
        padding: 0;
        width: 90%; /**adjust width in px or % as required**/
        margin: 0 auto; /**this is centered**/
        background: #F5DD83;
        color: #505050;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
        box-shadow: 2px 2px 4px #333;
    header {
        margin: 0;
        padding: 0 1%;
        width: 100%;
        background: #B00202;
        color: #FFF;
    header h1, header h2 {
        display: inline;
        color: #F5DD83;
        padding: 0 1%;
    /**top menu**/
    nav {
        background: #69C;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold
    nav ul {
        margin: 0;
        padding: 0;
    nav li {
        list-style: none;
        display: inline-block;
        margin: 0 1%
    /**menu link styles**/
    nav li a {
        color: #FFF;
        text-decoration: none;
        line-height: 2.5em;
        padding: 6px;
        border: 1px solid #CCC;
    /**on select or mouseover**/
    nav li a:hover, nav li a:active, nav li a:focus {
        background: #CCC;
        color: #505050;
    /**main content**/
    article {
        padding: 2%;
        background: #FFF;
    article h3 {
        color: #2294AE;
        margin-bottom: 0
    article p { margin: 0 0 1em 0 }
    figure {
        text-align:center;
    figcaption {
        text-align: center;
        font-style: oblique;
        font-size: small
    footer {
        background: #B00202;
        color: #FFF;
        text-align: center;
        margin: 0;
    </style>
    </head>
    <body>
    <!--begin header-->
    <header> <h1>Sitename</h1>
    <h2>Some pithy slogan...</h2>
    </header>
    <!--begin navigation-->
    <nav>
    <ul>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    </ul>
    </nav>
    <!--begin main content-->
    <article> <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <figure> <img src="http://placehold.it/500x325" alt="placeholder">
    <figcaption>Figure 1 Caption</figcaption>
    </figure>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <!--begin footer-->
    <footer> <small>© 2014 Your Site Name. All rights reserved</small> </footer>
    </body>
    </html>
    Within the body of the contect, there needs to be a email link - so I assume that would be a div section.
    Publishing your e-mail address is an open invitation to spammers and e-mail harvesters who will flood your inbox with junk.  If you want people to contact you, use a contact form and a form-to-email processing script that hides your e-mail address from robots.
    Nancy O.

  • Why did I have to pay for pages for iPhone 5 running iOS 7?

    Why did I have to pay for pages for iPhone 5 running iOS 7?

    I thought the iWork suite was free for new devices running iOS 7...

  • Pages for iphone recover document

    I accidenetly deleted an important document from Pages-for-iphone.
    Is there anyway to recover this document?
    Much thanks,
    Paul

    Tried backing it up from itunes, no luck. Too bad there wasn't a "Trash" feature on the I OS. Bummer. Thanks for the response-much appreciated.

  • Can you change the currency formatting in a cell using Pages for iPhone?

    Since my MacBook Pro is grumpy this morning, I downloaded Pages for my iPhone and then purchased the app "Inspiration Set" which contains a group of templates for use in Pages. I think the original templates were built on a Mac.
    I have opened up the template, changed all the info to build my invoice, but they have a group of cells set for pounds instead of dollars. Does the iPhone version of Pages allow me to reformat these cells as dollars, instead of pounds?
    My Mac is STILL not starting up, so I HAVE to be able to find a solution using the iPhone ONLY...
    Thanks for any help,
    -Chris

    Guy,
    Update: I wrote the following before putting on my glasses and realizing that you were asking about Pages rather than Numbers. Maybe the same procedure will apply.
    See these nice instructions.
    In short: To select a currency symbol, tap Currency, and then tap the symbol you want.
    Jerry

  • Web page for iphone in iWEB

    A good enhancement to iweb would be to have a model to make a mobile-friendly web site. Somebody knows whether this is in the plan of Apple to provide framework in iWeb to make a web page adapted for iPhone and other smartphone?

    Jacques ~ Welcome to the Support Communities. We're just users like yourself here — so we don't know what Apple's plans are. Alternatives to iWeb adapt their site content to smartphones, e.g.
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html
    And iWeb's future is unclear:
    https://discussions.apple.com/message/15500319#15500319

  • Tibetan Font Problem in Pages for iPhone/iPad

    There is a problem in typing Tibetan in Pages for iOS (iPhone, iPod, iPad). More specifically, when we are typing conjunction Tibetan letters, it will sometimes omit the root letter or the upper letter. For example, in the picture, the last second words should be སྐྱོན་ཤོར་བ། སྐྱོན་ཤོར་བ། but it became ྱོན་ཤོར་བ། སྐྱོན་ཤོར་བ།
    When we copy/paste the letter from other sources such as online Tibetan writings/IM/email, it will have no problem.
    Hope you will help solve the problem.Thank you.

    I think you need to report this to Apple via
    http://www.apple.com/feedback

  • Pages for iphone

    Hello Apple Community,
    I have recently purchased Pages for my MacBook Air. Now I was trying to install the app to my iphone 4s, however I can not? It tells me I have to pay £6.99 for it again?
    Is there any way I can get my Pages to work on my iphone as well? I wouldnt want to purchase pages again, seeing as I already have spent £15 on it.
    Thank you for your help

    I haven't got it for the iPhone, whose screen is too small*, a text editor is more suitable for that, but it certainly is nifty on an iPad.
    Pages' great strengths are how it combines word processing, page layout, beautiful charts and spreadsheets all into the one file.
    IBook Author which is almost identical (and free) is icing on the cake.
    If you are not going to use Pages on your iPhone, which I think would be the case, don't bother buying the iOS version. Save your cash for when you get an iPad.
    Peter
    * I could see uses for it as a small iPhone multimedia reader for stuff created on your Mac. I create bite size tutorials/recipes in Pages and those could be usefully read (but not created) on an iPhone. But they could also be saved out as pdfs and be almost as useful.
    Imagine you wanted to present information to a potential client, that calculated out "What ifs" in a small spreadsheet, generating sexy charts on the fly. With sample video and sound clips etc. My real estate agent did something similar, but using an iPad.
    If that is not you, then stick with just the basic tools on your phone, which is after all just a phone.

  • Undo delete on Pages for iPhone?

    Hi,
    i just installed mountain lion.
    Documents in the cloud is nice but:
    If you delete a document from the cloud on your mac i will be in your local trash.
    but
    if you delete it with your iphone its gone for ever.
    Is there Undo delete on Pages or an other way to retreive a deleted document on the iphone.
    Is the also backed up through timemachine ?
    Thanks, Chris

    Hi TM,
    The sign on the door is a bit misleading, and you're not the first (or even the first today) to come to this Pages (Mac version) forum to ask a question about Pages for iOS.
    Not many of us use iPad, so your question will be better served in the iWork for iOS community.
    Actually, the question seems more of an OS question than a Pages one, as finding files is more of a System task than one done by the application. Unless you are searching within the Pages app, an even better place for your question would likely be the Using iPad community.
    The two links will take you to the named community.
    Regards,
    Barry

  • Numbers - Pages for iPhone?

    Is there an iWork for iPhone? I see that Microsloth has Excel and there are other spreadsheet apps in the App Store, but is there an Apple-native app that has the Numbers - Pages apps that work on the iPhone, or is this in the works somewhere?

    I wish there was!
    I use google docs. with iPhone (not very usable - bit it does work). At home, I can download the google doc file and import it into numbers. You can cut and paste from numbers back to google docs.
    Not a good solution - but it does work.
    iWork.com is a great start (it is Beta still), and I have great hopes for it!!! Keep going Apple!!! don't stop here!!! Does not seem to work on iPhone fully (view document only) which is VERY odd....

  • Embedding Video in web page for iphone

    Does anyone know of any good/favorite resources that do a walk-through on how to embed video into a web page so that it plays properly on the iPhone?
    Thanks.

    Jacques ~ Welcome to the Support Communities. We're just users like yourself here — so we don't know what Apple's plans are. Alternatives to iWeb adapt their site content to smartphones, e.g.
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html
    And iWeb's future is unclear:
    https://discussions.apple.com/message/15500319#15500319

  • Designing Safari page for iPhone

    Note here:
    http://www.flickr.com/photos/jorgecorrea/4359779134/lightbox/
    iPhone is 480 pixels wide. But when I design an iPhone Safari homepage page that way, it's too narrow. I doesn't look right unless it's 962 pixels wide.
    Why not? What is the correct size in pixels of an iPhone screen, and how best to I design an iPhone Safari page?

    Hi
    you may do better in the Developer or even the iWeb sections - but possibly the iPhone is designed to display regular (much wider than 480) pages w/o scrolling, so defaults to 'squeezing' yours to suit that.

  • Feedback page for iPhone???

    Hello,
    I was just going to leave feedback about an iPhone problem, but the only Operating systems offered in the drop down box are for Mac and Windows.
    What are we supposed to enter there?
    Thanks.

    It doesn't really matter. Pick the one for the computer you use.

  • Safari Home page for iPhone

    Does anyone know why you can't set a homepage on safari on the iPhone?
    Just curious!!
    Alan

    Don't know why. Safari always goes back to the last page selected. If you want, you can save your desired home page as a web clip as described here: http://www.apple.com/iphone/how-to/#safari.web-clips
    Then use the web clip icon in place of the Safari icon and you will always go to your home page.

  • Coming Soon from Apple an Update to Safari for Windows ...

    ... with a lot of missing features:
    Read at
    http://www.apple.com/safari/download/
    Coming Soon
    Support for International users
    International text input methods
    Advanced text (contextual forms, international scripts)
    Localized menus and help
    NTLM support
    PAC file auto-detection
    FTP directory listings
    Link to proxy settings from Safari (Safari respects the proxy settings in the Windows Internet control panel)
    Cookie management
    LiveConnect support
    Tooltips
    Spell checking
    Printing page numbers, titles, margins
    (...)

    Yes, the question was not directed at you, even if I might have appreciated if you had made something up, just to make me happy.
    The question was more directed at Apple, who have not been brilliant with the communication regarding Safari for Windows. Example: For several days they proudly presented Safari for Windows on the main page of their Japanese web site, even though one of the most glaring limitations was that the first betas would not work in Japanese - at all.
    In contrast to many people in this forum, I do not mind that there are serious limitations and bugs in the beta. However, I am disappointed that Apple does not list the problems up front.

Maybe you are looking for

  • March's TechNet Wiki TN Wiki Guru Winners announced!!

    The results for March'sTechNet Guru competition have been posted! http://blogs.technet.com/b/wikininjas/archive/2014/04/17/the-microsoft-technet-guru-awards-march-2014.aspx <- results page! Congratulations to all our new Gurus for March! We will be i

  • Why did I switch?

    We had two flip phones thru Verizon.  Used it for phone calls only, any text separate charge.  In nov I purchased I phone 5s.  Continued the same phone service with verizon.  I used my wifi thru my land line phone service.  I was getting my land line

  • EIC  Error *nty_is_active* is undefined & Error: Object expected

    Hello, Installation Product Version ECC 6.0 We´re implemented Employee Interaction Center (EIC).EH 4 SP2 Component version: EHP 4 for SAP ERP 6.0 /7.0. We have already installed the component EIC in the system and activated some services in SICF and

  • Aggregate tables

    Hello all, I am currently implementing several aggregates in the repository and I have following question... There is a certain fact table the business model layer with 2 sources. The base table and the aggregate table. This fact table has several me

  • Update Order Qty of sales order

    Hi All, How can I update a sales order quantity for a particular item? I know BAPI BAPI_SALESORDER_CHANGE will change that Qty but it will change schedule line Order quantity  which will reflect Order Qty on Sales tab of Overview screen that I don't