Horizontal navigation bar stretches across page

Just started using Dreamweaver CS3 and using Missing Manual
tutorial in chapter 9 (page. 365) #13.
My problem is with IE 5.2.3, which is installed and I never
use. I checked my tutorial in safari and opera and everything
looked fine. But, in IE the navigation bar that is supposed to be a
single line [home/features/ask the experts] under the banner is now
stretching across the page in a vertical position. The tutorial
said how to fix, but does not work. I am thinking the book is wrong
since I tested their finished page in IE and it is doing the same
thing. Mine looks just like this
http://www.sawmac.com/missing/dwcs3/tutorials/Chapter09_finished/hydroponics.html.
How do I fix this?
Thanks,
A Beginner

katemac08 wrote:
> Just started using Dreamweaver CS3 and using Missing
Manual tutorial in chapter
> 9 (page. 365) #13.
>
> My problem is with IE 5.2.3, which is installed and I
never use. I checked my
> tutorial in safari and opera and everything looked fine.
But, in IE the
> navigation bar that is supposed to be a single line
[home/features/ask the
> experts] under the banner is now stretching across the
page in a vertical
> position. The tutorial said how to fix, but does not
work. I am thinking the
> book is wrong since I tested their finished page in IE
and it is doing the same
> thing. Mine looks just like this
>
http://www.sawmac.com/missing/dwcs3/tutorials/Chapter09_finished/hydroponics.htm
> l.
Hummm IE5x probably isn't worth bothering about anymore. With
IE 8 on
the way tough on the very small percentage of IE5 user.
None of the stats for my few sites shows anyone using IE5
anymore and if
so the percentage is so low that in my opinion it isn't worth
the effort
of trying to resolve issues in that particular browser.
Move on and make sure it looks ok in IE6 upwards.

