AP div not positioning as expected!

Actually, it's not taking on any positioning that I am trying to applt to it.
I have a circular logo that refers to 75 foot, and I am using a background image to help me position my content as needed, but the 75 foot logo div that I have positioned is falling behind the timer. Infact, the logo should appear infront of it because it has a higher z-index... another confusion for me then!
Have a look at http://www.fortnerf.co.uk and let me know why it doesn't want to work.
The AP div in question is called '75home', and I have placed it everywhere I can think of placing it on the page. It's just a simple div with a logo in it. It positions correctly in DW, but as soon as I test it with live veiw or in a browser, it moves!
The CSS for it and other AP divs is as follows:
#timer {
          position:absolute;
          width:390px;
          height:243px;
          z-index:1;
          left: 710px;
          top: 50px;
#win {
          position:absolute;
          /*width:460px;
          height:365px;*/
          z-index:2;
          left: -40px;
          top: 333px;
#homebuttons {
          position:absolute;
          width:465px;
          height:232px;
          z-index:3;
          left: 561px;
          top: 445px;
#75home {
          position:absolute;
          width:222px;
          height:222px;
          z-index:4;
          top: 261px;
          left: 572px;
I've also tried the following:
#75home {
          position:relative;
          width:222px;
          height:222px;
          z-index:4;
          margin-top: 261px;
          margin-left: -104px;
Thanks.
Mat

Pfft! I didn't know that!!
All these years I have been doing this and I have never known that. I guess it's been pure luck that I have never tried to use a selector that begins with a number before!
Thanks.

