Menu Widget within Template Question

I've placed a simple Spry Horizontal Menu bar widget within a div called "header." This menu bar has four main list items, and each list item has four sub-items. I have another div called "mainContent." I save this page as a template. I make a sample page using that template, and the page works as expected. So far, so good.
Now, I go into the template file, into the menu bar widget, and I add a fifth sub-item to one of the main list items, using the properties panel. I save the file, and DW asks if I want to update the page I've created based upon this template. I say yes, and it appears to make the update.
Now, however, when I test the page in the browser (FF, Safari, Opera, doesn't matter), the newly-added menu item does not appear. I've tried clearing the browser cache, closing and reopening the browser -- nada.
Am I missing something, or is a Spry widget not able to be used (as in, modified and updated) within a template?
Any help is gratefully appreciated.

Unfortunately you cannot add drop shadows to text in Muse.
You could create the text in Photoshop and import it in, using the "Place Photoshop button" under the file menu. (you would create the, normal, hover, active states in Photoshop layers)

Similar Messages

  • Can I free transform individual buttons within the menu widget?

    When using the menu widget,
    1. Is it possible to break individual buttons from their row/column and free transform them?
    2. Could I delete an individual button while keeping the other buttons intact and not having to delete the page it was linked to?

    Hi
    Answering the questions :
    1) You can create different menu items for page elements and use as individual buttons with free transform option, you can try using tabbed panel to create menu items.
    2) You can if you have created a manual menu. The individual menu item will be deleted without effecting the link.
    Thanks,
    Sanjit

  • Static/Standard links within Muse Accordion menu widget

    Hi,
    I'm a newcomer to Adobe Muse and so may have missed a menu or option somewhere along the line,
    I'm trying to make a simple alteration to the standard Muse 'accordion' menu widget.
    I'm re-creating a website I've already half built in Dreamweaver, it being a simple design I thought
    this would be a good site to try to build with Muse. As you'll see here: http://www.thisisneil.com/rg-e/
    the accordion on the left hand side has two static links sitting at the bottom of the menu linking to
    a 'Contacts' page and 'Blog' hosted on Tumblr.
    Within Muse, I can't embed these two standard links without the accordion function in the same field?!
    Muse automatically applies the on-click, drop down sub-menu. Is there anyway of disabling the function
    on selected menu items?
    I'd like the two static links to drop down, and pop back up with two two functioning accordion menu's
    sitting above as they do within my dreamweaver example, but can't seem to amend the Muse menu
    to behave in this way. A shame to fall at the first hurdle with such a simple menu amend!
    Any help or thoughts much appreciated.
    Thanks.

    Anybody?!

  • Two questions about the menu widget

    Hello,
    I am making a horizontal menu with the menu widget.  I have 2 questions and a picture for you to refer to:
    A - When I create the menu widget, I want to add a dropdown sub menu and be able to link it to anything other than a page in the site.  How do I do that?
    B - There is a page in the menu widget but I don't want it to be in the menu widget because there will be another button on the site that I will use to link to that page.  How Do I keep that page from showing up in the menu widget?
    Thank you - deaf guy

    Michael--
    I don't know how to answer your first question, but for your second question, right-click the page when in Plan view, click Menu Options, then click Exclude from Page Menus.

  • Menu Widget States on Sub Pages?

    Quick question:
    how do I preserve states while on sub pages within a navigation structure?
    for example:
    site has 4 pages: home, services, portfolio, contact
    page services has 4 sub pages: A, B, C, D.
    Menu widget links to top level navigation, providing 4 buttons.
    when on ../site/services the active state is present
    but, then on .../site/services/C the active state is gone.
    menu is located in the master page.
    i would like it so that when i visit ../site/services and then any subsequent subpages, the menu active state is preserved until i move to another top level page (home, contact, etc).
    Your insight is appreciated.

    Hello,
    If the A,B,C,D pages are child pages (sub pages) to the "services" page that is appearing as the top level page for these four pages, then changing the menu type from "Top Level Pages" to "All Pages" should do the trick and the top level page should stay on the active state while it's sub pages are visited.
    Hope this helps.
    Cheers
    Parikshit

  • Removing Forward menu option within MailFilterDialog in Convergence 1u3

    I followed the directions at the bottom of the following page:
    http://wikis.sun.com/display/CommSuite/Removing+Change+Password+and+Vacation+Message+Options
    and successfully removed the Forward item in the Options menu, however we are wanting to disable all forwarding from within Convergence, which would also include the "Forward Message To" menu item in the MailFilterDialog widget. I know I need to create the file <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailFilterDialog.js and put the following in <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js:
    // Remove the Forward Message to menu item
    dojo.require("c11n.allDomain.js.widget.MailFilterDialog");but I am unsure of the code that goes into the MailFilterDialog.js file.
    Thanks,
    Jim

    jbuitt wrote:
    and successfully removed the Forward item in the Options menu, however we are wanting to disable all forwarding from within Convergence, which would also include the "Forward Message To" menu item in the MailFilterDialog widget.I seriously question the value of disabling the manual forwarding of messages... that being said you can hide the forward button by using the following customization:
    Add the following to <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js
    // Hide forward button in folder view
    dojo.require("c11n.allDomain.js.widget.MailOpenFolder");
    // Hide forward button in message view
    dojo.require("c11n.allDomain.js.widget.MailOpenMessage");Create the following two files:
    <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailOpenMessage.js
    dojo.provide("c11n.allDomain.js.widget.MailOpenMessage");
    dojo.require("iwc.widget.MailOpenMessage");
    dojo.require("dijit.form._FormWidget");
    dojo.declare("iwc.widget.MailOpenMessage", iwc.widget.MailOpenMessage,
                    buildRendering: function () {
                            this.inherited(arguments);
                            this["forwardButton"].domNode.style.display = "none";
                            console.debug("c11n: Hide Forward Button in Message View");
                    last: ""
    );<app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailOpenFolder.js
    dojo.provide("c11n.allDomain.js.widget.MailOpenFolder");
    dojo.require("iwc.widget.MailOpenFolder");
    dojo.require("dijit.form._FormWidget");
    dojo.declare("iwc.widget.MailOpenFolder", iwc.widget.MailOpenFolder,
                    buildRendering: function () {
                            this.inherited(arguments);
                            this["forwardButton"].domNode.style.display = "none";
                            console.debug("c11n: Hide Forward Button in Folder View");
                    last: ""
    );Regards,
    Shane.

  • Help with Spry Rating Widget within a Spry Repeating Region

    My link  http://www.youthinkyougotitbad.com
    This is a long question, but it seems to me if answered somewhere it could help alot of people in the spry community creating comment boards as it uses three important spry widgets: rating, repeating, and tabbed panels. I am trying to use spry rating widget within a spry repeating region within a spry tabbed panel with xml. I was trying to go with the pulse light script (http://forums.adobe.com/message/3831721#3831721) but Gramps told me about the spry rating widget. But I have ran into a couple more problems. First, I couldnt find that much information on the forums or online about how to do the php page with the spry rating widget. None of these have any information on how to do it:
    http://labs.adobe.com/technologies/spry/articles/rating_overview/index .html
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/rating. html
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.ht ml
    And it seems that the official examples are so poor (or I am just ignorant, which def could be a possiblity) it shows
    to set the initial rating value from the server, but uses a static value of 4
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.html
    <span id="initialValue_dynamic" class="ratingContainer">
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>      
             <input id="spryrating1_val" type="text" name="spryrating1" value="4" readonly="readonly" />
             <span class="ratingRatedMsg sample">Thanks for your rating!</span>
    </span>
    <script>
    var initialValue_dynamic = new Spry.Widget.Rating("initialValue_dynamic", {ratingValueElement:'spryrating1_val'});
    </script>
    I finally found a site that has the php and mysql setup.
    http://www.pixelplant.ro/en/articles/article-detail/article/adobe-widgets-for-download.htm l
    But its not perfect. It has the same problem that I ran into with Pulse light, that you had to use php echo within the spry repeating region to set the initial value from the server:
    <span id="spryrating1" class="ratingContainer">
             <span class="ratingButton"></span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="<?php echo $row['average']?>"/>
            </span>
            <script type="text/javascript"
                var rating1 = new Spry.Widget.Rating("spryrating1", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id=spryrating1&val=@@ratingValue@@'});
            </script>
    So instead, I tried with three of my panels (www.youthinkyougotitbad.com) to get the average rating from xml by using the following queries:
    Recent
    Returns the blurts in most recent order along with average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC
    Wet Eyed
    Returns the blurts in highest ratings order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r Desc
    Dry Eyed
    Returns the blurts in lowest rating order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r
    These all return the correct xml in the correct order.And they return the average rating of each blurt which I can send to my page with xml.
    My first question is that I dont know how to configure the query on my fourth panel Empathized & Advised the same way because it already has a Group By for the Comment Id.
    SELECT `Comment`.id_Blurt, COUNT(*) as frequency, Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt, `Comment` WHERE Blurt.Id_blurt = `Comment`.id_Blurt GROUP BY `Comment`.id_Blurt ORDER BY COUNT(*) DESC";
    Not sure if you guys need more information to understand that all, if so just ask.
    So after I get my average value through xml to the first three panels, I set my spry repeating region up like this:
    (Blurt panel)
    <div spry:region="pv1" spry:repeatchildren="pv1">           
               <div class="blurtbox">
                <!--  most recent blurt tab-->
                <h3> "{pv1::Blurt}"</h3>
                <p> Blurted from {pv1::Location} at {pv1::Date}</p>
                <p>Empathize or Advise about {pv1::Name}'s Blurt #<a href="detailblurt.php?blurtid={pv1::Id_blurt}"> {pv1::Id_blurt}</a></a></p>
               <span id="{pv1::Id_blurt}" class="ratingContainer">
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingRatedMsg">Thank You! Your tears have been tallied.</span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="{pv1::average_r}"/>
            </span>
            <script type="text/javascript">
                // overview of available options and their values:
                // http://labs.adobe.com/technologies/spry/articles/rating_overview/index.html
                var rating1 = new Spry.Widget.Rating("{pv1::Id_blurt}", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id={pv1::Id_blurt}&val=@@ratingValue@@'});
            </script>
                 <br/>
               </div>
              </div>
    Ok, it registers the right vote in the database with the right blurt id each time. But I am having two problems so far:
    One, even though {pv1::average_r} returns the correct average through xml, it doesn't show the initial rating value for each of the repeating blurts. It seems to show the first one correct, and then just repeat that same value to the other ones that follow. I just dont understand since it can get the correct server value right after you vote (afterRating:'serverValue), that I can't manipulate spryrating.js in some way that I could just replace 'ratingValue' in ratingValueElement:'ratingValue' with something to give me the initial server value.
    Two: Is even more mysterious to me, if you play around with voting on the site, sometimes you are unable to vote on different blurts. Its weird. It seems like that the javascript is completely off just on those blurts. And sometimes its a whole row, sometimes none. But so far its never a problem on the first tabbed panel (Recent), only on the other three. As far as I know, the coding is exactly the same in each tab's repeating region except for the different xml input.
    And, now on the live server, sometimes the pics of tears used to voting dont show up until you click.
    Any help on those three questions (how to query the fourth panel, how to show the initial server value, and the glitches with voting) would be greatly appreciated!! I looked pretty hard on adobe forums and other sites, and didnt see much on how to really use the spry rating widget with php and xml.
    Thanks!!

    Update:
    Ok, the first query on the Recent tab doesnt work for me because it wont show unless its already voted, and since these are supposed to be new blurts, that kind of breaks the whole site:
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC";
    So I replaced it with what I originally had.
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt ORDER BY Blurt.`Date` DESC";
    But this doesn't provide me with the initial average rating:(

  • Menu Widget: Text disappears when previewed in browser ?

    Hi All,
    I've created a site and have a top level page, with a sub-page.
    The site uses the Menu widget in Muse to create a menu with dropdowns for the sub-pages. However, when I preview the site in the browser, the state on the menu for the top-level page 'Normal and 'Active' functions disspears.
    It does re-appear on rollover, so the browser knows it's there, but it isn't being displayed.
    Any idea why?
    And how I can fix this?
    (Ive attached screenshots of the page within Muse and then the same page once previewed within the browser)
    As always, soloutions and replies most apprieciated!
    Browser preview
    Browser preview on rollover function
    Cheers!
    Robbie.

    Hi Robsta,
    Looking at your 1st posted image, above, I would say (recommend) that the 2nd blue guide, from the top (the header guide), should be moved down and put just below your menu ... do this on the 'master page' ... thats the header guide line ... everything 'below' that line is page content (a menu is not page content) hence content changes throughout your website ... everything 'above' that line is your header information and stays in the same place regardless which page you are on and is shown on ALL pages ...
    Now, if that doesn't fix the problem (the blue guide that needs moving, should be moved nevertheless) ... is it possible that some of the 'active' states in your menu have got messed up when you were changing your button colours? ... this would only happen if you were editing the menu with the 'Edit Together', 'unticked' ... I can see that the active state is set to grey already hence just asking ... also, sometimes if the 'header' guide is not where it should be, it does hide things below it as it doesn't know what should be shown or not ...so it's just a thought ... ...
    cheers,
    GemBro

  • Aligning text the Menu Widget

    Menu Widget: Is it possible to align the text centered in the Menu Top-pages and left in the Menu Sub-pages?

    There's not a lot of control (any) for where the submenu itself is positioned, but you can align the text within the submenus using text alignment in the Text panel in the menu is set for Uniform Site. If the menu is set for Uniform Spacing you need to get more creative and double click until a submenu item is selected, then use the Spacing panel (unlock the chain icon) to increase the right padding value so the text appears left aligned.

  • Disable updating of the menu widget when working with Muse file?

    First of all thank you Adobe for creating Muse - I really like it a lot!
    My question:
    when I work on my website with 250+ pages, it strains the performance to make even the slightest changes to the page structure. I work with two Masters each with much the same horisontal menu widget.
    Adding, deleting and rearranging pages makes the PC (Windows 7 laptop of some but not awesome power) make a halt and take a deep breathe for some seconds. It really interupts the flow of working.
    A crude work around for this is to removing the menu widget in the two masters and put it into a new master page, containing only the copied menu from the two other masters and keeping the rest of the header in place on the original masters to use for aligning on the pages. This way, only one page has to update when working with adding, deleting and rearranging pages.
    I have tried to look for a preference to disable updating the Menu widget when working on the page structures and just enable it the update again when the work is done? does it exist? else I would recommend it strongly :-) Since my work around is a bit tricky/risky to use after publishing ;-)
    Again, thanks a lot for this nice program. Being a selftought CS (now CCC) user I like the ease of control of the webdesign you can get with Muse (at the dispence of other features of course - if you ever wanted to add some sort of database-lookup feature it would be MUCH appreciated. One workaround is to use iframe and an external search/lookup page, that returns results with links back to parent pages. A bit funny construction though :-) ).
    BR
    M. Hecquet

    Glad to know you are enjoying Muse.
    It can be very processor intensive if you have multiple Master pages with their own All Pages menu widget. Take a look at the following threads and refer to Zak's response.
    http://forums.adobe.com/thread/1423767
    http://forums.adobe.com/message/6166722
    See if you are able to use just one All Pages menu widget at your site while taking advantage of the hierarchical Master page feature.
    http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-hierarchical-master-pages/
    We are aware of the performance issues caused by the Menu widget (All pages type) and is something being looked upon by the engineering in one of the upcoming releases.
    Thanks,
    Vinayak

  • Accordion menu widget behavior and contents

    I'm working on an accordion menu that is then used in a DPS folio created in InDesign.
    The accordion menu resides on the Master Pages of the articles/documents, 6 articles total.
    When the label is tapped, the accordion menu expands open >
    The label is also a link that takes the reader to a page within the folio while expanding (using the navto://documentname#page formatting) >
    Inside the content area of each label are subtopics that also navigate to different pages within the folio (also using the navto://documentname#page formatting).
    My desire is that when a label is tapped and expands, the reader can then click on each subtopic and go to that page without the accordion menu collapsing as it goes to the page.
    I'm finding that 99.9% of the time, the menu is collapsing. Other times I get the exact performance I desire.
    I'm Ok with the menu collapsing as each label is tapped, but not the subtopics.
    I've played around with setting the accordion properties by unchecking "Collapse All" and unchecking "Edit Together", but can't seem to edit these sections or the text boxes individually. It either sets ALL items in the accordion menu to Collapse All or not. No mixing of the two settings.
    Is there a way to get the desired functionality, outlined above, with the accordion menu widget?
    TIA,
    Hunter

    You can either use separate accordions for sub topic or you would need to go with unchecked collapse all and then manually edit all contents.
    Thanks,
    Sanjit

  • Dreamweaver menu widget mouse over

    Hi
    I'm trying to get my head around the menu widget in CS3 and thing are progressing ok.
    Things are progressing, but I have two small questions relating to this screenshot: http://www.violetmount.com/August/menu.png
    1. How can I only make the menu appear when I move the mouse over to it?
    2. Is there any way to have the top menu cell transparent?
    The first one is probably the most urgent at the moment! All the examples I've seen have the menu sitting there all the time, whereas I could do with it working like the menu bar in applications.
    Thanks
    Alexis

    Is it the roof or the driver's side window?It's where the 2 meet - it's a t-bar roof
    If is the window, try to determine if the seal
    between the window glass and the door frame is
    somehow messed up- bent, dirty, something that
    prevents a tight seal. You'll need to fix that, if
    that is the cause.There is no door frame!
    Like I always say, you can never have enough
    lubrication. Use some clear silicone spray on the
    window seal. Same with the door-to-frame seal.Ah, interesting. Thanks
    (this is actually the cure for said woes, so you've inadvertently set a dangerous precedent here!)
    If it is the roof itself, you'll have to perform
    similar investigations to determine the source of the
    leak.
    Hope that helps.It has, thanks!

  • Spry menu bar in template

    Hi,
    I'm new to dreamwever, but since it is really user friendly I
    already achived a lot.
    But I have a problem with the spry menu bar. What I want is
    the following.
    I have a template on which I want to place my spry menu on.
    That's what's already is working.
    The next thing I want is to have the backgroundcolor of the
    menuitems changed per page I created based on the template. Herefor
    I want to change the CSS. But since I placed the spry menu in the
    template I can't touch the CSS rule and so change anything in the
    CSS.
    My first thought was to place the menu in an editable region,
    but unfortunalty you can't place a spry widget in a editable
    region.
    Who can help me figer out what to do.
    Thanks in advance.
    Lesley

    <link href="assets/SpryAssets/SpryMenuBarHorizontal.css"
    rel="stylesheet"
    type="text/css" />
    This file is completely editable. That's where you would make
    the changes
    to the Spry menu's stying.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lesleyudw" <[email protected]> wrote in
    message
    news:[email protected]...
    > No, it's not working for me. I can't touch the CSS, I
    attached the code
    > I'm
    > talking about. When I have this open in dreamweaver cs3
    then I can't
    > change
    > anything to the assests CSSline
    >
    > <!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"><!--
    InstanceBegin
    > template="/Templates/Index.dwt"
    codeOutsideHTMLIsLocked="false" --><head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- InstanceBeginEditable name="doctitle" -->
    > <title>Mendoline | Home</title>
    > <!-- InstanceEndEditable -->
    > <style type="text/css">
    > <!--
    > body {
    > background-image: url(assets/images/confetti1.jpg);
    > }
    > -->
    > </style>
    > <!-- InstanceBeginEditable name="head" --><!--
    InstanceEndEditable -->
    > <link href="assets/style.css" rel="stylesheet"
    type="text/css" />
    > <script src="assets/SpryAssets/SpryMenuBar.js"
    > type="text/javascript"></script>
    > <link
    href="assets/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet"
    > type="text/css" />
    > </head>
    > <body>
    > <div class="transparant">
    > </div>
    > <div class="container">
    > <div class="header">
    > <img src="assets/images/headergif.gif" width="658"
    height="143" />
    > </div>
    > <div class="menu">
    > <ul id="MenuBar1" class="MenuBarHorizontal">
    > <li><a href="index.html">Home</a>
    </li>
    > <li><a href="wiezijnwij.html">Wij zijn
    wij</a></li>
    > <li><a href="#"
    class="MenuBarItemSubmenu">Entertainment</a>
    > <ul>
    > <li><a
    href="heksenact.html">Heksenact</a></li>
    > <li><a href="#">The Dutch
    Way</a></li>
    > <li><a href="#">Sport en
    Spel</a></li>
    > <li><a href="#">Popenkast
    theater</a></li>
    > </ul>
    > </li>
    > <li><a
    href="organisatie.html">Organisatie</a></li>
    > <li><a
    href="gastenboek.html">Gastenboek</a></li>
    > <li><a
    href="contact.html">Contact</a></li>
    > </ul>
    > </div>
    > <div class="content">
    > <h1>
    > <!-- InstanceBeginEditable name="ContentHeading"
    -->Home<!--
    > InstanceEndEditable -->
    > </h1>
    > <!-- InstanceBeginEditable name="Content" -->
    > <p>This is the home page.</p>
    > <!-- InstanceEndEditable -->
    > </div>
    > </div>
    >
    > <script type="text/javascript">
    > <!--
    > var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1",
    > {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif",
    > imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    > //-->
    > </script>
    > </body>
    > <!-- InstanceEnd --></html>
    >

  • Menu widget not responding ever 8 seconds for another 8 seconds

    Hi there,
    I have purchased Muse template and have build website with Muse CC (2014) (www.janka-photograhy.ch)
    It's one page template with scrolling effects on it.
    On every page except from "Home" I have horizontal menu widget. Now, on next page (Über mich)
    menu stops responding after 8 seconds for another 7-8 seconds and then functioning normaly again for
    8 seconds and so on. This only happens on "Über mich" page. On every other page (Angebot, Galerie, Kontakt)
    everything works fine. Any ideas why is this happening?
    Thanks a lot.
    Dalibor
    P.S. Problem is arises in Firefox, but not in IE.

    I can reproduce it on my Mac with Safari. Hovering across the menu, it becomes un/responsive every 7, 8 seconds.
    What says the developer of your widget?
    It doesn’t help, but it is a really nice site you designed!
    I would try the following:
    - What happens if you delete for testing reasons the slideshows on this page?

  • Widgets within widgets

    I am working on a site that currently is very complicated to
    navigate due to the vast number of pages. I would like to bring it
    up to date with spry and widgets. I currently am using the tabbed
    panel and inside that I am using an HTML panel to load content.
    What I would like to do is find an easier way and cleaner to
    implement a whole bunch on widgets within widgets? Also I would
    like to know how to use widgets and effects from from one page that
    is loaded into the HTML panel, for example I have a table with an
    accordian widget, that page gets loaded into the main page using a
    HTML panel. Thanks

    First question, this might help out, take a look at this
    sample. tabbled and html using update content;
    http://labs.adobe.com/technologies/spry/samples/utils/updateContent_TabbedPanels.html

Maybe you are looking for

  • Bbm video not working

    My wife just picked up a new Q10 I already have a Z10 but didn't have anyone to bbm chat with. When we tried today there was an error saying problem with the network connection. But both phones were connected to wifi here at home which was working fi

  • Since goimg to 4 firefox i get a message that the command is not getting to the program pogo

    since i updated to firefox 4 i get an error message that says the command is not getting to the program. That is for pogo only i have no problem elsewhere. I would like to ask how to reset my firefox homepage after someone has changed. It is firefox

  • Mediator error handling

    Hi, We are trying to achieve mediator error handling. We have a developed a composite with mediator which calls another service,which is deployed on server. Later we shut down the web service ,resulting in the error "ORAMED-03303:[Unexpected exceptio

  • Install questions on OVM Manager  and Oracle Linux

    I installed OVM Server 3.0.3 on a 64-bit server class box. Getting tight with a spare box, I tried to install OVM Manager on the Oracle VirtualBox as a VM and also to install it on the top of OVM Server on the same hardware box but neither has been s

  • Need simple flash that plays a sound, urgent!

    Hey, I haven't worked with flash for a long time and don't have it installed on my computer... But I need a very simple flash to can play a sound once. All it should do it so recive an url to a wav file and play it without display anything, thats it.