Issue with viewing website in internet explorer

Hello.  I created a website in dreamweaver using rollover images for the links.  When I load the webpage in the firefox, google, or opera browsers it loads fine, however when I load it in internet explorer I get an "allow activex" message.  When I tried to view it on my tablet in google it loaded fine, but when I tried to load it in my tablet using internet explorer it didn't show any links at all and than it crashed the browser.  What can cause this and how can I fix it?  is there a better way to create rollover images that I'm not aware of?  I tried to use CSS code in the stylesheet to make rollover images, but couldn't figure out how to do that.
Thanks,
Mike Irvan

Any server you have access to would work fine, you just upload to a temporary folder, like TEST, then delete it after the problem is found.
However, if you're not online yet, and having issue with IE, it's very likely you just need to drop IE's security settings to allow it to display local file attachments correctly (yeah, don't ask, it's a Microsoft thing).
Go into IE and choose Tools > Internet Options > Security and drop the scrubber bar down a notch or two, restart and try again.
When the site is uploaded to an actual server, that error won't come up because all files are coming from the same remote source (Microsoft, it doesn't have to make sense®)
You can do a search online to get more info on customizing the settings manually, somehting like this page will come up if you search allow blocked local files: IE 10 is blocking javascript on local html files - Microsoft Community

Similar Messages

  • Still having trouble with Dreamweaver website in Internet Explorer

    I had to make some changes and IE (8 & 9) is giving me new fits. This is the URL "http://www.canonguy.net/KehilaLinktest/"
    The left menu isn't stacked (links are different lengthsit does an over/under???) & the font sizes are different in right/left sidebars. like it is in Safari/Firefox/Chrome and the
    Here are my stylesheets today:
    threeColFixHdr.css
    @charset "utf-8";
    /*.container .blockquote {
        background-color: #FAF0E6;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.9em;
        font-weight: normal;
        text-decoration: underline;
        border-left-width: thick;
        border-left-style: double;
        border-left-color: #666;
        margin-left: 25px;
        margin-right: 15px;
    .content blockquote  {
        background-color: #FAF0E6;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1em;
        font-weight: normal;
        text-decoration: none;
        border: thin dashed #333;
        padding: 10px;
        margin-left: 12px;
        margin-right: 10px;
    /* CSS Document */
    body {
        /* [disabled]font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif; */
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #000;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        /* [disabled]font-size: 1.2em; */
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        font-size: .8em;
        font-weight: 300;
        text-align: center;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    img {
        border: 2px solid #000;
    .header a:link {
        color: #FFF;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
    .header a:hover, .header a:active, .header a:focus {
        text-decoration: none;
        color: #FFF;
        font-weight: 400;
    .header a:active , .header a:focus   {
        text-decoration: none;
        color: #FFF;
    .header a:hover {
        text-decoration: blink;
        color: #E8E1D1;
    a:visited {
        color: #6E6C64;
        text-decoration: underline;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #00F;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: blink;
        color: #929C53;
    /* ~~ This fixed width container surrounds all other divs ~~ */
    .container {
        width: 1000px;
        background: #FFFFFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
        font-size: 14pt;
    /* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
    .header {
        /* [disabled]background: #ADB96E; */
        height: 88px;
        background-color: #929C53;
        color: #FFF;
        border-bottom: 1px solid #000;
    h3  {
        color: #FFF;
    .content {
        padding: 10px 0;
        width: 600px;
        float: left;
        font-size: 1.0em;
        min-height: 600px;
        max-height: 3000px;
        margin-left: 35px;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1 {
        float: left;
        width: 170px;
        background: #E8E1D1;
        font-size: 9pt;
        height: 650px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
    .sidebar2 {
        float: right;
        width: 170px;
        background: #E8E1D1;
        padding: 10px 0;
        font-size: 9pt;
        height: 650px;
        border-bottom: 1px solid #000;
        border-left: 1px solid #000;
        color: #333;
    .container .sidebar2 .JewishGen {
        font-size: 0.8em;
        margin-top: 50px;
        margin-left: 10px;
    .CenteredHeadings {
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
    .sidebar1 a:link {
        color: #030;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
    .sidebar2 a:link {
        color: #333;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
        text-align: left;
    .container .sidebar2 .searchBox {
        margin-bottom: 5px;
        border: thin solid #000;
        margin-left: 15px;
        margin-right: 5px;
        background-color: #BEC49F;
        margin-top: 25px;
        width: 140px;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
        padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
        list-style: none; /* this removes the list marker */
        border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
        margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    ul.nav2 {
        list-style: none; /* this removes the list marker */
        border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
        margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    ul.nav li {
        border-bottom: 1px solid #666; /* this creates the button separation */
    ul.nav2 li {
        border-bottom: 1px solid #666; /* this creates the button separation */
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
        width: 145px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
        text-decoration: none;
        background: #BEC49F;
        /* [disabled]background-color: #C6D580; */
    ul.nav2 a, ul.nav2 a:visited {
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
        width: 135px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
        text-decoration: none;
        background: #BEC49F;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
        background: #ADB96E;
        color: #FFF;
    ul.nav2 a:hover, ul.nav2 a:active, ul.nav2 a:focus {
        background: #ADB96E;
        color: #FFF;
    .nav {
        height: 250px;
    .nav2 {
        height: 250px;
    /* ~~ The footer styles ~~ */
    .footer {
        background: #CCC49F;
        position: relative;/* this gives IE6 hasLayout to properly clear */
        clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
        height: inherit;
        font-size: .6em;
        border-top: 1px solid #000;
    .footerCopy {
        /* [disabled]padding: 10px; */
        background: #CCC49F;
        position: relative;/* this gives IE6 hasLayout to properly clear */
        clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
        font-size: 1em;
        text-align: left;
    /* ~~ Miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    h1 {
        font-size: 200%;
        color: #000;
    h2 {
        font-size: 170%;
        color: #000;
    h3 {
        font-size: 150%;
        color: #333;
    h4 {
        font-size: 130%;
        color: #333;
        text-align: left;
    h5 {
        font-size: 120%;
        color: #333;
    h6 {
        font-size: .9%;
        color: #333;
    .container  .smallText {
        font-size: 0.75em;
        text-align: center;
    .container .sidebar2 {
        /* [disabled]color: #929C53; */
    .Center_caption {
        text-align: center;
        color: #333;
        font-weight: normal;
        padding: 0px;
        margin-top: 10px;
    .container .content .indentContent {
        text-align: left;
    .container .content h5 {
        margin-left: -250px;
        /* [disabled]padding-left: 25px; */
    .container .content .pageTitle {
        font-weight: 900;
        color: #333;
        margin-left: 50px;
        padding-bottom: 25px;
    .romania {
        font-weight: 900;
        color: #906;
    spryMenuBarVertical.css
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        padding: 0;
        list-style-type: none;
        cursor: default;
        width: 140px;
        background-color: #BEC49F;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        position: relative;
        text-align: left;
        cursor: pointer;
        border: 1px solid #fff;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 8.2em;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 1px solid #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #BEC49F;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
        font-size: 9pt;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #929C53;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #929C53;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    HeaderDivs.css
    @charset "utf-8";
    /* CSS Document */
    .leftSide{
        float:left;
    .rightSide{
        float:right;
    BigHeader {
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 200%;
        font-style: normal;
        font-weight: 900;
        font-variant: normal;
        color: #FFF;
        margin-top: 20px;
        margin-left: 15px;

    In this line:
    <img style="margin-left:27px;margin-top:30px;" src="images/coat-of-arms.gif" width="100" height="138" alt="Roman's Coat of Arms" /><h4 style="padding-top:25px;padding-bottom:8px;text-align:center;font-weight:800;">
    Close the image tag at the end:
    <img... ...height:800;" />
    You need to go through your <ul> and <li> tags very, very carefully.  You have some mismatched elements (missing closing tags) in your huge list.
    Here:
    <p>
         <!-- end .content -->
         <!-- InstanceBeginEditable name="EditRegion4" --><!-- InstanceEndEditable -->
       <p> </p>
    You have missed a closing </p> tag
    These input elements need closing like this
    <input name="allcountry" value="ALLROMANIA" type="hidden" />
    You may have too many closing </div> tags at the end of your page.
    Check your site in the validator: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.canonguy.net%2FKehilaLinktest %2F
    Fix the problems you can and then revalidate it to see how you are getting on.
    Martin
    The first thing to focus on is your <ul> an <li> tags that will screw your menu

  • Recently, when opening some websites, I can't view the page and now must open them with google chrome or internet explorer in order to view them

    Recently, when opening some websites, I can't view the page and now must open them with google chrome or internet explorer in order to view them

    Hi headshot, <br /> Sorry you are having problems.
    Are you seeing any error message or notification ? <br />If so what ?
    If the page fails to load try clearing Reloading with the Ctrl F5 shortcut to force loading without the old new cached files. If that does not help try cache and clearing cookies for that site.
    * Also see [[Websites don't load - troubleshoot and fix error messages]]
    * [[Delete cookies to remove the information websites have stored on your computer#w_delete-cookies-for-a-single-site]]_delete-cookies-for-a-single-site
    Reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with a left click.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    Let us know if this solves the issues you are having.
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.

  • A problem with this webpage caused Internet Explorer (IE9) to close and reopen the tab

    I have IE9 (using 32-bit version) installed on a relatively new laptop with Windows 7 64-bit. Up until last weekend IE9 worked fine and Flash Player worked fine too.
    At the weekend a webpage asked for Flash Player to be updated - which I did. Ever since then whenever I go to a webpage needing Flash Player I get the message "A problem with this webpage caused Internet Explorer to close and reopen the tab". This happens twice and then an IE9 error page.
    I have read the discussions in here about the problems with Flash Player 10.3 and have tried the various solutions. I have updated to 10.3.181.16 having tried 15 and 14 previously. Same problem.
    I have reset IE9. Same problem.
    I have disabled all add-ons which stops the problem. If I enable just the Flash Player add-on then the problem recurs. Since there are so many webpages that use Flash I do not want to run my browser without this add-on running.
    If I enable the add-on and run IE9 using software rendering instead of GPU rendering then I don't get the problem. However, this isn't exactly making the best use of the resources on my laptop.
    This may well all be related to the 10.3 problems but no one seems to have mentioned having a problem with tabs closing and reopening so I thought I would post on here to check.
    Any suggestions for how to solve this (other than using software rendering)?

    Thanks again for your reply. I appreciate the time you have taken to respond.
    I think, however, you misunderstand the problem. IE9 does not reopen the tabs on just one website - it is doing this on every website that needs Flash Player. Therefore, running in Compatibility mode is not an option. In fact, because IE9 reopens the tabs so quickly and then ends up with an error page, I cannot even click the Compatibility button anyway.
    I could use ActiveX filtering - true. All that this means is that Flash does not play on any of the websites. When I want to re-enable ActiveX for a particular website where I need to see the Flash Player item, this just triggers the error.
    This problem also happened on .14, .15 and well as the current .16 version. It did not happen with the previous version of Flash Player that I had on the system (version 10.2 I think).
    The fact is that either Flash Player or IE9 or both is/are broken. The two choices I am still left with are:
    1. Use software rendering (which contradicts the latest advertisements for IE9 about unleashing the power of IE)
    2. Use another browser - I have no problems with either Firefox or Chrome

  • Did Adobe Acrobat/reader stop providing browser integrated PDF viewing(addin) for Internet Explorer?

    Did Adobe acrobat and reader stop providing browser integrated PDF viewing capability for Internet Explorer?
    Hi, I have been trying to view PDF's directly on my browser (Internet Explorer 9). We used to be able to have this available. To be honest last configuration that did work was Internet Explorer 8 with Adobe Acrobat 7. But I recently tried with Intenet Explorer 9 with Adobe Acrobat X and did not work as expected (I tried to activate the add in for Adobe but the adobe addin for PDF did not show up) I have the following questions:
    1) Do you still provide PDF's viewing capabilties on Internet Explorer?
    2) If yes: Is there a propper Add-in we (users) are able to install for Internet Explorer?
    3) if yes: Do we require to have Adobe Acrobat to have this capability? (this was my experience with IE8 and Adobe Acrobat 7)
    Additional Info:
    There seems to be an addin for Chrome wich works as expected (opens PDF in browser) to this current date. This does not happen on IE.
    Thanks in advance.
    AlbertCastle

    Are you using the 64-bit edition of Internet Explorer?
    The Adobe Reader/Acrobat plugin is 32-bit, and will not work on a 64-bit browser.
    Other possibilities: http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

  • Problems viewing site in Internet Explorer

    Hi
    I have created this site in muse works fine in all browsers except IE
    http://www.bryanandemmaswedding.com/
    Some screenshots below of the problems in IE the text doesnt appear at all and everything comes in as seperate elements

    > Appreciat a fast help
    No help will be forthcoming until we can see the page in
    action,
    Link please
    Also, a more descriptive, specific explanation will help.
    Walt
    "fsurrey" <[email protected]> wrote in
    message
    news:ggva09$bmc$[email protected]..
    > Hi there,
    >
    > I have a very urgent problem as I am running out of time
    and need any help
    > please,
    >
    > I have a web site that I have just designed in
    Dreamweaver, everything is
    > totally perfect when I view it in Firefox, but when I
    view it in Internet
    > Explorer the trouble begins and without any reasonable
    explanation, mainly
    > I
    > have an image which is a background image of a table
    cell it is exactly
    > the
    > same table and image as I have used the same layout for
    all my pages, but
    > in
    > some pages it appear clearly and in others in does not ?
    >
    > I am really scared as I have a deadline with no clue how
    to solve this
    > Appreciat a fast help
    > Thanks
    >

  • Major Issues with views in A3

    I am having some major issues with views in A3.
    If you look at my screenshot I am in the Browser;GRID view, however many of my images are out of view to the right (should be 26). There is no way to see them or select them. Also note that there is no SIZE control on the bottom right!
    If i view it in LIST mode, all my images show up. If I go to FULL SCREEN everything works like it is suppose to. It just happens in
    http://farm5.static.flickr.com/4007/4354751139647d87b323b.jpg
    Any ideas on how I can fix this?

    If I go into split view, I do not get any scroll bars so there is no way of viewing all my images.

  • Captivate 8 - How to change to producing "project.json" file instead of a "project.txt" file?  Having issues with viewing published projects due to this.

    Captivate 8 - How to change to producing "project.json" file instead of a "project.txt" file?  Having issues with viewing published projects due to this.   Would be thankful fo rany/all advice.

    I'm having the same issue. I've been able to work around it by opening the txt file and copying the contents. Then I open a new file in Sublime Text 2, paste the contents and save the new file as "project.json". It seems to work, but it'd been nice if I didn't have to do this everytime I publish a new project.

  • Firefox canot load any websites, but internet explorer does

    Firefox cannot load any websites, but internet explorer does.
    == This happened ==
    Every time Firefox opened
    == this week ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)

    Hey Mez115, awesome to hear and thanks for reporting back! =)
    - Ralph

  • I've downloaded quicktime but every time I try to play a video on the apple website using internet explorer it asks me to download quicktime. If I use safari it works fine. Any suggestions

    I've downloaded quicktime but every time I try to play a video on the apple website using internet explorer it asks me to download quicktime again yet if I'm safari it plays fine. Any suggestions?

    That sounds like IE wants you to install the QuickTime ActiveX control.
    Go back to the page you're getting the message on. At the bottom of the screen, can you see a long rectangular box asking you to allow/install something? (Sorry, it's been a while since I've seen the box in question, so I can't recall the precise wording.)
    If so, allow/OK in that box. After the ActiveX control has gone in, can you see the videos in IE?

  • Photo stream "public website" in Internet Explorer - photo thumbnail's are gray, individual photo view is fine. Tested from various computers. No issue with Firefox, Safari or Chrome.

    Dear All,
    Recently I have started to use Photo Stream available from iCloud on iPhone device. I have made “test” photo stream with several photos in and set to “public website” in order to share photos with my relatives.
    The issue is with Internet Explorer where list of photos (thumbnails) are shown in gray color. I can view photo one by one and slideshow also works fine.
    On other computers IE behaves the same way.
    https://www.icloud.com/photostream/#A2532ODWsAl87
    No issue with photo list in thumbnails using Safari, Chrome or Firefox.
    Can someone help on this issue?
    It is very convenient to share photos via photo stream, but most of viewers by default has IE and many of them don’t have iCould account or apple device.
    Kind regards,
    M

    Dear safari rss
    Indeed, you are right, I have updated IE to version 10 and no issue with page view.
    Solution woud be to update IE to version 10 (I have not tested IE9).
    However users using Windows XP can have highest IE version 8. IE9 or IE10 is not suported in XP.
    Unfortunatelly there are still many windows XP at my friends circle.
    Thank you,
    Best regards

  • Firefox w/ not open forms from websites. Internet Explorer had no problem. Re-installed FF with no resolution.

    Firefox will not open forms (i.e. registration forms, class schedule, flyer, etc.) on certain websites. Updated Adobe Reader and Re-installed and updated FF. Still will not open the forms. Tried Internet Explorer with no problem at all. Tried FF on a different computer w/ no problem. Help please?

    I also have this problem. I cannot open links from a discussion board I frequent nor can I open links from my email. Also after opening my email, I cannot go to any other sites except my home page. I can then go no where else.
    When I close Firefox and try to reopen it, it does nothing! I have to bring up the Task Manager and end the Firefox process before I can get back in.
    To the best of my knowledge, this problem started with the new update to Ver. 3.6.9. I am running Windows XP Media Center 2005

  • Problem with af:showPrintablePageBehavior and Internet Explorer

    Hi, I am using JDeveloper 11.1.2.1.0.
    I have a table with the iterators Range size = -1 and the tables AutoHeightRows and FetchSize set to estimatedRowCount.
    I have added a commandButton with af:showPrintablePageBehavior to the page.
    The table I am printing generates 4 pages in Firefox, Chrome and Safari. In Internet Explorer 8 and 9 I only get 1 page. (The metadata on the page also say page 1 of 1. )
    Unfortunately we have some customers that use Internet Explorer, so how do I make this work for them?
    All data is viewed at the printable page in IE, but when printed there is only 1 page.
    Regards,
    Thomas H.

    Hi,
    not sure this is an issue with the showPrintablePageBehavior if IE shows all data in the browser after using this behavior. The print functionality is owned by the browser and obviously it doesn't get to all of the page content (which I think is out of the ADF Faces scope). You may try and file a Service Request with customer support for them to have a look. However, if the showPrintablePageBehavior properly displays the data, then I am not sure what we can do to make the browser native print functionality working
    Frank

  • Issue with Siteground "Website Wizard" estore & PayPal Screen

    We currently run a non-proft musical group (community orchestra) website on Siteground. We use the "Website Wizard" function, which lets you create and edit a website easily with canned pages using any web browser. No need to use Joomla, etc. As an option, you can use an ecommerce service such a PayPal with the "estore" page within the Wizard.
    For some reason, the PayPal screen which ties to our PayPal account does not come up when our audience members use Safari to try to buy concert tickets, but the other mainstream browsers work OK (Internet Explorer, Firefox, and Chrome for instance) with a PC or Android device.
    Using my iPad, I downloaded many other browsers such as Firefox and Chrome (and others), but even they won't work on it. It is as if Safari still does certain web browser functions. The upshot is that none of our audience can use iPads, iPhones, or Macs to buy concert tickets. I am guessing that a Mac would work with another browser, but I haven't been able to test that.
    Siteground tech support recently told me that the Website Wizard function will not be updated to fix the issue, so I am wondering if Safari itself can be tweaked to allow the PayPal page to come up when it is supposed to? Since the Wizard does everything for us it is all "backend" with no coding on our part. We simply select PayPal as an option for the estore and put in the PayPal account name and it does the rest - most of the time.
    I am willing to work with the Safari developers to resolve the issue. We'd like to be able to keep the current Siteground account and Website Wizard setup for ease of editing our site (anyone can do it), and we'd also like our audience to be able to use their slick Apple devices to easily order concert tickets. Thanks in advance.

    I can have a look at doing a direct link, but the Siteground "Website Wizard" estore function can be used to gather delivery information such as "Will Call" or sending the purchased tickets via US Mail. The estore function also sends a nice confirmation email to the audience member. Maybe PayPal would have a similar option for users with a simple direct link, so I need to look into that I guess.

  • Trouble opening website via Internet Explorer on PC

    Hi there, I have recently published two websites with iWeb, both of which open and run superbly in Safari on the Mac but when you try and open them on Internet Explorer on a PC only the top of the page will download and the rest of the site is invisible. Does anyone know why this is? I am using iWeb version 1.1.2 and have created both sites on my iMac which is running OS X 10.4.9 if this helps?
    I hope someone out there can help? I can give you the website addresses if you need further info?

    Due to my customer's most common setup I had to address these IE6 issues as well. Some background may illustrate the problems. Not only has IE6 difficulties with .png, but as well for example with lists (in case you use them, they are an undocumented feature of iWeb and somehat buggy), and more. To solve some of the .png issues iWeb spends some code utilizing "Active Script". That drives IE6 to render the page almost completely, and then the script will fix some of the ugly behavior. You can check that by your elements to navigate on top of your pages (these unfortunatley become .png) within IE6, or with the buttons to start a slideshow.
    What I found on your first page: Move the cursor over it, it turns to be a senstive area to start the user's mail program to send a mail to info@... - try to remove that first.
    Even more, there are a lot of setups of IE6 where "Active Script" is forbidden (in banks, insurances companies etc.). Ever tried to force a large organizition to migrate to IE7? Or to allow Active Script, let's say for 30.000 users? You'll get the impact...
    So here is what I did to obtain some compatibility with IE6:
    Installed IE6 on Paralles.
    Switched "Active Script" to "Never".
    Now you can check what is going on
    In my pages:
    Reengineered every element to navigate manually - no iWeb automatism, switched them all to off with iWeb's inspector
    Reconstructed every picture to the size they should be /outside/ of iWeb, using Graphics Converter
    Removed every frame from all text elements in iWeb
    Switched to web and windows compatible fonts (e.g. Courier to Courier New)
    Checked every page to contain plain text instead of graphic - click into the rendered page and try to drag: Does the the whole block move? Then you are on the wrong way
    Removed every formatting attribute from the text: Alignment, Highth etc.
    The only element I couldn't cover is the button for the slideshow - but I've read somewhere else that you can define an object and associate that with a link directly to the script on your server which iWeb puts there. But of course that does not help in case where your favorite visitors are cut off from using Active Script completely.
    Good Luck!
    Kai Schwarzer
    MacBook Pro C2D 2,33 15   Mac OS X (10.4.9)  

Maybe you are looking for

  • PNPCE in ABAP Query(SQ01) Selection is not working completely

    Hi All, I have developed an ABAP query using LDB PNPCE. I am reading data from IT000,IT0001 etc . I test the query in QA and I noticed that the PNCPCE screen doesn’t care about the selection in query. Like I have given the date range in PNCPE default

  • What is internet plug in missing

    how can i play online radio on macbook pro

  • Duplex printing for last 2 pages only

    A customer has an invoice report where they want the terms and conditions (which are 2 pages) duplexed while the report itself is not printed that way.  Any ideas if this can be done using native SSRS? Sherry

  • Business Process requirement for Steel Industries : Need expert Advise

    1. What is the best solution for i. setting weekly  production order priority with option to reshuffle priority withiout lossing earlier given priority ii. issuing melt index no for production orders , iii. issuing heat no for melt index & production

  • GOBAT60.EXE APPLICATION ERROR

    I have created a form in Forms [32 Bit] Version 6.0.5.0.2 (Production) having three graphs on the same canvas. when we run this form it give error. GOBAT60.exe Application Error. The instruction at "0x2e303831" referenced memory at "0X2e303831" The m