Spry accordion with nested accordions

I'm building an FAQ list with topics and sub topics, using a
containing Spry accordion with multiple children, though just the
one extra level deep. The nested accordions won't expand the full
list. Instead, the div height remains fixed, and I get a scroll
bar. Any ideas what part of the javascript to tweak to open up this
functionality?
Here's the page:
http://www.pixmission.net/dev/tex/faqs.htm
thanks

alancymru escribió:
> I'm building an FAQ list with topics and sub topics,
using a containing Spry
> accordion with multiple children, though just the one
extra level deep. The
> nested accordions won't expand the full list. Instead,
the div height remains
> fixed, and I get a scroll bar. Any ideas what part of
the javascript to tweak
> to open up this functionality?
>
> Here's the page:
>
http://www.pixmission.net/dev/tex/faqs.htm
>
> thanks
>
Sure! It has to be done in two parts. First part from your
SpryAccordion.css file and the second it is adding a new
property to the
Accordion object when it’s initialized.
First part:
Select .AccordionPanelContent class
Delete Height property
Change the value of overflow from auto to hidden;
Second part:
In the constructor function at the bottom of your faqs.htm
file, amend
this code:
var Accordion1 = new Spry.Widget.Accordion("Accordion1");
var Accordion9 = new Spry.Widget.Accordion("Accordion9");
to this:
var Accordion1 = new Spry.Widget.Accordion("Accordion1",
{useFixedPanelHeights:false});
var Accordion9 = new Spry.Widget.Accordion("Accordion9",
{useFixedPanelHeights:false});
Hope this helps.

