Spry Menu and iframe

Hi, I want to link my spry menu to my iframe, so when I click on something on my menu, a different page will show up on the iframe, can someone please explain to me how to do this? Thanks

Here some other links, maybe you prefer words instead of a video:
Examples
http://users.tpg.com.au/j_birch/plugins/superfish/examples/
http://www.egrappler.com/a-stylo-modern-jquery-accordion-akordeon/
http://craigsworks.com/projects/simpletip/
http://calebjacob.com/tooltipster/
http://www.solutions4website.com/Extensions/nova_dropdown_menu.aspx
Tutorials:
http://speckyboy.com/2012/08/29/10-responsive-navigation-solutions-and-tutorials/
http://try.jquery.com/
http://learn.jquery.com/
https://tutsplus.com/course/30-days-to-learn-jquery/
http://www.w3schools.com/jquery/

Similar Messages

  • Spry menu and Explorer

    I'm a beginner with DW and CSS. In Dreamweaver cs3 if I make
    a new page and put the spry vertical menu on it, then preview in IE
    (5.2 for the Mac), it doesn't work. It does work in every other
    browser. What do I have to do in order to get this to work in
    Explorer?
    I've made a 35 page site with a spry menu and I do hope there
    is a way to fix this.
    thanks!
    Ed A

    1: Don't use Spry. It has been discontinued by Adobe.
    2: There are tools out there that will excellently do what you are looking to do as a Dreamweaver Plugin. This includes having text over a repeating image background, like the one you have there.
    3: There is a pure CSS method that will allow you to learn how to build exactly what you want.
    One from Line 25.
    One from CSSWizardry.
    One that includes a generator.
    One that includes gradients.
    A really good tutorial from Rob Glazebrook.
    One that uses just 12 lines of JavaScript.
    So, don't use Spry. Use the ones above. If you don't want to have to learn anything, simply download the one from Project Seven, install the plugin, craft the menu and, Bob's your uncle. Easy to maintain and add onto as well. Worth the money spent.
    The rest of the ones do require some knowledge of HTML and CSS and, if you are going to continue to develop for the web, I recommend you learn those things.

  • Header, Spry Menu and Body not properly aligned

    Please take a look at my page http://www.seanmccuedesign.com/shemwebsitenew/index.html and tell me why the Header, Horizontal Spry Menu and Body are wonky and not aligned properly.
    Thanks very much,
    Sean

    The header is a bit to the left, the spry menu hangs too far to the right, and the body is too far to the right as well. I simply need them all centered...

  • How to make Spry menu and submenu backgrounds different

    Hi all. I have a horizontal spry menu bar, and i'm using a gradient image for the background of the main menu, but I want the submenu to just be a solid color. I figure i should just be able to use css for this solid BG, but I can create an image no problem if need be. I just think it looks unprofessional to have multiple segments of a horizontal gradient stacked vertically. I know this is possible, the second to last example on this link demonstrates but doesn't explain:
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html
    I would greatly appreciate any available help on this subject!  Thanks again!

    Thanks for asking, no that is not my complete css file. Those are only *additional* lines to place adjacent to existing styles in your "SpryMenuBarHorizontal.css", but in each case as the next style, in the location I have indicated. Here, I'll put my complete file here for you:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
         margin: 0;
         padding: 0;
         list-style-type: none;
         font-size: 100%;
         cursor: default;
         width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
         z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
         margin: 0;
         padding: 0;
         list-style-type: none;
         font-size: 100%;
         position: relative;
         text-align: left;
         cursor: pointer;
         width: 8em;
         float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
         margin: 0;
         padding: 0;
         list-style-type: none;
         font-size: 100%;
         z-index: 1020;
         cursor: default;
         width: 8.2em;
         position: absolute;
         left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
         left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
         width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
         position: absolute;
         margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
         left: auto;
         top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
         border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
         display: block;
         cursor: pointer;
         background-color: #EEE;
         padding: 0.5em 0.75em;
         color: #333;
         text-decoration: none;
    ul.MenuBarHorizontal ul a {
         background-color: yellow;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
         background-color: #33C;
         color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
         background-color: #33C;
         color: #FFF;
    ul.MenuBarHorizontal ul a.MenuBarItemHover, ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul a.MenuBarSubmenuVisible {
         background-color: green;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
         background-image: url(SpryMenuBarDown.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
         background-image: url(SpryMenuBarRight.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
         background-image: url(SpryMenuBarDownHover.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
         background-image: url(SpryMenuBarRightHover.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
         position: absolute;
         z-index: 1010;
         filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
         ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;
    .fleft {
         clear: none;
         float: left;
    The idea with putting the new styles *after* the original styles is that they are logically similar to but 'sub' styles to existing styles. In fact, you could probably put them way at the bottom, but if you wanted to edit them you might not find them again easily. I was trying to keep similar style rules together.
    Z

  • Spry Menu and Web Design Problem

    Hello Folks,
        I've been working feverishly on a layout for my father's new company but my progress has recently hit a snag. For the past hour and a half I've been trying to solve two problems:
    1. In Internet Explorer (IE 6), Opera, and Firefox (3.x) - there are a white lines appearing in the spry navigation menu (usually towards the right) after the last tab called "Company Info." The following URL is an example of my problem:
    http://www.personal.psu.edu/sbk142/real_test1.html
    2. Only in Firefox (believe it or not) - there is a space occuring between my spry navigation bar and the company logo (refer to the URL above). I'm pretty sure it has something to do with the spry menu properties that I assigned but I'm not sure where to begin.
    Thanks in advance for your help and happy holidays.
    Sam
    PS> The following are the CSS files for my website. Let me know if there are other files you need me to upload.
    ------------------Beginning of SpryMenuBarHorizontal-----------------------------
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        padding: 0;
        list-style-type: none;
        font-size: 97%;
        cursor: default;
        width: auto;
        margin-bottom: 0em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 9.5em;
        float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 8.2em;
        border-top-width: .1em;
        border-top-style: solid;
        border-top-color: #FFFFFF;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin-left: 8em;
        margin-top: 0.5em;
        margin-right: 0em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCCCCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #5B6372;
        text-decoration: none;
        text-align: center;
        color: #FFFFFF;
        padding-top: 0.05em;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #33C;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #33C;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(/sbk142/SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(/sbk142/SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(/sbk142/SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(/sbk142/SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    /* @media screen, projection */
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    ----------------Beginning of Website Layout (CSS) File----------------------------
    #left_pane {
        background-image: url(/sbk142/left_pane.gif);
        background-repeat: no-repeat;
        height: 682px;
        width: 131px;
    #nav {
        background-image: url(/sbk142/navigation.gif);
        background-repeat: no-repeat;
        height: 19px;
        width: 800px;
    #mission_content {
        background-image: url(/sbk142/mission_content.gif);
        background-repeat: no-repeat;
        height: 191px;
        width: 639px;
    #news_content {
        background-image: url(/sbk142/news_content.gif);
        background-repeat: no-repeat;
        height: 365px;
        width: 307px;
    #promo_content {
        background-image: url(/sbk142/promo_content.gif);
        background-repeat: no-repeat;
        height: 161px;
        width: 309px;
    #pop_content {
        background-image: url(/sbk142/pop_content.gif);
        background-repeat: no-repeat;
        height: 161px;
        width: 309px;
    #body_top_border {
        background-image: url(/sbk142/mission_top_border.gif);
        background-repeat: no-repeat;
        height: 11px;
        width: 669px;
    #body_border_left {
        background-image: url(/sbk142/body_left_border.gif);
        background-repeat: no-repeat;
        height: 671px;
        width: 14px;
    #body_border_right {
        background-image: url(/sbk142/body_border_right.gif);
        background-repeat: no-repeat;
        height: 671px;
        width: 16px;

    After spending another hour and a half trying to understand my mistakes I decided to create a new layout.
    http://www.personal.psu.edu/sbk142/template7.html
    Thanks to those who allocated some time to help me.
    HAPPY HOLIDAYS!!!!!!!!

  • Spry Menu and website differ on linked pages

    Two pages on my website (www.SimplyGreen.biz) are pointing to an incorrect page on my Spry Menu Bar.  When I look at the Spry Menu Bar set up - it is correct and when I look at the code behind that menu bar - it is pointing to the correct page also.  When I preview the page in browser, it comes up correct.  When I go to my website, the index page comes up correctly, but when you point or hover over the first menu item (Corporate Solutions on the far left) it opens the Driving Positive Solutions page instead of the index page it's supposed to.  The Spry menu is correctly pointing to the correct files.  I have manually taken the spry menus off the remote site and reloaded the new local site file........ and it still won't change it.  It must be saved somewhere else & I can't figure out where else to look.
    The same situation (wrong page opening up) happens under the Sustainable Solutions menu item (4th menu item) which is bringing up the Value of Partnerships page instead of it's own page (that shows up correctly also in the Spry Menu Bar and its deign code.
    It's driving me crazy!  I have reloaded the entire site, the dependent files, removed the template and reloaded it onto remote site, changed to another page and then back to force it over, etc.    I can't figure out where the wrong linked page info is coming from and why only those two pages bring up a different page than they are supposed to.

    Is it possible that your problem is caused by a web cache bringing up the wrong information? Clear history in your browser, or test on another machine to see if this is the problem.

  • Spry Menu and IE Issue (Hover Font Size)

    I'm not able to figure out why the hover focus setting works fine with Firefox or Chrome, but I can't find a setting in the CSS to ensure the value for the font on a hover within IE remains fixed. on a hover, the font size increases slighly in IE and pushes menu out of alignment very slightly. I was able to keep the hover size fixed in Firefox and Chrome via the CSS values for the spry, but not sure why IE is doing this and if there is a setting specific to IE that would allow me to keep the hover font size fixed, but not change the values in Firefox/Chrome. Is there any way to lock in the hover value using CSS for the font so in IE it remains constant?
    http://oregonstate.edu/~labellec/CDfiles/index.html
    Page is under development, but if you open it up in IE, the menu hover causes too much movement. I'm new to CS4, so, any help appreciated.
    Thanks,
    Chris

    Perhaps you could adapt the techniques used here for your
    Spry menu:
    http://www.projectseven.com/products/menusystems/pmm2/see-through.htm
    Al Sparber - PVII
    http://www.projectseven.com
    The Finest Dreamweaver Menus | Galleries | Widgets
    http://www.projectseven.com/go/pop
    The Ultimate DW Menu System
    "Webkil" <[email protected]> wrote in
    message
    news:gnmh2l$dvo$[email protected]..
    >I have tried this. I want a transparent background no
    colour. As soon as I
    >add transparent IE comes up with the word false in the
    sub menus.

  • Horizontal Spry Menu and Header Collapse in Browser

    If you look at this webpage in anything other than IE (specifically Safari), the header and spry menu are kind of collapsed into about a 600px frame, as opposed to the designated 800px area. Any thoughts on why this is happening? It looks fine in IE however... hmmm
    Thanks
    Sean

    Der nevermind. Answered my own question by opening my eyes.
    Thanks
    Sean

  • Spry menu and target window

    I have made a html document in Dreamweaver with a pre-defined layout: 2 column fixed, left sidebar, header and footer and inserted a spry menu in the <div class="sidebar1">. I would like the links to open in the main window <div class="content">, but my links open in new windows. I have tried to put in a target-tag "_self", but it doesn't seem to work. Any ideas how I get my links to show in the right frame?
    Part of the code:
    <div class="container">
      <div class="header"><!-- end .header --></div>
      <div class="sidebar1">
    <ul id="MenuBar1" class="MenuBarVertical">
      <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
        <ul>
          <li><a href="#">Item 1.2</a></li>
    </ul>
      <!-- end .sidebar1 --></div>
      <div class="content">
    /Mette

    Hi Pam,
    Please take care of the following
    Upgrade to Spry version 1.6.1. This can easily be done using the Spry Updater that can be found here
    Upload all Spry files to the server. At this moment there is no SpryMenuBar.js on the server
    After that, if the problem has not been eliminated, please come back here.
    Ben

  • Is this possible with Spry menu and Dreamweaver cs4?

    I just starting to learn DreamWeaver cs4 and Spry, I am building a website that has a flash banner, menu bar(which is using the Spry Menu Bar, and a area for content.  I have set up the content area with a DIV tag content_column.  Now, I would like to have the link from the menu bar, populate the "content_column" with a external web page.  I know that I can use the _parent, _blank, etc. setting for the target which just opens that link into a new browser page or replaces my current page,  but I would like that link to open in the "content_column" part of my web site.  The reason why I want this to happen, is so that the whole page, including the banner doesnt have to load ever single time the user click on a differnt menu option.  These external pages will have different elements in them suchs as text, images, and .swf files.
    Thanks in advance,
    Gregg

    Gregg,WELCOME!!! To the Dreamweaver Spry Forum! I see it is your first post...
    Instead of using frames (of any kind) to show "other" web pages within your present page, try out the Spry Tabbed Panels widget.
    I think it will do what you want. I've used it quite a bit, in various incarnations, and it is quite satisfactory in not redrawing the page every time you strike a tab.
    Here's a link to some Spry simulations: http://www.adobe.com/devnet/dreamweaver/articles/spry_simulations.html
    And some more info on Widgets: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WS48A27B01-5D59-409c-99B2-CB838B2985FCa .html
    Beth

  • Spry menu and image viewer

    I am using a spry horizontal menu.
    Two problems I am trying to fix:
    1. The drop down menus shift to the right in IE7 on PC
    instead of coming up directly below the parent menu item.
    2. The drop down menus overlap an 'image viewer flash
    element' area and struggle to stay on top when the slide show is
    playing. Is there a way to make them drop down over the flash area
    or will that always conflict?
    I am very new to Dreamweaver--I stalled on switching over
    from GoLive which I have used since 1997.
    Thanks for any help. I feel like a newbie all over again!
    Kate
    site:
    http://www.mtelliott.com/test

    #comp_image {
    background-image: url(../images/signs.jpg);
    background-repeat: no-repeat;
    position: relative;
    height: 210px;
    width: 745px;
    Try making that rule like this -
    #comp_image {
    background-image: url(../images/signs.jpg);
    background-repeat: no-repeat;
    position: relative;
    height: 210px;
    width: 745px;
    overflow:hidden;
    Does that help?  I believe what's causing the gap is the top margin on the <h1> tag which will 'escape' the container.  By making the container a new block formatting context with the overflow style, you can prevent the margin from escaping.  Alternatively, just add this rule -
    #comp_image h1 {
    margin-top:0;

  • Spry Menu and Pointer Changing in FireFox

    I've created a Spry Rollover Menu in Dreamweaver CS3 and have
    noticed the pointer switches to text insert when rolling over the
    menu in FireFox 2.0.0.8. Does anyone know of a fix?

    Can you post a link to the page? This happens when a
    triggering event has
    been applied directly to the <img> tag, rather than to
    an <a> tag that wraps
    the <img> tag, so we would need to see the code to
    advise you.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Mr. Angier" <[email protected]> wrote in
    message
    news:flgc1g$i3l$[email protected]..
    > I've created a Spry Rollover Menu in Dreamweaver CS3 and
    have noticed the
    > pointer switches to text insert when rolling over the
    menu in FireFox
    > 2.0.0.8. Does anyone know of a fix?

  • I am trying to center my content, but the Divs (which contain my spry menu and logo) will not center

    I have two Divs (there will be more in the future) that I am trying to center together on my page, but when I use the #wrapper code I have seen and a div tag, nothing changes.
    This is my HTML code
    <body>
    <div id="wrapper">
      <div id="Logo"><img src="Backgrounds/Color-War-Logowhite.png" width="250" height="250" alt="The Color War"></div>
      <div id="MenuBarDiv">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#">Home</a>    </li>
          <li><a href="#">About</a></li>
          <li><a href="#">FAQ</a>    </li>
          <li><a href="#">Registration</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </div>
      <div id="Home-Splat"></div>
      <div id="About-splat"></div>
      <div id="FAQ-splat"></div>
      <div id="Registration-splat"></div>
      <div id="Contact-splat"></div>
      <p> </p>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    and this is my CSS
    #wrapper {
              width: 960px;
              margin-right: auto;
              margin-left: auto;
    I am new to dreamweaver and webdesign and can't figure this out.
    Can anyone help me with this?

    You're welcome
    Find any hosting you can
    http://www.w3schools.com/css/

  • Spry Menu & iframes

    I am trying to debug a page that includes both a Spry menu
    and an iframe:
    http://gid.cdiabu.com/ptwinter06/mroulstone/resume.html
    When you navigate to this resume.html page you should be able
    to hover over the "portfolio" navigation link and see a sub-menu
    dropdown. However, no dropdown appears on this page and this page
    only. The only difference I see on this page is that it is the only
    one that includes an iframe. Could this iframe somehow be
    interfering with the dropdown list?
    A fresh pair of eyes would be appreciated. What else am I not
    seeing?
    Thanks,
    Gene
    resume.html

    On Sat, 8 Dec 2007 16:55:21 +0000 (UTC), "babong"
    <[email protected]> wrote:
    > When you navigate to this resume.html page you should be
    able to hover over
    >the "portfolio" navigation link and see a sub-menu
    dropdown. However, no
    >dropdown appears on this page and this page only. The
    only difference I see on
    >this page is that it is the only one that includes an
    iframe. Could this
    >iframe somehow be interfering with the dropdown list?
    While there appears to be some other problem with it as well,
    your
    assumption is correct. The menu cannot appear over the space
    reserved by
    the browser to display another page in the iframe.
    Gary

  • Horizontal spry menu floats around differently in FF and IE

    Hi there !!
    I would like to ask you about the following:
    When I use a horizontal spry menu and have it adjusted for FireFox, I get a result I can live with.
    Except that the submenu's under the heading 'cultuur' and 'projekt' do not slide down altogether, but are horizontal as well...
    How can I fix it so that they are positioned under its 'parent' ??
    But that's my minor question, actually...
    When I open my site in Internet Explorer (7 & 8) the spry menu looks different; it is far more stretched. First it also floated left, but I managed to fix that. The major problem is that the submenu's appear on the left of the page. I can't get them under their respective parents at all.
    Can you please help me with that?
    My site:
    www.mnette.nl
    (if you need more info, I'm glad to provide it )

    When I use the original SpryMenuBarHorizontal.css, your page behaves extremely well. I realise that you wish to customise the menu to suit your site, but these modifications are to be made under strict rules so that the cross browser functionality is not compromised.
    Have a look at the following 10 commandments http://dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one
    May I suggest that you ressurrect the original style sheet and work your way from there making sure that you keep to the above commandments.
    If you still have problems, please come back here for further assistance.
    Go Aussies and Hup Holland!
    Ben

Maybe you are looking for

  • Error while doing risk analysis for a user

    Hi , When i did risk analysis at user level for a particular user we are getting this error under level  ."Exception!!. No relavent language message available in database for :0292".I had reuploaded the the messages text file but still the error pers

  • Declaring a table in Smart Forms

    Hi Guyz, Im having a hard time in using smartforms...actually..i have a structure table ZHPayroll Which consists of basic,fix allow ,company etc. My main problem is i cant declare or call my structure table in Smartforms under Forms->Tables..My comma

  • What is the standard format of the query used to bring bw report as iview ?

    Please tell me the format of the query used to bring bw report into the portal when we have webtemplateid . Koti Reddy

  • Is snow leopard still supported?

    About  2 years ago I bought Macmini  server with snow leopard sever installed. Then in June, 2011 I upgraded to Lion,  which as a serve seemed to offer less capabilities. I wonder if other users have had similar experiences?

  • Set time limit

    I have looked under the settings->general->restrictions for a way to set time limits for games (Ipad 2 running 4.3) without much luck. I have also google'd the question and the the best I've found is an app (timer) with mixed reviews. Any suggestions