Similar Messages

  • div not extending full width

    I have a basic page built on the standard twoColFixLtHdr template that comes with CS4. Have created a new div #welcome that should extend across the whole width of the mainContent div, and the math adds up and the view layout guides shows everything in place. When you use Design Live View or a browser, there is a 20px white space at the right end of the #welcome block. I have just included the basic definitions below as I am sure this is something simple that my limited experience is not seeing. Thanks in advance for any/all advice or suggestions.
    .twoColFixLtHdr #container {
    width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    background: #FFFFFF;
    margin: 0 auto;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .twoColFixLtHdr #sidebar1 {
    float: left; /* since this element is floated, a width must be given */
    width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background-image: url(../Images/sidebar-graphic-bkgrnd.gif);
    background-repeat: repeat-y;
    /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 0;
    position: relative;
    top: 0px;
    left: 0px;
    *in the Spry Vertical Menubar.CSS I have added a 2px border around each menu item and sub item giving me a total of 204px width for the sidebar}
    .twoColFixLtHdr #mainContent {
    margin: 0 0 0 204px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
    padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
                    position: relative;
                    top: 0;
                    left: 0;
    .twoColFixLtHdr #container #mainContent #welcome {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #FFF;
    width: 556px;
    position: relative;
    left: 0;
    top: 0px;
    background-image: url(../Images/welcome-graphic-bkgrnd.gif);
    background-repeat: repeat-y;
    float: left;

    By the way I just used the same css as yours and it is working fine for me:
    Following are the styles that I testerd for the said template:
    body  {
         font: 100% Verdana, Arial, Helvetica, sans-serif;
         background: #666666;
         margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
         padding: 0;
         text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
         color: #000000;
    .twoColFixLtHdr #container {
    width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    background: #FFFFFF;
    margin: 0 auto;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .twoColFixLtHdr #header {
         background: #DDDDDD;
         padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .twoColFixLtHdr #header h1 {
         margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
         padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColFixLtHdr #sidebar1 {
    float: left; /* since this element is floated, a width must be given */
    width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background-image: url(../Images/sidebar-graphic-bkgrnd.gif);
    background-repeat: repeat-y;
    /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 0;
    position: relative;
    top: 0px;
    left: 0px;
    /*in the Spry Vertical Menubar.CSS I have added a 2px border around each menu item and sub item giving me a total of 204px width for the sidebar*/}
    .twoColFixLtHdr #mainContent {
    margin: 0 0 0 204px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
    padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    position: relative;
    top: 0;
    left: 0;
    .twoColFixLtHdr #container #mainContent #welcome {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #FFF;
    width: 556px;
    position: relative;
    left: 0;
    top: 0px;
    background-image: url(../Images/welcome-graphic-bkgrnd.gif);
    background-color:#330099;/*used this to see the div properly*/
    background-repeat: repeat-y;
    float: left;
    Are your all the styles same as this?
    Regards,
    Vinay

  • Div not recognised in template

    Hi, first ever question.
    I have a template page with standard divs, Header, Nav, Content, Footer all are contained in a wrapper div and all working as expected.
    I have inserted a new div to sit in between the content and footer, The box properties are set so that they only take up 2/3 of the area and I have put a 2 px border around it.
    When vewing it in Dreamweaver it looks exactly as I was expecting to see it.  However when I upload and view in a browser the text I have inserted appears across the entire length of the page and the border is missing.
    I would really appreciate some direction.
    Thanks

    OK, I get it, common sense stuff, should have known better.
    Platform:                 MAC
    OS:                         10.6.8 Snow Leopard
    Software:                Dreamweaver - CS5.5
    New Div:                "wordDoc"
    Test page URL:     file:///Users/ralphharpur/My%20Clients/Bambach%20Cables/bambach%20website%20files/bambach _website/testPages/testIndex.html
    This file shows the problem as the "wordDoc" div appearing underneath existing div's, however this was not the original problem. Original problem was div not appearing at all.
    I have already tried inserted "clear-both" before and after the div as well as a class "clear" (since removed).
    Code:                   
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Welcome to Bambach Cables</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="../css/bambach.css" rel="stylesheet" type="text/css" media="screen" />
    <link href="../css/pagelayout.css" rel="stylesheet" type="text/css" media="screen" />
    <style type="text/css">
    <!--
    #cable-montage {
        height: 469px;
        width: 139px;
        float: right;
    a:link {
        text-decoration: none;
        color: #FFF;
    a:visited {
        text-decoration: none;
        color: #FFF;
    a:hover {
        text-decoration: none;
        color: #FFF;
    a:active {
        text-decoration: none;
        color: #FFF;
    -->
    </style>
    <link href="../css/print.css" rel="stylesheet" type="text/css" media="print" />
    </head>
    <body>
    <div id="wrapper">
      <div id="header"></div>
      <div id="navigation">
        <ul>
          <li><a href="index.html">HOME</a></li><li><a href="../about-us.html">ABOUT US</a><li><a href="flexible-earths.html">PRODUCTS</a></li><li><a href="../equipment-manufacturer.html">INDUSTRIES</a><a href="../custom.html">CUSTOM </a></li>
          <li><a href="../contact.html">CONTACT</a></li>
        </ul>
      </div>
      <div class="indent" id="content">
        <h4 class="indent">Established in 1936, Bambach Wires &amp; Cables are an Australian owned and operated manufacturer of specialist industrial cables. Whether you need new or unique wire and cable technology, or just someone to deliver the basics,     Bambach is there for you.<br />
        </h4>
      </div>
      <div class="wordDoc" id="wordDoc">
        <p>As you may or may not be aware, Bambach has been asked to test for non-transmission of internal ignition for the following cables    19285BES, 40670BES, 30308BES, 42505BES, 19290BES &amp; 15790BES.</p>
        <p>Test Safe, Londonderry are to conduct the tests and are scheduled to start this Saturday 17th March. An order has been placed. </p>
        <p>The work will be done over weekends using paid overtime otherwise work could not start before the end of April at the earliest.</p>
        <p>Many of the cables have been in use without any problems for more than 12 years without any problems. Unfortunately the DII Gazette Notice dated 25th January 2008  escaped our attention due to staff changes. Otherwise tests would have been carried out then.</p>
        <p>Although the above tests are to be conducted I do emphasize that no cable, including the above, leaves these premises without rigorous routine and sample testing.</p>
        <p>The cables listed above are the only Bambach product that require testing for <br />
          non-transmission of internal ignition. No other product is effected </p>
        <p>W M Gale<br />
          MD<br />
          14/03/12</p>
      </div>
      <div id="col1">
        <h4>Products</h4>
        <ul>
          <li class="ul"><a href="../pvc-flexible.html">        PVC Flexibles      </a></li>
          <li class="ul">        <a href="../emc.html">EMC Cable </a></li>
          <li class="ul">        <a href="../control.html">Control Cable </a></li>
          <li class="ul"><a href="../mining.html">        Mining Cables      </a></li>
          <li class="ul"><a href="../rubber-h07-rn-f.html">        HO7 Rubber      </a></li>
        </ul>
      </div>
      <div id="column2"></div>
      <div id="col3">
        <h4>Industries</h4>
        <ul>
          <li>        <a href="../equipment-manufacturer.html" class="ul"> <span class="ul">Equipment Manufacturers</span></a>      </li>
          <li class="ul">        <a href="../wholesalers.html"> Wholesalers </a>      </li>
          <li class="ul">        <a href="../mining.html"> Mining &amp; Resources </a>      </li>
          <li class="ul">        <a href="../defence-navy.html"> Navy/Defence </a>      </li>
          <li class="ul">        <a href="../switchboard.html"> Switchboard Builders </a>      </li>
        </ul>
      </div>
      <div id="cable-montage"></div>
      <div id="footer">
        <table width="960" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td colspan="2" valign="top">Sydney Head Office</td>
            <td colspan="2" valign="top" class="tableCollapse">Brisbane</td>
            <td colspan="2" valign="top" id="tables">Melbourne</td>
            <td colspan="2" valign="top">Newcastle</td>
            <td width="198" valign="top" class="footerRight">© Bambach Wires &amp; Cables   2010</td>
            <td width="59" rowspan="4" valign="top"> </td>
          </tr>
          <tr>
            <td width="24" valign="top">Ph: </td>
            <td width="141" valign="top">02 9938 5622</td>
            <td width="24" valign="top">Ph: </td>
            <td width="146" valign="top">07 3277 5811</td>
            <td width="24" valign="top">Ph: </td>
            <td width="155" valign="top">03 9335 2600</td>
            <td width="24" valign="top">Ph: </td>
            <td width="128" valign="top">02 4956 2044</td>
            <td width="198" valign="top" class="footerRight"><a href="../terms-conditions.html">Click here to view Terms &amp; Conditions</a></td>
          </tr>
          <tr>
            <td colspan="2" valign="top">Fax: 02 9938 3973</td>
            <td colspan="2" valign="top">Fax: 07 3274 0080</td>
            <td colspan="2" valign="top">Fax: 03 9330 3903</td>
            <td colspan="2" valign="top">Fax: 02 4950 1983</td>
            <td width="198" rowspan="2" valign="top" class="footerRight"><a href="../privacy.html">Click here to view Privacy Policy</a></td>
          </tr>
          <tr>
            <td colspan="2" valign="top"><script type="text/javascript">
    //<![CDATA[this is the code for Hivelogic Email Enkoder - [email protected] (Sydney)
    function hiveware_enkoder(){var i,j,x,y,x=
    "x=\"783d223738336432323362336233613362333733633364336233353337333633623638" +
    "33383337333733643337336133623339336333653362333733633363336336613337333933" +
    "63366133623361336236393362336133633338336236623362333933623237343237643563" +
    "32323364373833373362333633623338336233643362333833623336336233373362363933" +
    "62333633623337336233353339333833633361336236383362333633623338336336363338" +
    "36623362333933633638336233653362333633623639336233373337363833613639333836" +
    "38333833653363336133623661336233393362336533633338336133353337333833633361" +
    "33623638336233363362333833613661333833373337363833613361336333363362366133" +
    "37363933623662336233383362366133373338336333613362363833623330376533323332" +
    "32353265333734323330366534303664373936633733366137313333376434313665343033" +
    "35343236653264373737343662343032633263343237653430323736373338333533383637" +
    "33383365333733373337366133383336336236623337336232393738323836353730363136" +
    "33373336353665373533643738336232373237336437393362356332323765323434303265" +
    "32653337333136653264373737393738363737613738333337643330326332613263326436" +
    "61373536363638373836613733376134323239333233333363366132383636363933623335" +
    "32643239363932383734343136353634366634333732363136383633326537383364366137" +
    "62323932623262363933623638373436373665363536633265373833633639336233303364" +
    "36393238373236663636373937643239366132383635363436663433373236313638343336" +
    "64366637323636326536373665363937323734353333643262373933623334333933643262" +
    "36613232336237393364323732373362363636663732323836393364333033623639336337" +
    "38326536633635366536373734363833623639326233643335333232393762363636663732" +
    "32383661336434643631373436383265366436393665323837383265366336353665363737" +
    "34363832633639326233353332323933623264326436613365336436393362323937623739" +
    "32623364373832653633363836313732343137343238366132393362376437643739336222" +
    "3b793d27273b666f7228693d303b693c782e6c656e6774683b692b3d32297b792b3d756e65" +
    "7363617065282725272b782e73756273747228692c3229293b7d79\";y='';for(i=0;i<x." +
    "length;i+=2){y+=unescape('%'+x.substr(i,2));}y";
    while(x=eval(x));}hiveware_enkoder();
    //]]>
    </script></td>
            <td colspan="2" valign="top"><script type="text/javascript">
    //<![CDATA[this is the code for Hivelogic Email Enkoder - [email protected]
    function hiveware_enkoder(){var i,j,x,y,x=
    "x=\"783d227b402532357c41267e43283538372939677e6c39436228353839392144403a29" +
    "36393d693a3b3d373a6d3d692936393a3e422532323c3d442e6b3d2e423c3d6d766c3e792f" +
    "3b3970446c3e37423e3e7043393d2135403e736c3b3d756e3c397b6f3f394270393a32446a" +
    "3d3930383924253232373d32443f3e7c75393d6c7a3c3d6a683d3a776c6b3c2f2e6a392c2e" +
    "393d32216b3d357a383d7c69403d7a7b6a3e792f3b3d70336d3a3930683e30423a3d293636" +
    "253232383d62283538416a3d21433c3e2d2d3a3d417e393e437b393d746b403e79693a3d67" +
    "76393d6b2e383d7e2f6c3d416c3c3b7578373d2e6f393d4336383d416f6b3d427e393d3472" +
    "383d6b743a3d6d7a3f3d6e413a3d6f31383d312f393d23706a3d437e3c3e34693a396e676c" +
    "3d78493a3d756a6d3d6b476b397a2e6c3d6f2f383e33373c3c416f6a396c2e393a70426c3c" +
    "39383a3d2f70383d31436a3d3f3a3c3e41213a393143373b597a393e786f393d746d403e34" +
    "6c3a3d7875393d7349383d6e676c3d78493c3a756a6a396b2e6d3d702f383a283535212835" +
    "384170436b7c67722e7e34696e6778477a2e362f2f417e437e34797b68797a782e372f4121" +
    "432d2d416c75782e6f4336416f427e34726b746d7a6e416f31433a2f232131437e34797b68" +
    "797a782e6f32382f412835356c75782e6f4338416f427e34726b746d7a6e416f31433a2f23" +
    "2131437e34797b68797a782e6f32382f4128353521432134797b68797a782e702f41263f7d" +
    "412b2b3f7c4179726977676574692c7c2d3f6a73762c6d41343f6d407c327069726b786c3f" +
    "6d2f2f2d216e417c32676c65764773686945782c6d2d31363f6d6a2c6e4037362d6e2f413d" +
    "383f7d2f415778766d726b326a767371476c6576477368692c6e2d237d2532353e7c402a2a" +
    "3e7b4078716876666473682b7b2c3e6972752b6c40333e6c3f7b316f68716a776b3e6c2e2e" +
    "2c7e6d407b31666b64754672676844772b6c2c30343e6c692b6d3f36352c6d2e403c373e7c" +
    "2e405677756c716a3169757270466b6475467267682b6d2c2532327c223b793d27273b783d" +
    "756e6573636170652878293b666f7228693d303b693c782e6c656e6774683b692b2b297b6a" +
    "3d782e63686172436f646541742869292d333b6966286a3c3332296a2b3d39343b792b3d53" +
    "7472696e672e66726f6d43686172436f6465286a297d79\";y='';for(i=0;i<x.length;i" +
    "+=2){y+=unescape('%'+x.substr(i,2));}y";
    while(x=eval(x));}hiveware_enkoder();
    //]]>
    </script></td>
            <td colspan="2" valign="top"><script type="text/javascript">
    //<![CDATA[ this is the code for Hivelogic Email Enkoder - [email protected]
    function hiveware_enkoder(){var i,j,x,y,x=
    "x=\"783d22334577792b41783d303d5c223632324f36317e78756e3d5c5c65735c22336336" +
    "366664363664323636346170366665283632273165363633313736383337252735362b7864" +
    "352e3635633336323231363635737536656273373374326535366333363635343272286537" +
    "692c3731323736633332363565363732292936393b7d3737795c2233323b6a30343d653436" +
    "766135326c283864782e363563683663617232324174336328303636292932363b7866373d" +
    "7831322e733036756238357374373272283665312937323b7936353d273636273b3533666f" +
    "633272283633693d6435303b6366693c3631782e33656c6532326e673664746836323b6932" +
    "322b3d393331303136297b3936792b63623d7833302e73336275623734737436667228335c" +
    "5c692c5c223b3529793d3b7d2761666f373372283631693d273b353b666f693c7236782e63" +
    "366c6535376e67286974683d303b693b332b3d366431303635297b693c792b782e3d786c36" +
    "2e736336756232367374656e72286774692c6866352937353b7d3732793d3b69792e2b3d73" +
    "7532366273653674723534286a297b293b223b6a3d6576616c28782e636861724174283029" +
    "293b783d782e7375627374722831293b793d27273b666f7228693d303b693c782e6c656e67" +
    "74683b692b3d34297b792b3d782e73756273747228692c32293b7d666f7228693d323b693c" +
    "782e6c656e6774683b692b3d34297b792b3d782e73756273747228692c32293b7d793d792e" +
    "737562737472286a293b\";y='';for(i=0;i<x.length;i+=2){y+=unescape('%'+x.sub" +
    "str(i,2));}y";
    while(x=eval(x));}hiveware_enkoder();
    //]]>
    </script></td>
            <td colspan="2" valign="top"><script type="text/javascript">
    //<![CDATA[this is the code for Hivelogic Email Enkoder - [email protected] (newcastle)
    function hiveware_enkoder(){var i,j,x,y,x=
    "x=\"2LGx=2631\\\"3a34f2b62142c29c7226475d3876767\\\\\\\"=x7962386a7776393b" +
    "6977373a723c3a6a7f2b383b292f39663d2d383b2630396a3d6c393a2678393a7b37383b27" +
    "2d3d3a397b363b322d3b367360353a71633767637536366e653c367d383a3a6822393a7f66" +
    "363b6b393c3a2878343a256c386a6e2836367c3937696b3038673d393a6a2b2b383b296b37" +
    "6a38643d3a776e353a6571376a6863353a6e28373b7d3a35676b79353a2968363a24713438" +
    "4564373b6f63393a423c373a3a68353a2669363a6b34386a3d29376a7b34363a393d353a3b" +
    "2a373a69223c6a3327373a6e6939666274373b735d393a3b29393b4271353a686339664d6f" +
    "386a62763a3a6e\\\\\\\"373997d7396792a636368256376946f634363.x<373bi;0=393a" +
    "i(ro376af;''353a=y;n373au=+y3b3b{)2=393a+i;h3968tgne393altsb376aus.x383b+'" +
    "%'373b(epa3536csey3967};))353a2,i(3a66r\\\";y3767='';2667for(3437i=0;3667i" +
    "<x.3d36leng3673th;i7a6f+=183b2b){fo214dr(j=7f36Math3c70.min4d6f(x.l3431eng" +
    "t4d6ch,i+262d18);6f3c--j>687b=i;)6279{y+=6072x.ch7971arAt4f2d(j);712d}}y;\""+
    ";j=eval(x.charAt(0));x=x.substr(1);y='';for(i=0;i<x.length;i+=8){y+=x.subs" +
    "tr(i,4);}for(i=4;i<x.length;i+=8){y+=x.substr(i,4);}y=y.substr(j);";
    while(x=eval(x));}hiveware_enkoder();
    //]]>
    </script></td>
          </tr>
        </table>
      </div>
    </div>
    </body>
    </html>

  • I keep getting the following error message when I try to update my itunes, "There is a problem with this windows installer package. Aprogram run as part of the set up did not finish as expected.  Contact your support personnel or package vendor."

    I keep getting the following error message when I try to update my itunes, "There is a problem with this windows installer package. Aprogram run as part of the set up did not finish as expected.  Contact your support personnel or package vendor."

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

  • When attempt to download 10.5, receive message: "...problem with this widows installer package. a program run as part of the set up did not finish as expected. ..." -- what to do?

    I have attempted to upgrade my iPad which is necessar to downloan an app I want (My Radar).  The iTunes on my computer will not process the upgrade of 10.5 without message:  "There is a problem with this Windows Installer Package. A program run as part of the set up did not finish as expected. Contract your support personnel or packae vendor."  ..... Little old lady needs help, my iTunes "appears to be 10.5 on my PC; however, will not upgrade my iPad.  I have BitDefender as the "protector" on my PC if that is the issue.

    Go to support.microsoft.com/fixit
    In section 2 click on: Install or upgrade software or hardware
    Then click on the title in section 3: Fix problems with programs that cannot be installed or uninstall
    This link may get you there:  http://support.microsoft.com/mats/Program_Install_and_Uninstall/
    Let it run and then try to download it again

  • How can i control what images load on my project to save preload time and avoid loading all images, elements, divs not yet visible?

    Sup buddies,
    How can I control what images load on my project to save preload time and avoid loading all images, elements, divs not yet visible?
    As the project grows in size the load time increases. How does one control not loading all images ,divs,elements etc. until they're
    needed on the timeline? For example some sections are off and only become visible when recalled. My projects slowly grow in size so loading
    all images , is counter productive . My other option would be to create separate htmls but that breaks the seamless user experience .
    TY...Over N Out... 

    hello, kiwi
    quote: "Is there an easy way to burn a completed project to DVD, but keep only the (lo res, lo size) previews on my hard drive?"
    yes.
    maybe,...
    1. you might think of making DVD backups first prior to importing the photos into Aperture. "Store Files: In their current location" once in Aperture make low rez Previews, and export finished Project.
    or,
    2. bring in the photographs to hard drive first prior to importing the photos into Aperture. "Store Files: In their current location" once in Aperture make low rez Previews, and export finished Project.
    the low rez Previews will stay in Aperture but the high quality Versions will be exported onto DVDs and gone from the hard drive (if you delete the originals).
    another way would be to export small about 50-70 pixel wide high quality jpegs to a folder on your Desktop and import & keep these in Aperture Library as a reference. make metadata to show where the original Project DVDs are stored and DVD filing system used.
    victor

  • Hello my name is Omar Andres Santacruz, finished iMedicalOffice buy a program you have in the app store but what he said on the page is not what I expected, I was very disappointed that, frustrated and reweighed when I check my account had gained 139.99 f

    Hello my name is Omar Andres Santacruz, finished iMedicalOffice buy a program you have in the app store but what he said on the page is not what I expected, I was verydisappointed that, frustrated and reweighed when I check my account had gained139.99 for 7 times, I do not understand what has happened that is not the first time I buy something ustedeses thank you very much for your help

    Wow, Karan Taneja, you've just embarrassed yourself on a worldwide support forum.  Not only is your post ridiculous and completely inappropriate for a technical support forum, but it also shows your ignorance as to whom you think the audience is.  Apple is not here.  It's users, like you. 
    If you would have spent half the time actually reading the Terms of Use of this forum that YOU agreed to by signing up to post, as you did composing that usesless, inappropriate post, you (and the rest of us on this forum) would have been much better off.

  • ITunes 10.5 Upgrade fails to Install. The Error Message is: "There is a Problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor."

    When Upgrading on my laptop from iTunes 10.2.11 to 10.5.0 the message I get is: "There is a problem with this Windows Installer Package.  Aprogram run as part of the setup did not finish as expected. Contact your support personnel or pacakge vendor.

    After reading all these posts, one by one did not resolve my problem until I got the very end.  Regardless of what step would resolve your problem, these are the steps I would recomment to everyone for a what seems to be a safe and fool-proof upgrade to iTunes 10.5.
    1. Stand alone upgrade to the latest Quicktime version
    2. Go to control panel and "change" then select repair to the following applications in the order specified by the post on Oct 27. (Notice I skipped Quicktime because it had been upgrade manually,and Bonjour did not have a "repair" option)
    iTunes; Apple Software Update: Mobile Device Support; Apple Applications Support
    Some of these applications may not appear if they do not apply to your configuration (no iPhone, or no iPad, or other apple devices).
    Once all updated, I did not need to restart nor launch any applications, I simply went straight into the 10.5 upgrade, and where it normally got stuck, this time the installation continued for a while longer until it completed successfully.
    Great work everyone who contributed!  Thank you very much!

  • When I try to install iTunes 10.5, it says, "There is a problem with this Windows Installer package.  A program run as part of the setup did not finish as expected.  Contact your support personnel or package vendor."  I have Windows XP and I need help.

    5, it says, "There is a problem with this Windows Installer package.  A program run as part of the setup did not finish as expected.  Contact your support personnel or package vendor."  I have Windows XP and I need help.

    After reading all these posts, one by one did not resolve my problem until I got the very end.  Regardless of what step would resolve your problem, these are the steps I would recomment to everyone for a what seems to be a safe and fool-proof upgrade to iTunes 10.5.
    1. Stand alone upgrade to the latest Quicktime version
    2. Go to control panel and "change" then select repair to the following applications in the order specified by the post on Oct 27. (Notice I skipped Quicktime because it had been upgrade manually,and Bonjour did not have a "repair" option)
    iTunes; Apple Software Update: Mobile Device Support; Apple Applications Support
    Some of these applications may not appear if they do not apply to your configuration (no iPhone, or no iPad, or other apple devices).
    Once all updated, I did not need to restart nor launch any applications, I simply went straight into the 10.5 upgrade, and where it normally got stuck, this time the installation continued for a while longer until it completed successfully.
    Great work everyone who contributed!  Thank you very much!

  • I am trying to update to iTunes 10.5 and am getting a Apple Software update error. "There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. ??

    I am trying to update to iTunes 10.5 and am getting a Apple Software update error. "There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. ?? I can't uninstall the Apple Software Update from my Control Panel. It states "Fatal error during installation" Please HELP!!!

    I am experiencing the exact same issue during the installtion process for iTunes 10.5.
    I uninstalled all Apple components but when I attempted to uninstall the Apple Software Update I received the same message: "Fatal error during installtion." I was able to repair the Apple Software Update but still could not install iTunes 10.5 afterwards.
    I have tried everything that I could find on these discussions pages as well as other suggestions on third party sites. I continue to receive the error message: "There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.
    I was able to uninstall and reinstall QuickTime 7.7.1. During the reinstalltion process I received the same message (There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.) But after clicking "OK" the installtion process was succesful. PLEASE HELP!

  • What to do when installing itunes to windows vista home basic an message appears saying"there is a problem with this windows installer package.A program run as part of the setup did not finish as expected.Contact your support personnel or package vendor."

    what do i do when trying to install itunes to my windows vista home basic computer and a message appears saying
    "There is a problem with this windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor."
    Need to know because this is driving me nuts now!

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • TS1412 Itunes will not install, I get this error message.  There is a problem with this Windows Installer package.  A progran run as part of the setup did not finish as expected.  Contact your support personnel or package vendor.

    I Tunes will not install.  I get this error message:  There is a problem with this Windows Installer package.  A program run as part of the setup did not finish as expected.  Contact your support personnel or package vendor.  Does anyone have an answer?

    TRy the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • Error when downloading itunes 10.5 that says Product: Apple Software Update -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package ven

    Each time I attempt to download the new itunes 10.5 I keep getting the following error message:
    Product: Apple Software Update -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action SoftwareUpdate_UnregServer, location: C:\Program Files\Apple Software Update\SoftwareUpdate.exe, command: /UnregServer
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Any Ideas of how to solve this one?

    After reading all these posts, one by one did not resolve my problem until I got the very end.  Regardless of what step would resolve your problem, these are the steps I would recomment to everyone for a what seems to be a safe and fool-proof upgrade to iTunes 10.5.
    1. Stand alone upgrade to the latest Quicktime version
    2. Go to control panel and "change" then select repair to the following applications in the order specified by the post on Oct 27. (Notice I skipped Quicktime because it had been upgrade manually,and Bonjour did not have a "repair" option)
    iTunes; Apple Software Update: Mobile Device Support; Apple Applications Support
    Some of these applications may not appear if they do not apply to your configuration (no iPhone, or no iPad, or other apple devices).
    Once all updated, I did not need to restart nor launch any applications, I simply went straight into the 10.5 upgrade, and where it normally got stuck, this time the installation continued for a while longer until it completed successfully.
    Great work everyone who contributed!  Thank you very much!

  • Trying to down load Itunes but I get a message : There is a problem with this Windows Installer package a program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.

    When downloading Itunes I get this message:
    There is a problem with this Windows Installer package a Program run as part of the setup did not finish as expected.
    Contact your support personnel or package vendor..
    is there a number for me to call or can someone explain what has happen...
    Thank you for your help....

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • I am trying to upgrade to itunes 10.5 on my pc which using windows xp but it keep saying there is a problem with this windows installer package. A program run as part of the setup did not finish as expected. Contact your support personel or package vendor

    I am trying to upgrade to itunes 10.5 on my pc which is using windows xp but i keep getting an error message stating that there is problem with this windows installer package. A pogram run as part of the setup did not finish as expected. Contact your suppor personal or package vendor.

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

Maybe you are looking for

  • Can I exchange my macbook air for the new pro?

    I recently bought a haswell series 13" macbook air exactly 1 week before the introduction of the new haswell macbook pros.  After considering the spec and price difference I realized I'd rather have the pro. I looked on the returns tab on the website

  • "There was an error opening the database for the library "~/Pictures/Apert"

    Hey everyone, There's already another discussion thread about this at the link below, but the problem was never actually resolved. http://discussions.apple.com/thread.jspa?threadID=2343014&tstart=0&messageID=116 67261#11667261 So I stumbled across th

  • .pdf documents displaying transparent in browser

    I am having a strange display glitch when I attempt to view a .pdf in Firefox 6. I believe this started happening around the time I upgraded Firefox, but I have updated the Adobe Reader plugin. I am using Windows 7. Here is an example of what a .pdf

  • WebElements in JRC?

    Hi all, We have our own custom webapp running under JBoss and delivering some Crystal Reports thru a viewer based on JRC. Some of my reports developpers would like to add WebElements function in some reports and I'm first of all wondering if WebEleme

  • Web database application design examples wanted

    Hi! I�ve written a couple of smaller web database applications in Java but I�m not completely satisfied with my design, especially where and how to put the database code. Now I�m looking for small open source examples of good design of web database a