Different layout in Chrome vs IE

I'm having a problem with my web page.  It looks perfect in Chrome, but in IE (v 8), once it loads the iframe, it changes the text of my page as well as relocates the title in my titlebar.  In case you would rather look at it yourself, my website is asc.pcassistant.net.  This is on the "Merch" tab.  My computer is also an XP, but I don't know if that'd have anything to do with it.  Included in this poost is three different pictures, the first of Chrome and how it should look, the second IE as it's loading the iframe, and the third is what my page looks like in IE after it DOES load the iframe.  Then I have my html for the page.  Also, as an added note, when I mouse over my navbar in IE, the font goes to what it should be.
This is how it looks (and how it SHOULD look) in Google Chrome:
This is how it looks while the page is loading in IE8 (The white bar is my iframe, it's another website loaded into my page):
AND this is how it looks in IE8 once it finally loads the iframe:
My html for this page (with the iframe parts in bold) is as follows (the script helps automatically set the height of my iframe):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>As Shadows Collapse - Merch</title>
<link href="http://asc.pcassistant.net/main.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
<!--
function calcHeight()
//find the height of the internal page
var the_height=
document.getElementById('the_iframe').contentWindow.
document.body.scrollHeight;
//change the height of the iframe
document.getElementById('the_iframe').height=
the_height;
//-->
</script>
</head>
<body>
<div id="wrap">
  <div id="header">
  </div>
  <div id="nav">
   <ul>
   <li><a href="http://asc.pcassistant.net/index.html">HOME</a></li>
   <li><a href="http://asc.pcassistant.net/music.html">MUSIC</a></li>
   <li><a href="http://asc.pcassistant.net/band.html">BAND</a></li>
   <li><a href="http://asc.pcassistant.net/merch.html">MERCH</a></li>
   <li><a href="http://asc.pcassistant.net/contact.html">CONTACT</a></li>
   </ul>
  </div>
  <div id="content">
<table class="titlebar"><th>MERCHANDISE</th></table>
<iframe width="100%" id="the_iframe" onLoad="calcHeight();" src="http://asc.pcassistant.net/shop/" scrolling="NO" frameborder="0" height="1">
An iframe capable browser is
required to view this web site.
</iframe>
  </div>
</div>
<div id="footer">&copy; 2011 As Shadows Collapse &middot; All Rights Reserved</div>
</body>
</html>

I did miss the @font-face at the bottom of your document the first time around. I had seen it declared at the top
     font-family:Abaddon, Arial;
Before the @font-face rule.  Sometimes browsers are picky about these kinds of things and it is usually recommended to include that rule before it is called in the rest of the CSS because a lot of browsers, particularly webkit (Safari/Chrome) tend to read from beginning to end and things that are out of order can sometimes cause issues.
Can you give a little more information regarding your cart software?
There does not appear to be a lot going on with the page and the better solution might be to skin the shopping cart software as opposed to just including in an iframe (same can go for other pages using a template vs iframe). 
Also I ran your site through the validator again and your problems there appear to be fixed.
Let me take another look at the page and I will post back.

Similar Messages

  • How do I use different Layouts?

    I am trying to make a program that runs in a window like this:
    http://www.exyt-web.com/Window.gif
    The problem I'm having is with the layout.
    How do I have more than one layout ?
    For example - as you can see in the image (hyperlink above) I wish to have a border layout with a JFrame at the North position and then in the South position I want to have buttons laid out in a FlowLayout.
    Also with my radio buttons I want these in a GridLayout(3, 0) layout.
    I made up some example code to test using different layouts - but it seems one layout always overrides the other...
    import java.awt.*;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class LayoutTest extends JFrame
        public LayoutTest()
            setTitle("Hello World");
            Container contents = getContentPane();
            Container contents2 = getContentPane();
            contents.setLayout(new FlowLayout());
            contents.add(new JLabel("<FILTER [Type a th|    ]>"));
            contents.add(contents2);
            contents.add(new JLabel("< Filter Button >"));
            contents.add(new JLabel("<  Add Button   >"));
            contents2.setLayout(new GridLayout());
            contents2.add(new JLabel("< Button 1 >"));
            contents2.add(new JLabel("< Button 2 >"));
            contents2.add(new JLabel("< Button 3 >"));
            contents2.add(new JLabel("< Button 4 >"));
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            pack();
        } // HelloWorld
        public static void main(String [] args)
            LayoutTest theLayoutTest = new LayoutTest();
            theLayoutTest.show();
        } // main
    } // class HelloWorldI know this obviously doesn't work but I hoped it would show what I was trying to do.
    I also tried creating a new 'contents2' and then adding it into 'contents'
    e.g. contents.add(contents2); My current code for the window I'm trying to create so far is:
    import java.awt.*;
    import javax.swing.*;
    public class Menus extends JFrame
        public static void Menus()
            // Creates a new JFrame, with the title specified in quotation marks.
            JFrame frame = new JFrame("Film Database");
            // Sets the default close operation of the frame.
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            // Creates a new menu bar for the frame.
            JMenuBar menuBar = new JMenuBar();
            // Creates a new menu for the menu bar.
            JMenu menu = new JMenu("File");
            addFrameContents(frame, menuBar, menu);
            // Sets the new menu bar on the frame
            frame.setJMenuBar(menuBar);
            frame.pack();
            frame.setVisible(true);
        } // HelloWorld
        public static void addFrameContents(JFrame frame, JMenuBar menuBar, JMenu menu)
            // Adds the menu to the menu bar.
            menuBar.add(menu);
            // Creates a new item for the menu with a small icon.
            JMenuItem menuLoad = new JMenuItem("Load", new ImageIcon("C:/load.gif"));
            // Adds the new item to the menu.
            menu.add(menuLoad);
            JMenuItem menuSave = new JMenuItem("Save", new ImageIcon("C:/save.gif"));
            menu.add(menuSave);
            JMenuItem menuQuit = new JMenuItem("Quit", new ImageIcon("C:/quit.gif"));
            menu.add(menuQuit);
            // Creates a new container.
            Container contents = frame.getContentPane();
            // Sets a new layout for contents, in this case FlowLayout.
            contents.setLayout(new GridLayout(2, 0));
            // Adds new JLabels to the container.
            contents.add(new JLabel("< JLabel 1 >"));
            contents.add(new JLabel("< JLabel 2 >"));
            contents.add(new JLabel("< JLabel 3 >"));
            contents.add(new JLabel("< JLabel 4 >"));
            JLabel thisLabel = new JLabel("Hello");
            thisLabel.setLayout(new FlowLayout());
            JLabel thisLabel2 = new JLabel("Hello2");
            thisLabel2.setLayout(new FlowLayout());
            contents.add(thisLabel);
            contents.add(thisLabel2);
        public static void main(String [] args)
            Menus();
        } // main
    } // class HelloWorldAny help on how I can use two separate layouts in the same frame would be great!
    Regards,
    Tom

    doing this:
    Container contents = getContentPane();
    Container contents2 = getContentPane();
    does not create 2 different containers. It's just creating 2 variables that refer to the same container. There is only 1 content pane in a window/frame. A container can only have 1 layout.
    If you want to have 2 layouts, you create 2 panels with separate layouts and put what you want in each panel, and put both panels in the content page.

  • Dynamic Headers in ALV Based on Different layouts

    Hi Experts,
    I Have a requirement in an ALV Report wherein After the report run as the user chooses different layouts from saved ones the ALV header should change accordingly.
    I'm using Function modules to write the ALV.
    First of all , is it possible? and if yes how?
    Thanks,
    Sachin Soni

    hi rohit ,
    thanks for replying but i think ppl have not understood it clearly.
    I'm not asking about the variants which the user saves before calling the report but rather the layout which after the report run user creates based on what columns he wishes to see at that moment.
    thanks
    sachin soni

  • How can I create multiple pages, with different layouts to the others, in DW fluid grid layouts?

    Hi everyone,  : )
    I am creating a website using FGL in DW CS6, v12.0 build 5808.  I do not have Creative Cloud (do you have to pay to use this service?).
    I have created one layout for my home page.
    I would like to create several more pages, but I want them to use different layouts (as well as different content).
    I tried to do something similar before using 'save as' (this was with a non-FGL), but whenever I changed the original page that I had 'save as'd' from, the layout in all the other pages would change too!
    I found a possibility from someone else online suggesting using a template, but have not tried it yet: http://www.linkedin.com/groups/Adding-second-fluid-page-in-119937.S.192422240
    I'm a bit scared of breaking everything, as I am new to web design and have had to restart the whole process a few times due to messing up the fluid.css etc and other issues, so I am taking baby steps.
    Happy to try whatever's suggested and, while I wait for (I hope) your responses, I think I will try the template thing, but from the reply the person who asked the question gave, it sounds like his subsequent pages changed too, as I mentioned above?  *scared*  ; )
    If anyone can help me with this query I would be very grateful.  Thank you!  : )

    Thanks David.
    I tried using different IDs for the other pages, but eventually one of the divs seems to 'break' - it overlaps other divs, or cannot be moved or resized (you can select the outline and it goes blue, but no 'move up a row' or down a row or 'lock to grid' etc icons appear and it can't be drag-re-sized), plus the green overlay disappears (just from that div.  I'm aware of how to turn visual aids on and off), so it seems broken.  This often seems to happen if you rename a div once it's been created; it does not rename in the layout.css on the right side panel (CSS Styles) in DW and the 'broken' behaviour above is exhibited.  Do you know anything about this?  Is this the 'edit this doc at your peril' stuff that most tutorials seem to mention?  Am I doing something wrong?
    I also tried making an FGL and saving out the original boilerplate.css, layout.css and respond.js.  Then created multiple new FGLs and each time it created new versions of layout.css (called 'untitled-1', 2 etc.).  Once I had created all the FGLs, I deleted all the new boilerplates and untitled.css files.  Then restored the original ones and changed the link at the top of each page's html to refer to the same filename (the original layout.css), rather than untitled.css.  I thought this might work and it seemed to for a while, but then as I had to add new div names for the sections on each page, it eventually broke (as above).
    Anyway, I think you have a good point about different layouts and it occurred to me also while I was exploring and waiting for replies here.  I think I will make one layout for all pages and go with that.  I have a couple of questions about that though:
    1. I think the max number of divs I want for one of the pages is 10, but some pages need less divs.  If I only fill e.g. 8 divs on one page, will the other ones be sat there empty?  I think they will actually...I guess I'm asking because I have not tried it yet (will do after this) and it takes so long to do this trial and error.
    2. If the amount of content in each div is different, e.g.  let's say Page 1 has 6 lines of content in div1, but page 2 may have an unlimited amount of content (I will want to add to it in the future).  Will this result in the div on page 1 being a huge block of empty space after its 6 lines?
    Thanks so much for your help!

  • How do I create a automatic second page with different layout settings?

    Hi there,
    I want to create a business letter template with a different second page. I already managed to create a different layout on page nr two, but
    whenever I write a letter with this template and I reach the end of page one, pages creates a thrid page in between my page nr one and nr two with a mixture of the layout of template page nr two and the footer of page nr one.
    I want pages to take my template page nr two (with different header and footer) as second page instead of creating one itself.
    If I don't need a second page - because my letter is to short - I should not have to delete a second page. It simply should not be there...
    Thanks for Help!
    G4's and 12" PB   Mac OS X (10.4.6)  

    Hello Stefan,
    you achieve this with a little trick. Create your letter and set the layout for the first and the second page by inserting a placeholder text. This placeholder text should fill the first page and the top of the second page, so both pages are build in one section. When the entire letter is layouted well, select the placeholder text and than save the letter as a template.
    Now every time you open this template, you only have to insert the main text (replace the placeholder text with real content), and the second page disappears until the main text overflows the borders of the first page. Than you will get the second page again with the layout you have created for it.
    I hope this will work for you like it works fine for me.

  • Different layouts for different pages

    hi all,
    i have created a form in which there are 5 output pages but the print preview shows only the first page out of 5.i want to go to the next page.plz help how would i do that.and  i want different layouts for different pages.
    thnks n regards,
    mukesh.

    Hi Mukesh,
    Read these lines which has been given in help.sap.com and also go through the link given below.
    Main Window on Several Draft Pages :
    if you want the pages on which a table with items is printed to have different layouts. Height and position of the main window may differ on the different pages, but the width must remain the same throughout.
    [Main Window|http://help.sap.com/saphelp_nw70/helpdata/en/b1/243fdabeee11d4b633006094192fe3/content.htm]
    Regards,
    Sravanthi

  • Flat file with different  layouts in a single file

    Hello Friends,
    Good Morning.
    I am new to ODI - Oralce Data Integrator 11G.
    I have a flat file where I had to load the flat file data to a oracle DB ( 11G ).
    The flat file has 5 different layouts ( Data of 5 different suppliers coming as a single file and each layout is different ) and each layout corrresponds to one supplier information.
    I had to load each layout data into a different table using a single source file ( That has all supplier information).
    Please advice.
    Thanks/Kumar

    Ok below are the layouts.
    BASE record                                                                                                    
    DS01 record                                                                                                              
    RM01 record                                                                                                         
    CR01 record                                                       
    NW01 record                                                       
    Few more question to you.
    Are they always come in sequential like below ?
    BASE record                                                                                                    
    DS01 record                                                                                                              
    RM01 record                                                                                                         
    CR01 record                                                       
    NW01 record
    BASE record                                                                                                    
    DS01 record                                                                                                              
    RM01 record                                                                                                         
    CR01 record                                                       
    NW01 record
    BASE record                                                                                                    
    DS01 record                                                                                                              
    RM01 record                                                                                                         
    CR01 record                                                       
    NW01 record
    Do you want only insert or insert/update as well ?

  • Manage different layout according to Sales stage

    Hi everybody,
    I need to manage different opportunity layouts according to my sales stage.
    How this need can be realizable?

    Dynamic layouts are only possible on Opportunity for the field Opportunity Type. You could repurpose that field to allow for your different layouts, but I would consider that option very carefully before doing so. You need to be sure that repurposing that field won't negatively impact existing functionality.
    I don't know what your requirements are, so I'm not certain about what you are trying to achieve. Be aware that you have some capability associated with Sales Processes that may be of use to you. You need to review the Sales Process functionality to see if it will help with your requirements at all.
    Good Luck,
    Thom

  • REUSE ALV - different layouts

    Hi Gurus,
    iam having an ALV report with an ALV display. Form this ALV on click of a button i will navigate to another ALV display.(both ALV's are called within the same program).
    Now my problem is with Layout functionalities:
    If a layout is saved in the first ALV, then if i go to second ALV and go for the Layout selection, all the layouts saved in the first ALV are coming in the second ALV.
    If the user selects a layout of the first alv, obvoiusly, no data will be displayed in the second ALV.
    So is there anywy i can go for fresh set of layout's for the two ALV's separately..
    (as per my knowledge, the layouts are stored based on the Program name in the database, so if i go to layout option in both the ALV,s... so the common alv's are coming in both displays's.)
    the above  issue is causing problems to the user...
    iam passing the below data for the ALV..
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = sy-repid
          i_callback_pf_status_set = pfstatus
          i_callback_user_command  = c_usercomm1
          i_callback_top_of_page   = l_v_top
          i_grid_title             = text-064
          is_layout                = fp_wa_layout
          it_fieldcat              = fp_i_fieldcat1
          i_default                = c_x
          i_save                   = 'A'
        TABLES
          t_outtab                 = fp_i_item1
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 1.
    so can anyone of you give me a suggestion for different layouts for different ALV's.
    one more point: in the selection screen... iam using
    SELECTION-SCREEN ULINE.  
    which is displaying a black line between the select options.
    Now can this color of the black line be changes to grey or white.
    Also can a Line can be drawn between two selection fields without wasting the space between the fields(as there are many fields in the selection). the above command is consuming one row. i dont want to waste that space.. so can anyone give code for the same...
    Thanks & regards..
    Chaitanya..

    Hello,
    U can populate the below fields of the two layouts  variant structures;
    U can find GROUP and HANDLE fields , Just give different names so that u can have different layouts based on u r variants as the above field values distinguish between the alyuts.
    Check this link
    Re: Change layout button in ALV Grids
    Regards
    Edited by: shishupalreddy ramreddy on Jun 26, 2009 3:55 AM

  • Use different Layouts for Summary and Details in Drill down report

    Hi All,
    I have a 2 level drill down report in ALV.
    The summary report has certain fields and the Detail report has different fields. Now my problem is that when i use a default layout (with all fields of summary report) for the summary report, and drill down to the detail report i'm missing the fields on detail that are not in Summary. And if i save the default layout as default (with all fields of Detail) and go back to sumary, I'm missing the some other fields on summary (which are not on detail report).
    Is there a way to make different default layouts for each of those summary and detail reports:
    Also as the layouts are choosen by the user, i cannot hardcode any particular layout;
    So if the user chooses a layout for detail; it has to stay the same layout for the detail report if he goes to summary and then back to detail; unless the user changes the layout again.
    I'm using two different Layout types for each report. but i still cannot get the desired effect.
    Data:
          gt_layout_s             type slis_layout_alv,
          gt_layout_d             type slis_layout_alv,
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = g_repid
          is_layout                = <b>gt_layout_s</b>
          i_callback_top_of_page   = g_top_of_page
          i_callback_user_command  = g_user_command
          i_callback_pf_status_set = g_status
          i_save                   = g_save
          is_variant               = gs_variant
          it_fieldcat              = gt_fieldcat[]
          it_events                = gt_events[]
        importing
          es_exit_caused_by_user   = gs_exit_caused_by_user
        tables
          t_outtab                 = it_summary.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = g_repid
          is_layout                = <b>gt_layout_d</b>
          i_callback_top_of_page   = g_top_of_page
          i_callback_user_command  = g_user_command
          i_callback_pf_status_set = g_status
          i_save                   = g_save
          is_variant               = gs_variant
          it_fieldcat              = gt_fieldcat[]
          it_events                = gt_events[]
        importing
          es_exit_caused_by_user   = gs_exit_caused_by_user
        tables
          t_outtab                 = it_detail_disp.

    Here is how you differentiate between the layout of two different grids. There is the parameter, IS_VARIANT in the function. You usually leave it empty or pass only the report name and username. <b>What you need to do is to pass unique string for each grids to the HANDLE field of the parameter IS_VARIANT.</b> You can probably hard code it as HEADER and DETAILS in your case. Once that is done, system identified that these two different layout for different grids.
    Regards,
    Ravi
    Note : Please mark all the helpful answers<u></u>

  • Different layouts with single master page

    hi all,
    I have a created an adobe form which has 2 different layout.
    The First page has some contents which need not be printed on the second page.
    the table is printed in between this two static content which does not to be printed on the next page.
    can anyone suggest how do i go about in this, Since I am new to adobe forms.
    thanks,
    Rohit

    Hello together,
    I solved this by myself:
    - All stripes were put in a wrapping subform STRIPECODE on the masterpage-area (outside content area)
    - the lines to be switched on/of have their own wrapping subforms each
    - the event STRIPECODE: layout:ready was scripted, since we need page-info here
      there are as much instances of STRIPECODE as we will have odd pages, we get the Number of the page one
      instance of STRIPECODE is on via xfa.layout.page(this);  this is the scriptes STRIPECODE-Instance
    - the subform-children of STRIPECODE , i.e. STRIPECODE.CODE1 ...STRIPECODE.CODE14 are set to visible/unvisible:
      STRIPECODE.CODE1.presence = "invisible"; NOTE: You cannot set the lines directly, only the wrapping subforms. Thats why we need them
    If this is helpfull for anyone, please try to answer my 2 outstanding questions
    Regards C

  • Link to another portlet  with a different layout

    Hello
    Can somebody point me how to create a link in one portlet which opens
    another portlet with a different layout.
    I have portlet one in a 3 column layout, I want to open portlet 2 in a
    single column layout.
    TIA
    Gowtham.

    Do you sync to the same computer which has both your and her purchases on ? If you do then she should be able to sync them to her phone from it.
    If you use different computers then you could copy them from your computer to her computer (if they are not on your computer then you could re-download them on it). You can find where they are stored on your computer by right-clicking (control-click on a Mac) one of them in the Apps part of your iTunes library and selecting 'show in explorer' ('finder' on a Mac). You can then copy them to, for example, a flashdrive and then add them (you will need to authorise your account via the Store > Authorise This Computer menu option) to her computer's iTunes via File > Add To Library and she can then sync them.
    If you log into your account on her phone or her computer and re-download those apps on it then you risk tying the phone or computer to your account for 90 days : http://support.apple.com/kb/HT4627

  • How to design a single adobe form having 5 different layouts

    Hi,
    I have a requirement wherein i have 5 different layouts to be designed in a single adobe form, since i am new to adobe forms please can anybody tell me how to desgin this.
    Thanks.
    Moderator Message: Please post the questions in the right forum. Also, I suggest you take a proper class room training in Adobe forms.
    Edited by: kishan P on Nov 2, 2010 12:02 PM

    Hi Roopesh,
    We cannot change the Page Layout and Orientation dynamically in Adobe forms.
    To achieve this Create two forms with different layouts each.

  • [U8.1][Xaml] Different Layout for RSS Feed items.

    Hi everyone,
    I created a simple RSS Feed reader using App Studio, and now I`m modifying it to my needs on Visual Studio. Its awesome!
    Now I would like the items of my RSS Feed source to have a different layout from each other based on the Author or Date the feed item was fetched. I think that it could be done using some conditionals but I don't exactly know how.
    If anyone could help me with that, that would be awesome.
    Keep in mind that I have just started playing around with app development on Windows and try to be as clear as you can on your instructions.
    Kind Regards.

    What code do you have for the source items? I assume it is some type of ItemsControl (ListView, GridView, etc.) and you can set the
    ItemsTemplateSelector to choose between different layouts based on the bound object's Author and Date. See the
    DataTemplateSelector class documentation and the
    How to group items in a list or grid page: the ItemsTemplateSelector works essentially the same as the GroupTemplateSelector demonstrated in that article.
    If you want to know if and how this can be done within App Studio please check in the App Studio forum.

  • Print adobe form in ME9A giving different layout

    Hi all,
    In ME9A to print the Request for Quotation, I seems to get different layout when I click the following:
    Check the which form to print-> Output Message (a popup box asking to print) ->OK (still giving me old version from layout)
    Using another method,
    Check which form to print-> Display Message ( the form being previewed here) ->click print (give me the layout I wanted)
    What is wrong with clicking the Output Message to print? Any idea? Thanks in advance. (Note: Some users used this option to print so thats why I am asking here).

    Hi Siong,
    It sounds like your config is not correct. I would check the following:
    spro -> MM -> Purchasing -> Messages -> Forms (Layout Sets) for Messages -> Assign form and output program for RFQ.
    also check:
    spro -> MM -> Purchasing -> Messages -> Output Control -> Message Types -> Define Message Types for RFQ.
    Hope that helps.
    Glen.

Maybe you are looking for

  • Lion Server VPN Service/Class C IPs/Bonjour

    In order to deploy Lion Server's VPN service, you obviously are required to enter an IP range to assign. We are running a standard class C network here, with systems running on 192.168.1.x. The problem is that if a user is accessing the VPN from a re

  • Problem in Using Time Stamp when Querying from SQl Server to ODBC linked server

    I am using Following Query for my subject pupose but facing different Issues, Error Also shown after Query Query IS: DECLARE @sql varchar(8000) SELECT @sql = 'SELECT * FROM OPENQUERY(TEST, ' +               '''SELECT * FROM SCHEMA.OAUSER.Tag_Value '

  • [Gave Up]Problems getting OSS or PulseAudio to work

    So I'm following the wiki guide on installing OSS (https://wiki.archlinux.org/index.php/Open_Sound_System) and am running into a wall. It tells me to add: /etc/modprobe.d/alsa_blacklist.conf blacklist soundcore to rc.conf, but not where. So I did som

  • Not too tech savy with tablets but need help

    My Nook HD+ uses Adobe Air, tablet says version is 3.3.  One of my games says it needs updated version of Adobe Air.  Go to Google play to d/l and it does and tries to install but I get an error message on tablet saying it "Already Exists."   Tried u

  • IDVD 11 Themes won't load?

    I just purchased Ilife (old version) so I could load IDVD.  It loaded fine but when I try to use the program it can't load the themes and ends the program. I located themes version 6 and 7 on the HD in application suppoprt, but even if I try to open