PSE 5-send photo gallery to own website with FTP

I'm a newcomer to PSE and
want to send a photo gallery to a website which i am setting up. The PSE instructions ask for FTP details so that it can send the information to a folder with the host. I propose setting up the website using an old version of Dreamweaver MX2004. Can I import this folder straight in to Dreamweaver please, and does anyone know what type of file it is? Is it a HTML file?
Many thanks

The FTP folder contains many types of files. Some of which maybe html,xml etc.

Similar Messages

  • Publish Calendar to My Own Site (with ftp)

    Is there a way to publish an iCal calendar to my own site (with ftp login)?
    Thanks in advance
    <big>Daniel Gilmour</big>

    OK, I just tried using the publish option to my own server and used my ftp login. Everything seemed to work fine, except, when I go to my site where the iCal calendar is located, it just downloads to be put in iCal. Once in iCal, a message saying "this calendar is corrupt" comes up.
    <big>Daniel Gilmour</big>

  • Putting a bridge photo gallery into my website

    I created a photo gallery in Bridge.  I saved it into a separate folder in my website's folder.
    How do I add the gallery to one of my pages in Dreamweaver?
    I took the html code and put it into my page and it just listed all the files and their sizes.
    This is an html gallery.  I'm using Windows Vista and Dreamweaver cs5.5 and the newest bridge.
    Any help?

    Hi,
    perhaps it would be better to start with a ready-made solution for your photo gallery. Later, when you see the mode of operation and how they work you could use bridge in conjunction with DW, ok?
    Just look around in and on these pages and don't get confused by the large range, look at the different sides in peace, it is worthwhile.
    http://www.lokeshdhakar.com/projects/lightbox2/  (I use it)
    http://www.shadowbox-js.com/ (I use it too)
    http://fancybox.net/
    Countless (57 possibilities) :-): http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    http://sorgalla.com/projects/jcarousel/#Examples (many variation possibilities and examples)
    http://www.flash-slideshow-maker.com/ (I'm using the paid version.)
    DW extensions: http://www.fourlevel.com/extensions.htm
    aso.
    ...and here some tutorials:
    http://www.google.de/#q=dreamweaver+slideshow&hl=de&prmd=v&source=univ&tbs=vid:1&tbo=u&ei= 2FrqS-X0MoqMOOrv2OkK&sa=X&oi=video_result_group&ct=title&resnum=4&ved=0CDMQqwQwAw&fp=79a60 95848c03fc9
    Perhaps thereafter will be no need for a step by step solution anymore, ok?
    Hans-G.

  • Is it possible to creat a Photo Gallery on CD/DVD with downloadable content

    I am looking for a way to create a photo gallery, distribute it via CD or DVD, and have the end user be able to download the photos in the gallery from within the photo gallery. This would function exactly like the iPhoto web galleries, but would be distributed on CD/DVD rather than posted to the web. Is this possible? I am looking for a way for a user to download the photos, in low res and high res, from within a gallery browser.

    It is not a matter of my wanting to overcomplicate things. It is a client request. They want to be able to send out photos of their products on CD/DVD, have the images pop up in a nice looking preview (slideshow) and allow the user to have the ability to download the photos, low res or high res, to their desktop from within the preview (slideshow).
    This is a quite common approach for equipment manufacturers who are trying to simplify the process for their end users.

  • Any suggestions on hosting my own website with OS X Server?

    I am currently taking the International Baccalaureate programme, taking visual art as a higher level subject. And my university counselor os suggesting me to create my own website as an online portfolio for all my work, I have a 2010 MacBook hanging around that I don't really use and should be capable to host a server from my home. Just before I go right in and buy OS X Server is there anything else I should know about hosting my own website for an online pro to flip? Think of it as an online gallery. Thanks ahead!

    Actually another thing, I'm trying to see what software I can use to make my website, I don't want to use iWeb it's just a little to rudimentary (in my opinion). Any other web development software that is user friendly and can create semi professional websites? Would be best if no coding is involved since I have no idea how to.

  • Generate Photo Gallery XML for Spry with Adobe Bridge

    Wanted to post a note to what I've discovered/worked out -- a
    way to
    generate a very useful photos.xml from Adobe Bridge. If you
    use Bridge,
    it's very easy to add titles, keywords, ratings -- all kinds
    of metadata
    that one might use in a photo gallery. Here it is in case
    anyone wants
    to use.
    The script is based on one I found at the Adobe User to User
    Bridge
    Scripting Forum for exporting a CSV file.
    Note 1: this particular script doesn't take into account
    CDATA that
    might exist in your metadata, like ampersands in your title.
    I've just
    avoided using those, but you could also have the script write
    out a
    CDATA node for that info instead.
    Note 2: this script does not write out a thumbpath,
    thumbwidth or
    thumbheight attribute. But usually the thumbpath is the exact
    same as
    the regular "path" attribute, and the thumbwidth and
    thumbheight are
    just a ratio of the regular "width" and "height" attributes.
    I added a
    bit of JS to the gallery.js file to calculate those before
    growing the
    thumbnail on rollover.
    Personally I'm using keywords as categories and titles as
    captions and
    sorting by rating (stars in Bridge), so here's the .jsx file
    I created.
    The script should be saved to the folder "StartupScripts" in
    Program
    Files/Common Files/Adobe.
    Hope this is useful for others too!
    #target bridge
    if (BridgeTalk.appName == "bridge" ) {
    // create menu
    var menu = MenuElement.create( "command", "Export XML File",
    "at the end
    of Tools");
    menu.onSelect = function(m) {
    try {
    // ask for the name of the output file
    var f = File.saveDialog("Export XML file to:", "XML
    File:*.XML");
    if ( !f ) { return; }
    // open filestream and write first line
    f.open("w");
    f.writeln("\<photos\>\r\r");
    // get a list of all the visible thumbnails in Bridge
    var items = app.document.visibleThumbnails;
    for (var i = 0; i < items.length; ++i) { var item = items
    f.writeln("\<photo path = \"" + item.name + "\"" + "\r" +
    "width = " +
    "\""+ getWidth(item) + "\"" + "\r" + "height = " + "\""+
    getHeight(item)
    + "\"" + "\r" + "rating = " + "\""+ getRating(item) + "\"" +
    "\r" +
    "categories = " + "\""+ listKeywords(item) + "\"" + "\r" +
    "caption = "
    + "\""+ getTitle(item) + "\"" + " \>" + "\r" +
    "\<\/photo\>\r\r" ); }
    f.writeln("\<\/photos\>");
    f.close();
    } catch(e) {
    function getTitle(tn) {
    md = tn.metadata;
    md.namespace = "
    http://purl.org/dc/elements/1.1/";
    var varTitle = md.title;
    return varTitle;
    function getWidth(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/tiff/1.0/"
    var varWidth = md.ImageWidth;
    return varWidth;
    function getHeight(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/tiff/1.0/"
    var varHeight = md.ImageLength;
    return varHeight;
    function getRating(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/xap/1.0/"
    var varRating = md.Rating;
    return varRating;
    function listKeywords(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/photoshop/1.0/";
    var Keywords = md.Keywords;
    var varKeywords = "" ;
    for ( var i = 0; i < Keywords.length; ++i ) { varKeywords
    = varKeywords
    + Keywords + ","; }
    return varKeywords;

    I updated the script so it exports an XML file from Bridge
    with full
    compatibility with the Spry Demo Photo Gallery, to use as
    photos.xml.
    It's at the same address:
    http://www.imagicdigital.com/spry/bridge_export_xml.zip
    To Use:
    The script goes in the folder "StartupScripts" in Program
    Files/Common
    Files/Adobe.
    Launch Bridge and browse to a folder that contains the files
    you want in
    your gallery -- the "source" folder, as it were.
    Choose the menu command "Tools > Export XML for Spry
    Gallery".
    Type a name for your XML file in the Save dialog box, choose
    a location,
    and hit "Save".
    In the dialog box that pops up, enter a max length/width for
    your
    thumbnails, in pixels. Some common sizes are "75" , "100" or
    "125".
    Hit "OK". You should see an alert pop up telling you "XML
    file
    successfully created!"

  • I am unble to send photos on my iPhone 4S with ios7 unless I shut it off an turn it back on. I can receive photos with no issue

    Not sure why but unless I turn my phone off then back on a cannot send photos and even when I do that it will only send one. I have no issue recieving photos

    Yes, to sync with iCloud on your Mac you will need to upgrade.
    You can certainly upgrade to Mountain Lion but OS X Mavericks is due out within the next month so it may be worth it to wait. In the meantime you can access your iCloud contacts, calendars, etc... from iCloud.com. Sign in with your Apple ID.
    Here is more info on Mavericks: Apple - OS X Mavericks - Do even more with new apps and features.

  • Display video on my own website with WVC54GCA

    I have my own website and I want to display my webcam video on it. 
    Currently I'm using the TOZ (as well as linksys-cam.com), but wanted to know if I could display the video on my own website without all the linksys UI surrounding the video. 
    I want just the video portion to display on my own domain - does that make sense?  Is this possible? 

    Here http://forums.linksysbycisco.com/linksys/board/message?board.id=Cameras&thread.id=1108&view=by_date_... and here http://forums.linksysbycisco.com/linksys/board/message?board.id=Cameras&message.id=10621#M10621
    Maurice 
    Message Edited by maurice118 on 01-14-2010 10:16 AM

  • How do I send photo shop element 8 attachments with gmail

    I am told that photo shop file is an executable file that cannot be sent by gmail. I attach the photo file to my gmail but it refuses to send it.

    Normally, to deactivate any Adobe product you just need to click the Deactivate option found under the Help option of the main menu bar at the top of the application window.

  • How to insert a Bridge photo gallery into a webpage with Dreamweaver

    I have made the changes to the web gallery index page (from Bridge) as indicated in http://foundationphp.com/tutorials/gallery/embed3.php  in DW.  However, I normally do not use DW, but need to now.  I have the new web page where I want the gallery to appear, but am currently stuck.  I need a very clear, basic step by step instruction as to how to insert the gallery/index page.  Below is the DW code screen from the new page where I want it to appear (not sure if this is needed).  Thanks for your help!  Ron
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Visual Arts Gallery Giselle M Olivera</title>
    <style type="text/css">
    <!--
    .style5 {
      font-family: "Kunstler Script";
      font-size: 21px;
    .style7 {font-family: Geneva, Arial, Helvetica, sans-serif}
    a:link {
      text-decoration: none;
      color: #000000;
    a:visited {
      text-decoration: none;
      color: #000000;
    a:hover {
      text-decoration: underline;
      color: #33FFFF;
    a:active {
      text-decoration: none;
      color: #000000;
    .style8 {color: #000000}
    -->
    </style>
    </head>
    <body>
    <div align="center">
      <table width="227" border="1">
        <tr valign="top">
          <td width="217" align="center" valign="top"><div align="center"><span class="style7"><span class="style8"><a href="./">HOME</a></span></span> <span class="style8"><a href="./"><span class="style5">Giselle M. Olivera</span></a></span></div></td>
        </tr>
      </table>
    </div>
    </body>
    </html>

    First define your site folder in Dreamweaver.  Site > Manage Sites > New > Local Site.
    http://foundationphp.com/tutorials/gallery/embed1.php
    Also, to simplify things, you could use an <iframe> to bring your bridge gallery index.html page into your DW web page.
    http://www.w3schools.com/tags/tag_iframe.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Partial Display of own website with Firefox, but ok with I.E.

    Hello,
    I have a website that has always displayed well in Firefox and IE.
    I have recently gone on the internet at home, but find that in Firefox, my website only shows four of the navigation buttons (there are twelve or so). The site loads perfectly on other pc's...what is missing on my Firefox please?

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *http://kb.mozillazine.org/Websites_look_wrong

  • I want to upload files to my website. I can open the website with ftp, but I do not see any possibility to upload my website html pages..?

    I have a website and I have all the rights to it. Now I want to upload my html pages, but I cannot see how I do this with firefox.

    Hi,
    You can add enhanced functionality using the [https://addons.mozilla.org/en-US/firefox/addon/fireftp/ FirefFTP] add-on. The installed add-ons are listed in Firefox ('''Tools '''('''Alt''' + '''T''') > '''Add-ons'''. Please also go through the reviews, ratings, FAQ and help. There could also be similar add-ons.
    [http://fireftp.mozdev.org/help.html FireFTP support]

  • Web Photo Gallery Missing - Elements 6 (mac) - Elements 8 (pc)

    I've been asked to update a photo gallery in a website that was created with the Mac version 6 of Elements.  So I'm ready to purchase Elements version 8 for the PC and I download the trail version.  The problem is the HTML version has been replaced the FLASH, which might work okay.  But they really want the gallery format they have now, but I cannot find a similar template with the 'Shared' Online Album procedure.  It's a rather plain template, but they like it for their site.  It has a scrolling list of thumbnails on the left and the selected photo shows to the right.  There's an "Image Info" button on the bottom that pops-up a dialog of File/Title/Description/Credits/Copyright.
    If I purchase Elements 8, can I download older versions someplace?  If I have to hunt for Version 6 on eBay or elsewhere, do the PC and Mac versions 6 have the same HTML Photo Gallery templates/options?

    hey,
    the workflow is different in pse8 as compared to pse6. in pse8 if you want to create the web gallery you have option either in the File > Create Web gallery.
    i am not too sure whether you can download older version of pse from any where.
    thanks

  • Photoshop Elements 8 - Web Photo Gallery?

    I have Photoshop Elements 8 trial edition and Photoshop Elements 2.0.  I would like to create a Web Photo Gallery with Photoshop Elements 8 trial edition just like I have been doing with Photoshop Elements 2.0.  I cannot find how to create a Web Photo Gallery in Photoshop Elements 8.  Has Adobe removed the Web Photo Gallery function from Photoshop Elements 8?
    I want to create a photo gallery to share photos on my own website and allow viewers to download the pictures.  The new online sharing function in Photoshop Elements 8 only creates a slide show without downloading capability.

    Bob,
    Thanks for answering.  I need to create a Web Photo Gallery so I can upload thumbnails and full-size pictures to my website and have viewers be able to download the full-sized pictures.  The Flash version does not permit downloading and requires that you use one of the provided templates.  It appears that Photoshop Elements 8 is a downgrade from Photoshop Elements 2.0 in this respect.  Is there any way to accomplish what I want to do with Photoshop Elements 8.0?
    By the way, I really like your video tutorial on the Adobe website.
    Phil Fleming
    Philip E Fleming MD FACS
    < personal info removed by forum host for security >

  • 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.

Maybe you are looking for