Similar Messages

  • Spry Accordion with custom scrollbar

    I'm trying to find a Spry Accordion with a custom scrollbar.
    There are other accordion scripts out there but I am most
    comfortable working with the Spry script. I cant seem to find any
    of these with a custom scrollbar. Can someone here help?

    Mr. Andersson wrote:
    > I'm trying to find a Spry Accordion with a custom
    scrollbar. There are other
    > accordion scripts out there but I am most comfortable
    working with the Spry
    > script. I cant seem to find any of these with a custom
    scrollbar. Can someone
    > here help?
    Spry has no custom scroll bars. Currently Spry (as of 1.6.1)
    doesn't have drag and drop which would be required for a custom
    scroll bar. Best you might be able to do would be to try to style
    the browser provided scroll bars, but that's not valid CSS, and I
    know that Firefox doesn't show the styled scrollbars (IE does).
    Take a look at this page in IE:
    http://www.iconico.com/CSSScrollbar/
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Spry accordion with php mysql as data

    Hello
    I`m trying to create a spry accordion where the Labels are pulled from a mysql database table and the Content of that label is pulled from data in the same database. I tried adding first the spry accordion and then created 1 recordset for the labels and a second recordset for the content , then I added a repeat region for the labels DIV and inside this div I added a repeat region for the content.
    Unfortunatly when viewed in the browsers the accordion doesn`t work.
    Can anyone look at the code and tell me where is the mistake.
    Thanks
    <?php require_once('Connections/log.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_log, $log);
    $query_log_year = "SELECT DISTINCT Year(`23849`.acoff) AS yy FROM `23849` ORDER BY Year(`23849`.acoff)";
    $log_year = mysql_query($query_log_year, $log) or die(mysql_error());
    $row_log_year = mysql_fetch_assoc($log_year);
    $totalRows_log_year = mysql_num_rows($log_year);mysql_select_db($database_log, $log);
    $query_log_year = "SELECT DISTINCT Year(`23849`.acoff) AS yy FROM `23849` ORDER BY Year(`23849`.acoff)";
    $log_year = mysql_query($query_log_year, $log) or die(mysql_error());
    $row_log_year = mysql_fetch_assoc($log_year);
    $totalRows_log_year = mysql_num_rows($log_year);
    $mhour_log_mon = "0";
    if (isset($row_log_year['yy'])) {
      $mhour_log_mon = $row_log_year['yy'];
    mysql_select_db($database_log, $log);
    $query_log_mon = sprintf("SELECT DISTINCT DATE_FORMAT(`23849`.acoff, '%%M') AS mon , DATE_FORMAT(`23849`.acoff, '%%m') AS m , sum(`23849`.ablock) as toth FROM `23849` WHERE YEAR(`23849`.acoff) = %s GROUP BY m ORDER BY m ", GetSQLValueString($mhour_log_mon, "int"));
    $log_mon = mysql_query($query_log_mon, $log) or die(mysql_error());
    $row_log_mon = mysql_fetch_assoc($log_mon);
    $totalRows_log_mon = mysql_num_rows($log_mon);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>testing ajax php mysql</title>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="Accordion1" class="Accordion" tabindex="0">
      <div class="AccordionPanel">
        <?php do { ?>
          <div class="AccordionPanelTab"><?php echo $row_log_year['yy']; ?></div>
          <?php } while ($row_log_year = mysql_fetch_assoc($log_year)); ?>
    <div class="AccordionPanelContent">
      <table width="100%" border="0" cellspacing="5" cellpadding="5">
        <?php do { ?>
          <tr>
            <td><?php echo $row_log_mon['mon']; ?></td>
            <td><?php echo $row_log_mon['toth']; ?></td>
          </tr>
          <?php } while ($row_log_mon = mysql_fetch_assoc($log_mon)); ?>
      </table>
    </div>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    //-->
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($log_year);
    mysql_free_result($log_mon);
    ?>

    You only have 1 "AccordianPanel" which contains a list of "AccordianPanelTab" elements, then a list of "AccordianPanelContent" elements.
    You need to have a list of "AccordianPanel" elements, each containing a pair or "AccordianPanelTab" and "AccordianPanelContent" elements.
    HTH,
    Randy

  • Spry Accordion with Image Icons

    I've created a Spry Accordion here:
    http://www.holidaycardsunlimited.com/tips-advice/business-use/Business-Holiday-Cards.html
    The client would like to have images (arrows or plus/minus) when the accordion expands or collapses.
    Any ideas how to implement this?
    Thanks in advance!

    finally this css markup worked very fine for me
    @charset "UTF-8";
    .Accordion {
    border: none;
    outline:none;
    overflow: hidden;
    -moz-outline: none;
    height:700px;
    .AccordionPanel {
    margin: 0px;
    padding: 0px;
    .AccordionPanelTab{
    -moz-user-select: none;
    -khtml-user-select: none;
    background-color: #003266;
    border-top: solid 1px white;
    padding-top: 6px;
    padding-bottom:6px;
    padding-left: 24px; /* this created space for the images on the left*/
    margin: 0px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background-image: url(../wm2010/img/gif/plus.gif);
    background-repeat:no-repeat;
    background-position: 0px;
    .AccordionPanelContent{
    background-color: #f6f6f6;
    overflow: auto;
    margin: 0px;
    padding: 0px;
    height:500px;
    .AccordionPanelTab a{
    color: black;
    text-decoration: none;
    // this is most important for IE
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    color: orange;
    background-image: url(../wm2010/img/gif/minus.gif);
    background-repeat:no-repeat;
    background-position: 0px;
    // this is the firefox guarantee
    .AccordionPanelOpen .AccordionPanelTab{
    color: orange;
    background-image: url(../wm2010/img/gif/minus.gif);
    background-repeat:no-repeat;
    background-position: 0px;
    .AccordionPanelTabHover {
    color: orange;
    background-image: url(../wm2010/img/gif/arrow.gif);
    background-repeat:no-repeat;
    background-position: 0px;

  • Spry Accordion with iFrames

    I have a Spry Accordion which I'm using on the same page as an iFrame setup. I want to link the AccordionPanelTab to an iFrame link.
    In order to get the iFrame to work I need to link like this:
    <a href="iframepage.php" onclick="return changeIframeSrc('iframe', this.href);" target="iframe">
    This works for links within AccordionPanelContent but not if I link the AccordionPanelTab.
    I can get the AccordionPanelTab to link by
    <a href="iframepage.php" onclick="window.location=this.href;return false;">
    but not within the iFrame. Is there a way of combining these two to make them work or another way of making the AccordionPanelTab link?
    Many thanks.

    Have a look at the following
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet">
    </head>
    <body>
    <p>Open by Panel Index:
      <a href="#" onclick="Accordion1.openPanel(0); return false;">0</a> |
      <a href="#" onclick="Accordion1.openPanel(1); return false;">1</a> |
      <a href="#" onclick="Accordion1.openPanel(2); return false;">2</a> |
      <a href="#" onclick="Accordion1.openPanel(3); return false;">3</a>
    </p>
    <div id="Accordion1" class="Accordion" tabindex="0">
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 1</div>
        <div class="AccordionPanelContent">Content 1</div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 2</div>
        <div class="AccordionPanelContent">Content 2</div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 3</div>
        <div class="AccordionPanelContent">Content 3</div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 4</div>
        <div class="AccordionPanelContent">Content 4</div>
      </div>
    </div>
    <script src="SpryAssets/SpryAccordion.js"></script>
    <script>
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    </script>
    </body>
    </html>
    Copy and paste into a test document making sure that the links are correct. Test in your favourite browser.

  • Spry issue with nested table

    Hello,
    I am working on my first website.
    I have created a page that I would like to use as a template www.readingymca.co.uk (thanks to gramps)
    but get this error
    Line 64 is where I the start of where I have coded the colour of individual buttons for the spry menu. I am wondering if I have put it in the wrong place or need to adjust anything else.
    Thanks in advance
    Mark

    This is the markup for the menubar. I have highlighted the problems
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="http://www.readingymca.co.uk/index.html">home</a> </li>
      <li><a href="#" class="MenuBarItemSubmenu">housing</a>
        <ul>
          <li><a href="http://www.readingymca.co.uk/housing.html"<body style="background-color:#DC2683;">Accommodation and support</a></li>
          <li><a href="#"<body style="background-color:yellow;">resident activities</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">sports &amp; activities</a>
        <ul>
          <html>
          <li><a href="#"<body style="background-color:purple;">Senior Activities</font></a></li><li><a href="http://www.axkp33.dsl.pipex.com/"
          <body style="background-color:yellow;">Aikido</font></a></li>
          <li>
          <a href="http://www.fwckungfu.com/club/Reading;jsessionid=A7E9907DE62B3C9870730B019876B1DC"<body style="background-color:red;">Kung Fu</a></li>
          <li><a href="http://www.1streadingseascoutgroup.org.uk/"<body style="background-color:green;">Scout movement</a></li>
          <li>
          <a href="http://www.lifespringchurch.co.uk/Groups/56782/LifeSpring_Church_Reading/Church_Life/Missi on_at_Home/Tiggers_Toddlers/Tiggers_Toddlers.aspx"<body  style="background-color:yellow;">Tigger Toddlers</a></li>
          <li><a href="http://www.readingymcafc.co.uk/"<body style="background-color:blue;">Football</a></li>
          <li><a href="#"<body style="background-color:orange;">Table Tennis</a></li>
          <li><a href="http://www.readingcrossroads.org/youngcarers.htm"<body style="background-color:pink;">Crossroads
          Young Carers</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">facilities</a>
        <ul>
          <li><a href="http://www.readingymca.co.uk/sports%20hall.html"<body style="background-color:purple;">sports Hall</a></li>
          <li><a href="http://www.readingymca.co.uk/Gym.html"<body style="background-color:yellow;">gym</a></li>
          <li><a href="http://www.readingymca.co.uk/conference%20room.html"<body style="background-color:red;">conference room</a></li>
          <li><a href="http://www.readingymca.co.uk/padworth.html"<body style="background-color:green;">padworth log cabin</a></li>
          <li><a href="http://www.readingymca.co.uk/minibus.html"<body style="background-color:blue;">minibus</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">projects</a>
        <ul>
          <li><a href="#"<body style="background-color:purple;">workshop</a></li>
          <li><a href="#"<body style="background-color:yellow;">cafe</a></li>
        </ul>
      </li>
      <li><a href="#">donate</a> </li>
      <li><a href="#" class="MenuBarItemSubmenu">useful info</a>
        <ul>
          <li><a href="#"<body style="background-color:purple;">membership</a></li>
          <li><a href="#"<body style="background-color:yellow;">links</a></li>
        </ul>
      </li>
      <li><a href="#">volunteering</a></li>
      <li><a href="#" class="MenuBarItemSubmenu">about us</a>
        <ul>
        <li><a href="#"<body style="background-color:purple;">RYMCA History</a></li>
        <li><a href="#"<body style="background-color:yellow;">YMCA Movement</a></li>
        <li><a href="#"<body style="background-color:red;">meet the team</a></li>
        </ul>
      </li>
      <li><a href="#">contact us</a></li>
    </ul>
    With the exception of the stray HTML tag, your problem is very consistant. To save my time, I shall correct the last menu item which now reads
    <li><a href="#"<body style="background-color:red;">meet the team</a></li>
    and should read
    <li><a href="#" style="background-color:red;">meet the team</a></li>
    I gave the rest of the document a quick glance and found another little bug as follows
        <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow
    slideshowAddCaption=false;
    $(document).ready(function() {
        $('#slideshow').cycle({
            after:            slideshowOnCycleAfter, //the function that is triggered after each transition
            autostop:            false,     // true to end slideshow after X transitions (where X == slide count)
            fx:               'fade,',// name of transition effect
            pause:            true,     // true to enable pause on hover
            randomizeEffects:    true,  // valid when multiple effects are used; true to make the effect sequence random
            speed:            1000,  // speed of the transition (any valid fx speed value)
            sync:            false,     // true if in/out transitions should occur simultaneously
            timeout:        9000,  // milliseconds between slide transitions (0 to disable auto advance)
            fit:            true,
            height:           '200px',
            width:         '200px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshowOnCycleAfter() {
        if (slideshowAddCaption==true){
                $('#slideshow-caption').html(this.title);
    // EndOAWidget_Instance_2559022
        </script>
    This 'fade' has a comma which should not be there
    For the rest it looks great, well done!
    Gramps

  • Spry accordion with effect appear/fade

    Hi,
    I'm looking for a solution with the effect appear/fade which I've putten on an image.
    http://www.home-maastricht.nl/signage.html
    When I open the tab the content image is bright and the tab is dark (this is ok).
    The image from the tab must lighten up when I close the content tab.
    The content tab can be close by clicking on the tab image and also by clicking on the content image.
    Can you follow me?
    And the most important, can you help me?
    Thanks al lot !!
    Regards,
    Carla

    Sorry, it was the Appear/Slide Effect

  • Accordion with spry data on IE8

    Hi,
    I have an accordion with spry data and everything works fine on IE8 and FF, but on IE8 when i click on a accordion tab it doesnt focus on that open panel. It takes me at the very top of where my accordion begins. I notice the same thing happens to the accordion with spry data site. It's a problem for me because my page has a long accordion and our users have small laptop screens. Does anyone know how this can be fixed in IE8?
    Sorry i dont have a sample link or code, because it's on our company intranet. but i used the exact same method on the spry accordion with data page.
    http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample2.html
    thanks!

    Good. I am sure you can figure it out.
    http://labs.adobe.com/technologies/spry/articles/pager/index.html
    Let us know.
    Donald Booth
    Adobe Spry Team

  • How to make no panels on Spry accordion open by default?

    I have a Spry Accordion with several panels.  I want the default behavior for none of the panels to be opened until one is clicked.  Currently the default behavior is for the first panel to be automatically expanded when the page is first visited.  How do I correct this?

    It's here:
    http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample.html
    Under the sub heading "starting with all panels closed".
    <script type="text/javascript">
    var acc1 = new Spry.Widget.Accordion("Acc1", { useFixedPanelHeights: false, defaultPanel: -1 });
    </script>
    Martin

  • SPRY Accordion Linking

    I want to link certain text from a homepage to a second page
    that contains a SPRY Accordion with three panels. But I want to
    link to the second panel open, even though this is not the default
    open panel if you load that page independantly. Is there a way of
    telling the widget to open a specific panel through the link code
    on the homepage? I am trying to avoid the visitor having to click
    the panel for the selected topic on the homepage.

    We have that feature built into our widgets, which are much
    different than
    spry:
    http://www.projectseven.com/products/tools/accordion/tweaks/params/
    If you don't have a development budget for add-ons, you can
    look through the
    spry docs:
    http://labs.adobe.com/technologies/spry/docs.html
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "RGracia" <[email protected]> wrote in
    message
    news:fn55pk$htn$[email protected]..
    >I want to link certain text from a homepage to a second
    page that contains
    >a
    > SPRY Accordion with three panels. But I want to link to
    the second panel
    > open,
    > even though this is not the default open panel if you
    load that page
    > independantly. Is there a way of telling the widget to
    open a specific
    > panel
    > through the link code on the homepage? I am trying to
    avoid the visitor
    > having
    > to click the panel for the selected topic on the
    homepage.
    >

  • Sorting Spry Accordion panels?- Repost

    I posted this question on 5/20 but did not get any replies,
    so I am reposting in hopes that someone might have an answer.
    Can Spry accordion panels be dynamically sorted the same way
    that regular Spry tables can? I created a Spry Accordion with a
    book title on each panel. When you click on a panel, a table
    appears (dynamically generated from an XML database using a Perl
    script) showing author name, publisher, date of publication, etc.
    I'd like users to be able to alphabetize the book titles in case
    they're not already in alphabetical order. I'd also like to add a
    link on (or near) the panels to sort them by date of publication,
    even though the date field is not visible when the panels are
    closed.
    Thanks!
    - cpmorgan

    I couldn't tell from your post if you were generating the
    markup for your Accordion using regions and data sets. If you are,
    then you are probably doing something similar to:
    http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample2.html
    In which case, you can cause the panels to sort by simply
    sorting the data set:
    <a href="#" onclick="dsEmployees.sort('firstname'); return
    false;">Sort by FirstName</a>
    <a href="#" onclick="dsEmployees.sort('lastname'); return
    false;">Sort by Last Name</a>
    --== Kin ==--

  • Inserting a Spry Accordion on top of a background image?

    I created an 800 x 600 pixel graphic image in Adobe Photoshop CS4 to be used as an overall background image for a webpage.  I also created a few navigation links from the image Layers using the Slice Select Tool, then optimized and saved the image as an html file using the Save for Web & Devices command in Photoshop.  Next, I opened the html file in Dreamweaver CS4.  
    Is it possible to insert a Spry Accordion with a clear (transparent) background anywhere on top of that background image in Dreamweaver CS4 so that I can see the background image behind the text content of the Spry Accordion?  I use Windows Vista.

    Hi,
    Yes, as is shown by the following code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body style="background: url(images/detail/cd1.jpg) no-repeat center;"> //use your own location and file
    <div id="Accordion1" class="Accordion" tabindex="0">
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 1</div>
        <div class="AccordionPanelContent">Content 1</div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 2</div>
        <div class="AccordionPanelContent">Content 2</div>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    //-->
    </script>
    </body>
    </html>

  • Spry Accordion Menu - Content Height

    Hey everyone,
    I have a (hopefully simple) problem. I have a spry accordion with 3 tabs. Two of them have the same number of lines in them, but the "what" tab only has 2 lines so there's a lot of white space underneath it. I've tried changing
    this.useFixedPanelHeights  to false in the spry java script... and it does resize the content area properly, but the open and close on mouseover gets really messed up.  Things don't open when they should, and close randomly. It makes it impossible to navigate. I've tried several other things as well, but nothing seems to fix the problem
    The website:
    http://jmb2-arch.com
    Thanks in advance for any help!
    -Cameron

    You might try playing with the height specification as stated in the Spry CSS:
    .AccordionPanelTab { -moz-user-select: none; -khtml-user-select: none; height: 76px; border: 2px solid #027dc3; width: 76px; color: #027dc3;
    Setting a height is usually not necessary, unless there is a specific design reason (as there is here, with the main tabs and the sub tab area apparently intended to be identically sized).
    Chris

  • Nested Spry accordion

    Hi,
    I am trying to nest a spry accordion in spry tabbed panels. You can see a simlified version at:
    http://www.artinso.com/astronomy/sprytest.html
    It works well enough in Firefox, Safari etc.
    However in IE I get "object expected" scripting errors and neither tabbed panels nor accordion seem to work.
    What am I missing here? Can you not nest accordions in tabbed panels?
    Regards
    Berthold Hamburger

    Hi,
    Thanks that solved it. Apparently my spry files must be corrupt. Do you know where I can re-download them?
    Now the next problem surfaced with accordion widget. If you go on page:
    http://www.artinso.com/astronomy/mirror-o-matic.html
    and press the Videos tab further down that page, all the accordion panels are open on IE, while they work fine on FF. Is that also file corruption problem?
    Thanks
    Berthold
    Berthold Hamburger - Cellist/Spain
    Email: [email protected]
    http://www.artinso.com
    http://www.astro.artinso.com
    Este mensaje, y los documentos en su caso anexos, se dirigen exclusivamente a su destinatario y pueden contener información reservada y/o CONFIDENCIAL cuyo uso no autorizado o divulgación está prohibido por la legislación vigente. Si ha recibido este mensaje por error, le rogamos que nos lo comunique inmediatamente por esta misma vía o por teléfono (+34-981613415) y proceda a su destrucción.
    This message and its attachments are intended exclusively for the addressee and may contain information that is privileged and/or CONFIDENTIAL.  Its non authorized use or disclosure is prohibited by law.  If you are not the intended recipient, please notify us immediately by the same channel as its receipt or by telephone (+34-981613415) and kindly destroy it.

  • Colour problem with Spry Accordion

    Hi, I'm trying to create a website with a spry accordion. I've had some trouble with it (as I'm not good at CSS, it's new to me) and I've solved them all except for one: a problem with the colour of the bar when the section is open.
    This is my website: http://s313354774.mialojamiento.es/saibe/design3/Publish/INICI.html
    When the menu is closed everything is ok, but when you open it then the colour changes, making a gradation between the new colour and the original one. I've checked the stylesheet and there the original colour doesn't appear anywhere, so it's wierd to me.
    Does anyone know why is it happenning? If i'ts because something stupid forgive me, as I told you this is quite new to me and I'm trying to learn day by day.
    Sergi

    Segi,
    This one has got me stumped. If I copy your SpryAccordion.css and apply my copy to the document, there is no problem. Have a look here http://pleysier.com.au/sergi/
    I know this will not help except to say, that if you change
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    to
    <link href="http://pleysier.com.au/SpryAccordion.css" rel="stylesheet" type="text/css" />
    see what happens.
    Gramps

Maybe you are looking for

  • Step by step complete setup for WRT54G ver.6 with Laptop and XBOX 360

    Hello.  I am sorry to post this, I am sure it is a juevenile and redundent question...but I have tried to look for the set up cd (I can find where to download it...though I can find the firmware upgrade or whatever).  My friend at work said it would

  • Business Catalyst and File sharing?

    Hello all, I did some searching on here and I had no luck. I am trying to set up icons, that when clicked, allow the user to download the file(s). I am using Adobe's Muse and I don't want to give up on BC because I love the form integration. s Also,

  • Invoking web service with customized SOAP Header

    Hi, how can I invoke web services from my BPEL process with additional elements in the SOAP Header? Regards, Piotr

  • Simple Insert Statement Not Working

    This problem is just driving me crazy. I dont know what I m doing wrong here. The code works fine on my localhost but giving problem on the live site. It is a simple insert statement like this: insert into tblSubImages(productid, title, subdescriptio

  • # is appearing instead of Japanese characters.

    Hi All, While loading data which comprises of japanese characters, '#' values are appearing in the infocube(infoprovider) instead of japanese characters in the production system.When I load the same data in developmennt system I can see the japanese