Similar Messages

  • Spry Horizontal Navigation Bar

    A horizontal navigation bar was created using Spry in CS3.
    The navigation bar needs to be lengthened.
    Does anyone know how to lengthen it so it spreads across the
    page?

    Hello,
    Can you post an URL?
    It's easier to tell you exactly what you might need to do.
    For example, it's a bit different if the nav bar is in a
    container with a
    width or not contained.
    Take care,
    Tim
    "Karen L." <[email protected]> wrote in
    message
    news:fsjtmm$3ea$[email protected]..
    >A horizontal navigation bar was created using Spry in
    CS3. The navigation
    >bar needs to be lengthened.
    > Does anyone know how to lengthen it so it spreads across
    the page?

  • How do i make a navigation bar for all pages

    Hi friends !
    I want the same navigation bar to appear on all the web pages of my website. (As these are the common things that all the webpages will have). But I didn't find any option to use the navigation bar as a template.
    Will I have to copy and paste the same navigation bar on all the pages (let's say 50 to 60 pages, I will have). It will be very tiresome and tedious job to do.
    And also if I make even a minor change in the navigation bar then I will have to change it in all 50-60 pages.
    What should I do ?
    Please help me in this regard.
    Imagine a 100 or 200 page site, perfectly functioning and on the air. Then, one day, you need to add or delete some button, or simply change a link. You need to change the menubar in ALL 200 pages, and then re-publish them all. Quite a work, ah ?
    Regards,
    Jtechmiami

    Although Dreamweaver Templates and Library items are suitable tools for doing this, they're tedious and cumbersome at best. They get old very quickly.
    By far the most efficient method is to set your navigation bar up as a Server Side Include (SSI).
    SSIs are not Dreamweaver specific, they're a general web technology available on any server.
    A good primer here
    http://www.projectseven.com/products/menusystems/pmm2/ug-examples/includes/index.htm
    Do you already have a hosting account? Does it have PHP available?
    jtechmiami wrote:
    Imagine a 100 or 200 page site, perfectly functioning and on the air. Then, one day, you need to add or delete some button, or simply change a link. You need to change the menubar in ALL 200 pages, and then re-publish them all. Quite a work, ah ?
    Not with SSIs. Simple sitewide menu updates take a few seconds.
    You edit a single text file locally (either button labels or a CSS rule for styling the button), upload (1-2 seconds) and every page on the site is instantly updated.
    Much better than DW Templates.

  • Horizontal Navigation Bar

    I'm using the Spry horizontal menu bar, and I've got a problem.
    In IE7, but not in Firefox or Safari or even IE8, the hover state is apparently only active for the text in the submenus, not the entire 'button'.  That is, the list item is styled to look like a button, it's 12 ems wide, the text for most of the items doesn't fill the entire button.  If one puts their mouse over the 'empty' part of the button, it seems that the 'hover' state is lost and the submenu disappears. In the image below, if you mouse over Northside, but leave the mouse on the right side of the 'button', the menu will quickly disappear if using IE7; it stays put when using the other browsers.
    Very annoying to the user (and to this developer). 
    The site is http://www.acblunit174.org
    I wonder if anyone has an explanation?  Is this a known problem with a known workaround?
    The css file is included below.
    Any advice would be appreciated.
    Thanks
    Bert Onstott
    713-851-1511.
    [email protected]
    @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
        padding:             0;
        list-style-type:     none;
        font-size:           11px;   /* changed font size to 11px */
        cursor:              default;
        width: 900px;
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: 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;
        list-style-type:     none;
        font-size:           100%;
        position:            relative;
        text-align:          left;
        cursor:              pointer;
        width:               auto;     /* set the width to auto for the top level navigation bar items so they fit the text. */
        float:               left;
        padding:             0;
    /* 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;
        position:            absolute;
        width:               12em;
        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;
        clear:               left;
    /* Menu item containers are seet to 14 ems */
    ul.MenuBarHorizontal ul li
        width:               12em;
    /* 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 auto so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left:                auto;
        top:                 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Menu items are a pale green block with padding, no text decoration and what amounts to      */
    /* and outset border.  Specifying 'outset' as the border doesn't work in IE with color CCCC99, */
    /* so it has to be simulated by specifying different left, right, top and bottom colors.       */
    ul.MenuBarHorizontal a
        display:             block;   /* causes menu items to appear horizontally */
        cursor:              pointer;
        background-color:    #ECE9D8; /* light green */
        color:               #000000; /* black */
        text-decoration:     none;
        border-top-width:    3px;
        border-right-width:  3px;
        border-bottom-width: 3px;
        border-left-width:   3px;
        border-top-style:    solid;
        border-right-style:  solid;
        border-bottom-style: solid;
        border-left-style:   solid;
        border-top-color:    #CCCC99;  /* dark greem */
        border-right-color:  #666600;  /* light green */
        border-bottom-color: #666600;  /* light green */
        border-left-color:   #CCCC99;
        padding-top:         3px;
        padding-right:       4px;
        padding-bottom:      3px;
        padding-left:        3px;
        margin: 1px;
    /* Menu items that have mouse over or focus have an olive green background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color:    #999966;
        color:               #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with an olive green background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color:    #999966;
        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(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: #ECE9D8;*/

    I wonder if anyone can tell me easily how to make the submenu's under the horizontal menu bar also appear horizontally?
    This question is more suited to the Spry forum.

  • Horizontal scroll bar for each page of the ADF page???

    Hi Everyone,
    I have developed one ADF page which is working very fine.
    The width and height of the page is more by which it is showing vertical scroll bar and horzontal scroll bar at the end(bottom) of the page.
    But the requirement is that the horzontal scroll bar should be displayed for every page when we scroll down but it is displaying at only bottom of the page.
    How can i include horizontal scroll bar?
    Any suggestions wil be really useful.
    Thanks.

    See if this works:
    <af:form id="f1">
    <af:panelStretchLayout id="psl1">
    <f:facet name="center">
    <af:panelGroupLayout id="pgl2" layout="scroll">
    <af:panelGroupLayout id="pfl1"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:form>
    Drop your content inside the second panelGroupLayout

  • Horizontal scroll bar moves with page up/down

    I'm new at this and apologize if I don't have the right forum, but can't find any reference to my problem anywhere. A month or so ago the horizontal scroll bar at the bottom of the screen started moving up or down with the page as I used the vertical scroll bar to page up or down. The bar partly disintegrates if I click on it, but mostly remains in place and obscures text on that line. If there is more than one page I can make the bar disappear by scrolling the to the next page, and then back. This happens only when I'm on the internet, and appears in news pages ( e.g. NY Times, BBC) and on my e-mails (I use Hotmail). I have a Mac mini, 1.66 GHz, OS 10.4.11, all other updates offered by Apple. I'm sure this is not a Safari problem, and my searches for Apple viruses, Trojans, Worms, has found nothing about this (there are discussions about vertical scrolling, but these don't seem to relate to my problem). So can anyone tell me what this is and how to get rid of it? Thanks for any help. TJ Wont

    I've got the same problem. It started when the BBC introduced adverts onto their News website. As the page loads an advert (or sometimes whitespace) appears between the tab and the BBC News banner. This is then shifted to the right hand side when the page fully loads.
    I suspect that there's some fancy DHTML going on that Safari isn't rendering properly.
    Problem doesn't occur if the Safari window is maximised to full screen width.

  • How can I eliminate unwanted horizontal scroll bars from certain pages on my site?

    A few pages on my website have a horizontal scroll bar at the bottom of the browser. I have several other pages in the exact same format and none of them have the horizontal scroll. No elements are off the edge of the page or anything. I'm a designer and don't know code, which is why I'm using Muse, but all the forums I've checked so far give coding solutions that I don't understand or know how to apply to my Muse site. Anyone have any suggestions?

    Can you post a URL for your site? (You could publish a free temporary site on Adobe Business Catalyst and provide the URL.)
    Other than the page being wider than the browser window or there being content that's outside the page bounds, I don't know what else to tell you to look for. If you provide a URL, we can probably detect what's causing the horizontal scrollbar and let you know what needs to change.

  • Add Image in the navigation bar of Help page

    Hi,
    I wanted to add image next to to the Search in the Help page navigation bar as in snapshot below:
    I wanted to add an image i.e the the logo next to above button in navigation bar. I tried adding , howevr could only add as Header, not right in the navigation pane. Correct me if I m wrong, the navigation control can be configured while generation web output. I coudnt find any other option to do this.
    Please let me your inputs on this.
    Thanks,
    Pallavi

    Hi all
    Sorry Colum, I think you are wrong. That looks exactly like a WebHelp Search dialog.
    Pallavi, I am thinking the answer for you may be a simple one. Use the WebHelp skin editor. There you should see an option to choose the image used for the Go button.
    I'm not exactly sure what version you are using. But I'll insert a screen capture of RoboHelp 7 below.
    My thought here is that you could create an image that includes your company logo along with the Go button. Then use that image for the Go button. Sure, both the company logo as well as the Go button would be clickable, but it should do the job, no?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Copying navigation bar to other pages

    I created a graphic representing a navigation bar, that I
    then turned into an image map with several links. I also did pop up
    windows for several of these links. Now I find I can't copy this
    navbar to other pages. Any suggestions on how to do this?

    1. Don't use the DW/FW pop-up menus.
    2. Post a link to your page so we can see what it is you have
    done.
    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
    ==================
    "Corolla2" <[email protected]> wrote in
    message
    news:e4lu9h$rod$[email protected]..
    >I created a graphic representing a navigation bar, that I
    then turned into
    >an
    > image map with several links. I also did pop up windows
    for several of
    > these
    > links. Now I find I can't copy this navbar to other
    pages. Any suggestions
    > on
    > how to do this?
    >

  • Help with IE drop down menu stretching across page, Chrome & Firefox work perfectly.

    I have set up a spry menu in my page.  file:///C:/Users/Kim/Documents/PQH_xhtml/index.html
    Everything works great in Chrome and Firefox. Just not in IE.  The only problem I am having is in IE the drop down menus stretch out all the way across the page.
    I have tried changing the width, but it messes up Chrome and Firefox.  Just need IE to shorten up the width of sub menus.
    Any help is GREATLY appreciated!!!

    @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;
    background-color: #f9f8f6;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: bold;
    font-style: oblique;
    /* 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: 14.28%;
    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: 100%;
    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
    float: none;
    clear:left;
    width: auto;
    white-space: nowrap;
    /* 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;
    border: thick ridge #3b87d5;
    /* 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(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;

  • Unwanted movement in horizontal navigation bar

    Have been struggling with this for days but finally have
    found an improvised solution.

    I've had a quick look.
    On your index page, events and contact you have two instances
    of </head>,
    <title></title>.
    Fix those and post back if the problem remains. I haven't
    looked further yet
    as there's just so much code...
    A comment on dyscalulia - I'm terrible with numbers - *but*
    coding is
    logic, not mathematics and your site would (IMHO) be easier
    to control using
    CSS. Try giving it a whirl, see what happens (o:
    I'm no expert, either at CSS or dyscalculia but I thought I'd
    stick in my 2¢
    anyway.
    I recommend
    http://www.w3schools.com/css/default.asp
    and
    http://projectseven.com/tutorials/css/css_td/index.htm
    Jo
    "cydcyd" <[email protected]> wrote in
    message
    news:ev2sc9$9gl$[email protected]..
    > My horizontal bar moves horizontally between pages. I
    would be very
    > grateful if
    > anyone would explain to me how to get it to keep
    perfectly still, as
    > simply as
    > possible, preferably by cutting and pasting.
    Unfortunately my brain just
    > can't
    > do code (I have discalculia) so I created the website in
    Design mode. My
    > website is at
    http://rachelspring.co.uk.
    Many thanks if anyone is willing
    > to
    > help me.
    >

  • Link iWeb Navigation Bar to External Page

    I want to add a link in the nav bar to my MobileMe Gallery page. On my old website origonally built with iWeb 2006, I created a blank page and then edited the index.html file for the site with the url for the Gallery. With iWeb 2011 (or is it 2009?), it doesn't seem to save the source files in the same location by default (Sites folder). Instead, they appear to be all within the domain file in the ~/Library/Application Support/iWeb folder, and the index.html file no longer exists in the same form.
    I've tried using a javascript script to autoforward, but I don't like this solution because it doesn't integrate the Gallery into the webpage in a seemless manner (the back button is cumbersome). Right now, I have hyper linked text statement that opens up the gallery, but this is awkeward as well. I would prefer not to do a whole custom nav bar, because I like the ease in updating it as I change pages (something that happens often). Does anyone have any ideas?

    there are several ways to do this.
    method #1:
    1) add a page to your site, that would a an item to navbar
    2) in this page add an html snippet with iframe code link to your gallery:
    <iframe src="http://path/to/your/gallery/" frameborder="0" width="700px" height="800px" scrolling="no" allowTransparency="true" ></iframe>
    you need to change width and height dimensions to fit your gallery. this is the easiest method, but the only way to go back is to use browser back button... not very ideal.
    method #2, open a page in new window; example:
    http://temp.cyclosaurus.com/NavBarAltered/My_Albums/My_Albums.html
    click on Gallery will open a new window and go to google site.
    code:
    http://temp.cyclosaurus.com/NavBarAltered/Code.html

  • Navigation Bar on Welcome Page?

    I just made a website as a test. I put in a welcome page first, of course. I then added a blog page. On the blog page the nav bar lists both welcome and blog. On my welcome page the bar at the top just lists "welcome". Shouldn't it list any other pages for quick access? I can add links to a side bar, but I thought any additional pages would show at the top nav bar. Help anyone?

    Yes, it should list the same links on every page...and every page should have a link for itself unless you have chosen not to include the page in the links using the Inspector.
    If you have not tried already, try emptying your browser cache to make sure that you are not seeing old, cached information. In Safari, look under the Safari menu item and select "Empty cache...". Then reload your website and see if your menus don't all show up correctly.

  • On v3.6 there was a vertical bar next to the horizontal navigation bars, but now on v.4 there is nothing, so is there a fix for this?

    On the older versions of FF, I could always get the history of my tab by clicking the vertical arrow that was on the left side next to the navigation arrows. I really miss the feature, and now everything takes more time since I have to go back, go back, and go back instead of scroll down to see the particular url in the tab I want to return to.
    Any help would be appreciated.
    Thank you very much.
    - Susan

    +1, exact same problem. Oddly enough was working yesterday, also on Yosemite then today I get the same message. If I ignore it my game launches but then I can't connect to any of my friends as I get the "failed after 10 retries" message. Specifically L4D for me.
    Frustrating as duck.

  • Somehow hyperlinked whole page, now navigation bar doesn't work

    I was trying to add a hyperlink to the bottom of my page, and somehow made the whole page the hyper link. Now my navigation bar doesn't work. When I scroll with my mouse to show me if there is something hiding the navigation bar, the whole page including the navigation bar seems to be one image. How do I fix this? I tried starting a new page, but have trouble formatting the columns properly again. HElp??? if you want to see what I'm talking about, its the Resume page that has the inactive nav bar, and the Resumee page that I can't format right... http://web.me.com/lauren.kelly

    Just checked the Resume page and the entire page, except for the navbar is a link to download your resume as a Word document. The file didn't have an extension but I added the .doc extension and it opened in Pages as a Word document.
    If you don't want the document to be downloaded check the page in iWeb to see if you see the hyperlink icon somewhere on the page. Select the object it's attached to and use the Inspector/Link/Hyperlink pane to remove it as a link.
    The links in the navbar are working as they should. It's just the body of the page that has an "unwanted" (?) link.
    OT

Maybe you are looking for

  • My ipod won't sync with itunes. everytime i try it says "unable to sync ipod. required disk cannot be found." what should i do? help please...

    can't figure out what's wrong... just got the ipod yesterday... i tried reinstalling itunes over again and restore ipod but still won't sunc.

  • HP Printer Software Update 2.10 causes application crashes

    Installed the above update two days ago. Since then whenever I try and print from an application e.g Mail or Firefox, with my HP2550n colour laser the application crashes and says "'Application' quit unexpectedly while using HPPrintSettings plugin.'

  • Erratic magic mouse behavior

    Will anybody ever be able to decipher what the specific causes are for the erratic behavior of Apple's Magic Mouse? Personally I think it boils down to the Bluetooth Signal itself that can cause a lot of this erratic behavior, like in sudden sluggish

  • DIV to Table Conversion

    I'm trying to figure out how to convert the DIV tags to a table, but can't quite get it. Can someone convert for me: <div style="padding: 5px;"> <div class="conContainer"> <div class="con_tl"><div class="con_tr"><div class="con_br"><div class="con_bl

  • Exception jsp custom tag in IBM AIX

              Hello, this is the scenario.           WebLogic Server 5.1 sp6 on IB AIX           The WLS is standalone; there is a servlet that make a forward to a frameset with           three frame; each frame has a jsp which take data by an http sessi