Problems displaying blog&photo gallery in Chrome

Hi everyone,
I'm rather new to site-creating. I've made a site with 2 photo-galleries and one blog-page in iWeb and published it to a local folder on my mac. Before moving forward and dealing with ftp-client etc., I just tried to check the general view. I opened the htlm-file I've got in my site-folder in Google-Chrome, everything is perfect, except for those galleries and blog. They aren't there. The headings and text-blocks are where they should be, but galleries and the block with a photo and beginning of my article on the blog-page are lacking. I've checked the "media" folder, all the photos are there, but they are lacking in the html-file opened in Chrome. When I open my site in Safari, it's looking correctly.
Probably, I could try to make the same pages without galleries, just adding independent photos, text, hyperlinks etc.. But this will be a bit time-consuming and not a "beautiful" solution.
I haven't found any idea how to fix this problem, so I'm waiting for your ideas and help!!!
Thank you in advance,
Kira

Don't open local files in Chrome. A page may not display properly.
Publish and then try again.
And if the pages look good in Safari they look good in any browser, except MSIE.
Remember, webpages are meant to be viewed on a webserver, not on the desktop.
Or use your built-in webserver.

Similar Messages

  • Help! problem displaying Web Photo Gallery in IE and Windows browser

    Hi all,
    Sorry if this issue is old news but, i have tried to find the answer in the archives first, with no luck.
    It's about this;
    I am working with Mac OSX 10.4.11 and Photoshop CS2.
    Recently i haveust published Web Photo Gallery on my website.
    It looks good in Safari and Firefox. But when viewed in Internet Explorer it's totally different layout. Thumbnails are shifted to the middle of the frame, and it is not a pretty sight.
    Can't find the way to fix it...
    here is the link
    http://www.exornocreations.com/html/gallery/pendants/PENDANTSindex.html
    If someone here has a clue how to go about it and wants to share a good tip i would be eternally grateful.
    Many thanks,
    Karmela

    >There are more browsers than just IE that will have trouble with this page.
    Which ones?
    I am currently building a site for a client and I have a page which should play a Movie inside an iFrame.
    My HTML includes heights and widths and is as follows (angled brackets have been removed for display purposes in the Forum):
    "iframe id="movie_play_iFrame" name="movie_play_iFrame" src="../movie/Movie-screen.gif" frameborder="0" scrolling="no" align="middle" height="269" width="398" /iframe"
    This works perfectly in the latest available version of Safari, Firefox, Netscape, AOL, and Opera.
    The only one that it does NOT work in is IE.
    In IE, the movie plays all right but it does so in a new window and not in the required position on the page (which is inside the iFrame).

  • Problem with mutiple photo gallery...

    Hello,
    I'm new to As3.0 (i'm a designer...) but I need to create a photo gallery, So I found a Tutorial On lynda.com.
    I'm using a code that works perfectly, and modified it (copy and paste it) to have 2 SAME photo gallery (using different images) displayed on the page.
    So I'm using a 2 thumbnails (one for each Gallery) and by scrolling on the X axis of each thumbnail you can see the differnet images availaible in the gallery. By clicking it displays the full size image in a container.
    So far so good.
    The problem is that when going form one gallery to another, the first viewed gallery doesnt allow the other gallery main size image to display simply because it is underneath it... Like if it was a layer under another  top layer...
    I would like to know if there is a way to make each gallery unload their full size image when clicking on the other gallery.
    SORRY IF THIS IS A BIT UNCLEAR BUT CAN EXPLAIN IF YOU ASK...
    HERE IS THE CODE
    var xml:XML;
    var xmlList:XMLList;
    var xmlLoader:URLLoader = new URLLoader();
    var container:MovieClip = new MovieClip();
    var imageLoader:Loader;
    var fullLoader:Loader = new Loader();
    var frontIndex:int = 0;;
    var containerMask:MovieClip = new MovieClip();
    var segment:Number;
    container.x = 115;
    container.y = -185;
    fullLoader.x = 275;
    fullLoader.y = -185;
    container.addEventListener(MouseEvent.MOUSE_MOVE, changeThumb);
    container.addEventListener(MouseEvent.CLICK, showPic);
    xmlLoader.load(new URLRequest("data/images.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    function mcunload1(event:MouseEvent):void
    fullLoader2.unload();
    fullLoader.load(new URLRequest(xmlList[frontIndex].attribute("full")));
    function xmlLoaded(event:Event):void
    xml = XML(event.target.data);
    xmlList = xml.children();
    for(var i:int = 0; i < xmlList.length(); i++)
    imageLoader = new Loader();
    imageLoader.load(new URLRequest(xmlList[i].attribute("thumb")));
    container.addChild(imageLoader);
    function changeThumb(event:MouseEvent):void
    segment = container.width / container.numChildren;
    frontIndex = Math.floor(container.mouseX / segment);
    if(frontIndex <= container.numChildren - 1)
    for(var j:int = 0; j < container.numChildren; j++)
    container.getChildAt(j).visible = false;
    container.getChildAt(frontIndex).visible = true;
    function showPic(event:MouseEvent):void
    fullLoader.unload();
    fullLoader.load(new URLRequest(xmlList[frontIndex].attribute("full")));
    addChild(fullLoader);
    container.filters = [new DropShadowFilter()];
    addChild(container);
    //SECOND IMAGE GALLERY
    //SECOND IMAGE GALLERY
    var xml2:XML;
    var xmlList2:XMLList;
    var xmlLoader2:URLLoader = new URLLoader();
    var container2:MovieClip = new MovieClip();
    var imageLoader2:Loader;
    var fullLoader2:Loader = new Loader();
    var frontIndex2:int = 0;;
    var containerMask2:MovieClip = new MovieClip();
    var segment2:Number;
    container2.x = 115;
    container2.y = -80;
    fullLoader2.x = 275;
    fullLoader2.y = -185;
    container2.addEventListener(MouseEvent.MOUSE_MOVE, changeThumb2);
    container2.addEventListener(MouseEvent.CLICK, showPic2);
    xmlLoader2.load(new URLRequest("data/images2.xml"));
    xmlLoader2.addEventListener(Event.COMPLETE, xmlLoaded2);
    function mcunload(event:MouseEvent):void
    fullLoader.unload();
    fullLoader2.load(new URLRequest(xmlList2[frontIndex2].attribute("full")));
    function xmlLoaded2(event:Event):void
    xml2 = XML(event.target.data);
    xmlList2 = xml2.children();
    for(var i:int = 0; i < xmlList2.length(); i++)
    imageLoader2 = new Loader();
    imageLoader2.load(new URLRequest(xmlList2[i].attribute("thumb")));
    container2.addChild(imageLoader2);
    function changeThumb2(event:MouseEvent):void
    segment = container2.width / container2.numChildren;
    frontIndex2 = Math.floor(container2.mouseX / segment);
    if(frontIndex2 <= container2.numChildren - 1)
    for(var j:int = 0; j < container2.numChildren; j++)
    container2.getChildAt(j).visible = false;
    container2.getChildAt(frontIndex2).visible = true;
    function showPic2(event:MouseEvent):void
    fullLoader2.unload();
    fullLoader2.load(new URLRequest(xmlList2[frontIndex2].attribute("full")));
    addChild(fullLoader2);
    container2.filters = [new DropShadowFilter()];
    addChild(container2);

    This is just a quick guess.  Whenever you call...  fullLoader.unload();  also call fullLoader2.unload(); and vice versa.

  • Problem Uploading Web Photo Gallery in DW

    I'm a newbie at this, so please bare with me. I've been at this same problem for 3 days & I'm finally breaking down & asking for help. I want to be as helpful as possible here, so I'm just going to give as much info as I can, so I'm sorry in advance if some of it doesn't matter.
    I created my web photo gallery through PS & am putting them into DW with the iFrame. My connection works just fine when I preview it, as I can jump from page to page, seeing all of my galleries. I'm been able to put my pages up, but the galleries do not come up. I keep getting the error 404 message up in all of my frames.
    I have all of my galleries in one file, with each specific gallery in a sub-folder with all of the attachment files.
    I've tried every combination I can think of when it comes to my local root folder and default images folder to see if I just had the wrong folder selected. I'm more so thinking it would have to be the DIF if it were anything like this, because the LRF has to be the main folder. I've tried to C&P the gallery file in several different folders, use it as my DIF, put it, & see if it works, & it doesn't. I tried to upload the galleries themselves through my web server (host monster) and also cyberduck.
    I've read everything I could find, & I read that I needed to link up the index.html to the page I'm building. But I assumed I already did that, other wise I wouldn't be able to preview it right? If I still need to do this, where should I go into specifically to do this?
    I also read I should link up the files from the navigation system in DW. Where would I go about doing this?
    As you can see, I'm pretty lost.

    http://www.rickyhavlik.com/galleries/grant%20park/index.htm
    That page is not on the server - did you upload it?  By the way, it's not a good idea to use spaces in your file/pathnames for the web.
    The page is just not where you have told the browser to look for it here -
    <iframe height="600" width="600" marginheight="250" marginwidth="250" src="galleries/grant park/index.htm"</iframe>

  • Problem exporting web photo gallery in Adobe Lightroom

    Can not export a web photo gallery using SlideShowPro 1.9.8.5 in Adobe Lightroom 1.4.  In the Web Tab I click on Export which brings up the Save Web Gallery window, I select location, give a file name and click save, but nothing is created.  Have noted that in the Save As Type box the only option is Supported Files, is this OK?  If so, what could the problem be?

    Can't answer the question without looking at the code. Being you have DW, I would parse the code there and you will get more help in the Dreamweaver forum.

  • Problem viewing Web Photo Gallery in IE6

    I created a Web Photo Gallery in CS3 and uploaded it to my website via Dreamweaver. It will not display in IE6, but it will in Firefox.
    Has anyone else encountered this issue or know of a reason why this would happen?
    Thanks so much for any help!

    Can't answer the question without looking at the code. Being you have DW, I would parse the code there and you will get more help in the Dreamweaver forum.

  • Problem in responive photo gallery

    I have inserted the yoxview  photo gallery from this website http://www.yoxigen.com/yoxview/.Here is the code.
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class=""><!-- InstanceBegin template="/Templates/Vestrytemplate.dwt" codeOutsideHTMLIsLocked="false" -->
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Photo Gallery</title>
    <script type="text/javascript" src="yoxview/yoxview-init.js">
    </script>
    <script type="text/javascript" src="yoxview/yoxview-nojquery.js"></script>
    <script type="text/javascript">
                $(document).ready(function(){
                    $("#thumbnails").yoxview({
                     backgroundColor: 'Blue',
                     playDelay: 5000
    </script>
    <link href="yoxview/yoxview.css" rel="stylesheet" type="text/css">
    <!-- InstanceEndEditable -->
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="CSS/Layout.css" rel="stylesheet" type="text/css">
    <link rel="stylesheet" href="flexslider.css" type="text/css">
    <link href="css/flexnav.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        background-color: #E9E9E9;
    </style>
    <style>
    footer
        min-height: 80px;
        background: #000;
        border-top-width: 2px;
        border-top-style: solid;
        border-top-color: #C7E003;
    </style>
    <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>-->
    <script src="jquery.min.js"></script>
    <script src="jquery.flexslider.js"></script>
    <!-- Place in the <head>, after the three links -->
    <script type="text/javascript" charset="utf-8">
      $(window).load(function() {
        $('.flexslider').flexslider();
    </script>
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--[if lt IE 9]>
    <link href="IE-only.css" rel="stylesheet" type="text/css">
    <![endif]-->
    <script src="respond.min.js"></script>
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="LayoutDiv1"><img src="SJV-Images/Banners/LimeGreenheader-new-curved.png"/></div>
      <div id="Nav">
    <div class="menu-button">Navigation</div>
        <nav>
              <ul data-breakpoint="800" class="flexnav">
                <li><a href="">Home</a>
               <!--   <ul>
                    <li> <a href="#content">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                    <li><a href="">Sub 1 Item 4</a></li>
                  </ul> -->
                </li>
                <li><a href="">Profiles</a>
                  <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a>
                      <ul>
                        <li><a href="">Sub 2 Item 1</a></li>
                        <li><a href="">Sub 2 Item 2</a></li>
                        <li><a href="">Sub 2 Item 3</a></li>
                      </ul>
                    </li>
                    <li><a href="">Sub 1 Item 3</a>
                      <ul>
                        <li><a href="">Sub 2 Item 1</a></li>
                        <li><a href="">Sub 2 Item 2</a>
                          <ul>
                            <li><a href="">Sub 3 Item 1</a></li>
                            <li><a href="">Sub 3 Item 2</a></li>
                            <li><a href="">Sub 3 Item 3</a></li>
                          </ul>
                        </li>
                      </ul>
                    </li>
                  </ul>
                </li>
                <li><a href="">Photo Gallery</a>
                 <!-- <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                  </ul> -->
                </li>
                <li><a href="">Alumni</a>
                 <!-- <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                  </ul> -->
                </li>
                <li><a href="">Contact Us</a>
              <!--    <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                  </ul> -->
                </li>
              </ul>
            </nav>
      </div> <!-- End div id="Nav"  -->
      <div id="LayoutDiv2">
      <!-- InstanceBeginEditable name="Vestry-Content" -->                     
             <!--   <script>
                if (Galleria) { $("body").text('Galleria works') }
            </script>-->
    <div class="yoxview">
    <h3>   Photo Gallery</h3>
    <a href="yoxview/Images-Yoxview/Trial_Gallery1.jpg"> <img src="yoxview/Images-Yoxview/Thumbnails/Trial_Gallery_thumb1.jpg"alt="First" width="100" height="97" title="First image" /></a>
        <a href="yoxview/Images-Yoxview/Trial_Gallery2.jpg"><img src="yoxview/Images-Yoxview/Thumbnails/Trial_Gallery_thumb2.jpg"alt="Second" width="100" height="97" title="Second image" /></a>
         <a href="yoxview/Images-Yoxview/Trial_Gallery3.jpg"><img src="yoxview/Images-Yoxview/Thumbnails/Trial_Gallery_thumb3.jpg" alt="Third" width="100" height="97" title="Third Image"/></a>
        <!--<img src="photo1.jpg">
        <img src="photo2.jpg">
        <img src="photo3.jpg">-->
    </div>
    <!--<script>
        Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
    Galleria.run('#galleria');
    </script>-->
    <!-- InstanceEndEditable -->
    </div>
      <!--
      <div id="footer">This is the content for Layout Div Tag "footer"</div> -->
    </div>
    <footer></footer>
    <script type="text/javascript" src="js/jquery.flexnav.min.js"></script>
    <script type="text/javascript">$(".flexnav").flexNav({'animationSpeed': 150});</script>
    </body>
    <!-- InstanceEnd --></html>
    The plug-in works.But i want to increase the height of the div with the class = yoxview.But i couldn't find the such class.Here is the css.
    /* YoxView v2.0 CSS file */
    #yoxview .yoxview_bottom{ bottom: 0; }
    #yoxview .yoxview_right{ float: right; }
    #yoxview .yoxview_left{ float: left; }
    #yoxview_popupWrap
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 100;
    #yoxview
        position: absolute;
        font-family: Arial, Sans-Serif;
        z-index: 999;
        border: solid 1px #999;
        overflow: hidden;
        font-size: 10pt;
        text-align: left;
        max-height: 1000px;
    #yoxview a img, #yoxview_infoPanel a img{ border: none; }
    #yoxview a:focus{ outline: none; }
    #yoxview div.yoxview_imgPanel{ position: absolute; top: 0; left: 0; }
    #yoxview div.yoxview_mediaPanel
        position: absolute;
        background: #191919;
        width: 100%;
        height: 100%
    #yoxview .yoxview_ctlBtn
        position: absolute;
        z-index: 3;
        display: block;
        text-decoration: none;
        outline: none;
        width: 50%;
        height: 100%;
    #yoxview .yoxview_ctlBtn img
        position: absolute;
        border: none;
        top: 50%;
        margin-top: -22px;
    #yoxview a.yoxview_ctlBtn:focus, #yoxview a.yoxview_ctlBtn:active{ outline: none; outline: none;}
    #yoxview .yoxview_notification
        width: 59px;
        height: 59px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -30px;
        margin-left: -30px;
        z-index: 4;
        opacity: 0.6;
        filter: alpha(opacity=60);
        background-image: url(images/sprites.png);
        background-repeat: no-repeat;
        display: none;
    #yoxview #yoxview_ajaxLoader img
        padding: 13px;
    #yoxview .yoxview_popupBarPanel
        position: absolute;
        z-index: 4;
        min-height: 70px;
        width: 100%;
        right: 0;
    #yoxview #yoxview_menuPanel
        width: 145px;
        height: 42px;
        padding-top: 0px;
        padding-right: 9px;
        position: absolute;
        right: 0;
        background: url(images/sprites.png) no-repeat left -77px;
        background: rgba(0, 0, 0, 0.8);
        -moz-border-radius: 0 0 0 15px;
        -webkit-border-radius: 0 0 0 15px;
        border-radius: 0 0 0 15px;
        top: -42px;
    #yoxview #yoxview_menuPanel a
        display: block;
        width: 45px;
        float: right;
        text-align: center;
        font-size: 0.8em;
        position: relative;
        margin-top: -5px;
        padding-bottom: 13px;
        text-decoration: none;
        font-family: Arial, Sans-Serif;
    #yoxview #yoxview_menuPanel a span{ color: White; display: block; margin-bottom: 3px;  }
    #yoxview #yoxview_menuPanel a.last{ margin-left: 0; }
    #yoxview #yoxview_menuPanel a:focus{ outline: none; }
    #yoxview_infoPanel
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 0;
        color: White;
        z-index: 2;
        overflow: hidden;
    #yoxview_infoPanel #yoxview_infoPanelBack
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        left: 0;
        top: 0;
    #yoxview_infoPanel #yoxview_infoPanelContent
        position: absolute;
        width: 100%;
        z-index: 2;
        top: 0;
        left: 0;
    #yoxview_infoPanel span#yoxview_count
        display: block;
        width: 55px;
        font-size: 0.8em;
        float: left;
        text-align: center;
        padding-top: 8px;
        color: #bbb;
    #yoxview_infoPanel #yoxview_infoText
        margin: 0 55px;
        font-size: 12pt;
        padding: 5px 0;
    #yoxview_infoPanel #yoxview_infoText #yoxview_infoTextDescription
        margin-top: 1em;
        font-size: 10pt;
        padding-bottom: 0.5em;
        max-height: 200px;
        overflow: auto;
        padding-right: 10px;
    #yoxview_infoPanel #yoxview_infoText a, #yoxview .yoxview_error a{ color: #a7d557; text-decoration: none; outline: none; }
    #yoxview_infoPanel #yoxview_infoText a:hover, #yoxview .yoxview_error a:hover{ color: #d5eeaa }
    #yoxview_infoPanel a.yoxviewInfoLink
        display: none;
        opacity: 0.8;
        float: right;
        margin-right: 5px;
        margin-top: 5px;
    #yoxview_infoPanel a.yoxviewInfoLink:hover{ opacity: 1 }
    #yoxview #yoxview_helpPanel
        display: none;
        width: 201px;
        height: 312px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -171px;
        margin-left: -111px;
        z-index: 5;
        color: White;
        padding: 20px;
        padding-top: 10px;
        cursor: pointer;
    #yoxview #yoxview_helpPanel h1{ font-family: Arial Black, Arial, Sans-Serif; font-size: 1em; }
    #yoxview #yoxview_helpPanel p{ margin-top: 80px; }
    #yoxview #yoxview_helpPanel span#yoxview_closeHelp{ display: block; position: absolute; bottom: 20px; left: 0; text-align: center; width: 100%; }
    #yoxview .yoxview_error
        display: block;
        text-align: center;
        color: White;
        font-family: Arial, Sans-Serif;
        font-size: 14pt;
        top: 41%;
        width: 100%;
        height: 20%;
        position: absolute;
        padding: 10px;
    #yoxview .yoxview_error .errorUrl{ font-size: 10pt; }
    #yoxview .yoxview_top{ top: 0; width: 50%; }
    #yoxview .yoxview_element{ width: 100%; height: 100%; position: absolute;  border: none; background: #333; }
    .yoxview-thumbnails a
        float: left;
        margin: 4px;
        /* For thumbnails opacity: */
        opacity: 0.8;
        filter: alpha(opacity=80);
    .yoxview-thumbnails a:hover
        /* For thumbnails opacity: */
        opacity: 1;
        filter: alpha(opacity=100);
    .yoxview-thumbnails a img
        /* Set white borders around the thumbnails, instead of the browser's default Blue: */
        border: solid 1px #ffffff;
    .yoxview-thumbnails-details{ margin-bottom: 1em; }
    .yoxview-thumbnails-details h2{ margin-bottom: 0; padding: 0; font-size: 1.2em; font-weight: bold;}
    Where i could increase the height of the div?Pls help me.

    http://www.yoxigen.com/yoxview/usage.aspx#installation
    Please visit this link.Here in the first step,they have said to add class=yoxview.I did the same.But i couldn't find it in CSS.I have added these links.
    <script type="text/javascript" src="yoxview/yoxview-init.js">
    </script>
    <script type="text/javascript" src="yoxview/yoxview-nojquery.js"></script>
    <script type="text/javascript">
                $(document).ready(function(){
                    $("#thumbnails").yoxview({
                     backgroundColor: 'Blue',
                     playDelay: 5000
    </script>
    <link href="yoxview/yoxview.css" rel="stylesheet" type="text/css">
    HTML Markup
    <div class="yoxview">
    <h3>  Photo Gallery</h3>
    <a href="yoxview/Images-Yoxview/Trial_Gallery1.jpg"> <img src="yoxview/Images-Yoxview/Thumbnails/Trial_Gallery_thumb1.jpg"alt="First" width="100" height="97" title="First image" /></a>
        <a href="yoxview/Images-Yoxview/Trial_Gallery2.jpg"><img src="yoxview/Images-Yoxview/Thumbnails/Trial_Gallery_thumb2.jpg"alt="Second" width="100" height="97" title="Second image" /></a>
         <a href="yoxview/Images-Yoxview/Trial_Gallery3.jpg"><img src="yoxview/Images-Yoxview/Thumbnails/Trial_Gallery_thumb3.jpg" alt="Third" width="100" height="97" title="Third Image"/></a>
    Please help.

  • Problems with flash photo-gallery xml

    Hello,
    I need help. I have bought your photogallery template and i
    am having problems with it.
    When i test the gallery on my portfolio website (html) all it
    comes up is the background, the pictures and thumbnail pictures
    wont load. I am putting the files in the right folder and using the
    swf in an html (dreamweaver cs3). what is it happening?
    I dont know xlm. Plz give me a hand??
    Thanks

    Hi DZ,
    I am testing it locally. I didn't even upload anything yet.
    And yes, i put the swf into my html portfolios page (dreamweaver
    cs3) and tested locally. the pictures wont show up, only the bg for
    the photo-gallery. I bought this template here at the
    exchange

  • CS4 problem with Web Photo Gallery Plug-in

    I have googled answers to the question of how to get Web Photo Gallery back into Automate for CS4. I put the Content disc in, and went to Goodies-Adobe Photoshop CS4 Extended-Optional Plug-ins-Automate. There are three files there (ContactSheetll.plugin, PhotomergeUI.plugin, and WebContactSheetll.plugin. When I click on each of the files, I get the message: Could not complete your request because Photoshop does not recognize this type of file. This has happened with both the content disc goodies and the Adobe download that was recommended. Has anyone experienced this problem, and are there any solutions?

    If anyone is still following this thread....I having the same problem. I downloaded the CS4 plugin and copied the folder to C:\Program Files\Adobe\Adobe Photoshop CS4 (64 Bit)\Presets\Web Photo Gallery but it doesn't show / appear when I go to file / automate / in CS4. Does anyone have any siggestions? Do I have to "turn on" the feature somehow in ver 11?
    Thanks,  Airpix

  • Problems displaying website in IE and Chrome

    Hi.
    I have recently created my first website in DW and it turns out great until I export it from DW. That's where the problem starts.
    I have constantly observed my website's behaviour during creation, previewing it repeatedly to make sure everything works as it should. Unfortunately I neglected doing this in more than just one browser which brings me to my current problem.
    My website works perfectly fine in Firefox but IE and Chrome fail to recognise the site's borders and keep the text running in the same line until the actual paragraph ends in DW. To verify you can have a look at my website here: www.christopherfunke.com
    I really hope somebody can help me with this.
    Thank you in advance.
    Kindest regards,
    Chris

    Typically, it's the other way around.
    First validate your code and fix reported errors.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    If that doesn't fix the problem, post a link to your problem page.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Hide some folders from the "Photo" gallery?

    I use TrekBuddy, a navigation software. Trekbuddy stores map snippets on the phone, hundreds of little images in graphical format (JPEGs or PNGS).
    When I go into "Photos", Under "All"I see thousands of pictures because the phone finds all the map snippets.
    How can I hide the map snippets from the "Photo" galery?
    many thanks

    Hi everyone,
    Is there a way we can send a message to Nokia about this situation. It is really frustrating. I am very happy with the N8 in everything else, but have the same problem that the photo gallery gets fill up of the song/album images, I also have images for a lot of my contacts on my phone and it is frustrating to try to look for pictures in only one folder where I wish to have them. The other ones I would like to have a folder for contact images, songs, etc.
    A lot of  people suggest to use apps like folder hide and similar, but that is not the idea, that you have to mark and move the files and then additionally to input a password. Some people need to hide pictures, I only just don't what them to show on my normal gallery display.
    Does Nokia read this posts on their forum ?
    Will they ever follow users suggestions ?
    This is a problem from long time ago, I had it with the with the Nokia nightmare phone N97 which is their worst phone ever. What a pity because they use to do them so well before. For example the N8 is very good, I would have gone for a 1 Ghz processor and some extra RAM, but who knows who is the crazy guy behind those decisions.
    Hope we find a solution some day to this folder problem.

  • Ios8.3 cant share photo to wechat in photo gallery.

    I Just upgrade my iphone 6 plus to ios 8.3, but having problem with the photo gallery sharing.after i taking photo i wan to share to wechat from gallery. It turn back to gallery.now i only can share photo bu open the wechat apps and share in side the apps.did u guy got same problem with me?and what can i do to fix it??

    I have this problem as well. Didn't notice it earlier, but I think it was the 8.3 update. Can't share anything to WeChat (safari, photos, etc.)
    Please fix.

  • Issues importing XML photo gallery SWF in Catalyst

    Hey everyone,
    I'm creating a mini-site using Catalyst, and am trying to include a photo gallery on one of the pages. Problem is, the photo gallery uses XML, and grabs the photos from a folder. The photo gallery works great on its own, but when I import the gallery SWF into Catalyst and run it, nothing shows up. I've found a few posts saying to move the XML and other corresponding files into the "/Library/Application Support/ Adobe/Flash Catalyst/workspace/Project/bin-debug" folder, and tried it with no luck. I even tried publishing the project (both locally and to the web), and then adding the XML and photo folder in, but still didn't have any luck getting it to work. Has anyone had any similar issues/ have an idea of how to fix it?
    Any help would be greatly appreciated!

    I've been pointing people here for issues relating to xml driven swfs.
    http://flashcats.net/2010/05/29/using-an-xml-driven-swf-in-catalyst/
    Also, in regards to the previous comment, the run-local will work on your machine, the deploy-to-web when you put the content on the internet. This post has a bit more information.
    http://flashcats.net/2010/06/23/run-local-vs-deploy-to-web/

  • Problem to open photos in E7

    When I try to open photos in my E7, I will only have the black screen. I can take photos but I am not able to see photos .  I have reinstalled the software but nothing helps.
    Ovi Suite problem: MTP USB DEVICE FAILURE, what this means?
    Solved!
    Go to Solution.

    This solved my black screen problem in E7 photo gallery.
    09-Dec-2011 01:38 PM
    backup your data on pc using Nokia suite then on home screen dial *#7370# to FOMRMAT your E7 and if it asks lock code then enter 12345 this procedure will solve your problem of camera app

  • Flash not displaying photos in Flash photo Gallery

    I have several web sites that use a flash photo gallery to display the photos. All worked until a few months ago when the photo were not displayed to users who used Mozilla Firefox, or MAC users using Safari for their browsers. The albums were blank, the thumbnails were blank. Yet if you used Google Chrome or Internet Explorer, all photos displayed perfectly. I have been to the Firefox forums and they point to Flash. I was using Flash 11.5.502.146, then I downgraded to Flash 10.3. To my surprise all photos display now on my Firefox browse V18.0. So there is definitely a problem with the newer Flash displaying photos in a flash gallery. What can be done to fix this?

    report the bug:  https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Maybe you are looking for

  • Bank charges on LC to be inventorize

    Hi SAP GURUS, I want to inventorise the Letter of credit charges. The scenario is material is imported. This is done on bank LC. Bank issues LC on submitting PO. For this bank charges % which is as per the value of material, freight paid for inportin

  • How to call pl sql stored procedure or function in OAF 10 plus versions

    Hello All, I am using J-dev 10.1.3.3.0.3 version.I want to call stored procedure from package in one of my controller. I tried using "txn.createCallableStatement" but it is saying that createcallablemethod is not available.Does any one knows about th

  • Is there any hope for my 5S after it's dip?

    Hi All I dropped my 5S in water two days ago.  I got it out in seconds, powered it off, dried it with a cloth, removed sim, and shook all water out and placed it in rice.  It's been in the rice in the airing cupboard for 48 hours.  So I took it out a

  • Cannot reïnstall photoshop cc

    Deleted photoshop cc by mistake, I cannot find my photoshop cc in my app list. However it seems that I can perform updates for my photshop cc even if I don't have it anymore. I have a mac.

  • Phone malfunctioned while all other functions work. This is a iPhone 4S.

    I have a iPhone 4s & has been working well for ~ 10 months. Today I can't make any calls, nor receive any calls. I can't access the contact list. it looks like the phone icon stuck on screen. I noticed the iOS7 is ready for update. is that the reason