CSS problem with borders

Hello,
This page
http://www.curriculum2000.co.uk/new.htm
is displaying in IE6,
just how I want it to, with a yellow border, which spans the
whole width
of the window and sits directly underneath the buttons.
However in FF and Safari it is sitting above the buttons.
What do I need to do to move it down? Many thanks.
Vix

Thank you Michael!
There's something about float which hasn't quite clicked with
me yet!
Michael Fesser wrote:
> .oO(Vix)
>
>
>>This page
http://www.curriculum2000.co.uk/new.htm
is displaying in IE6,
>>just how I want it to, with a yellow border, which
spans the whole width
>>of the window and sits directly underneath the
buttons.
>>
>>However in FF and Safari it is sitting above the
buttons.
>
>
> As usual: IE is wrong. The result in FF, Opera etc. is
correct.
>
>
>>What do I need to do to move it down? Many thanks.
>
>
> The navigation bar is floated to the left, hence taken
out of the normal
> flow. This means the surrounding boxes #headerborder and
#menubar are in
> fact empty. One way to keep the float within these
boxes:
>
> #menubar {overflow: hidden}
>
> Micha

Similar Messages

  • CSS problem with the clear property

    This is my actual page
    http://www.martcol.co.uk/abba/
    and I want to swap the paragraphs around. This is what I come up
    with
    http://www.martcol.co.uk/abba/test/test01.php
    I reckon I am getting muddle with the whole clearing the
    float thing.
    Many thanks
    Martin
    Actually, I think it only breaks up in Firefox - bear in mind
    I only tested in IE6 and FF

    http://martcol.co.uk/abba/pages/patch.php
    Oh dear, another problem with my floated elements and the
    clear property....
    Martin
    I think I have this now. Not sure why but picking away at it
    has it fixed.

  • CSS problem with IE

    Hi
    I have created a style sheet and linked it to a template to
    form the basis of a website. I have included a background image in
    the masthead. It works fine in Firefox, but when I review the
    template or any pages made from the template in Internet Explorer
    the background image is not visible. I have checked my CSS with the
    W3C validator and there are no errors, so I am assuming that it is
    an IE problem. If anyone can help it would be great, as at least
    50% of the people who will wish to view the site I am trying to put
    together will be using IE.

    Assuming that this is the correct path to the background
    image, change
    this -
    background: url("../graphics/for banner.jpg")no-repeat right
    top;
    to this -
    background: url("../graphics/for banner.jpg") no-repeat right
    top;
    (note missing space after the closing parenthesis)
    Also, it's very bad form to have spaces in your
    file/pathnames. I suuggest
    that you rename those files.
    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
    ==================
    "sallw" <[email protected]> wrote in message
    news:[email protected]...
    > Oh, and here is the code to the CSS
    >
    > /***********************************************/
    > /* HTML tag styles */
    > /***********************************************/
    >
    > body{
    > font-family: Arial,sans-serif;
    > color: #333333;
    > line-height: 1.166;
    > margin: 0px;
    > padding: 0px;
    > background-color: #f8f8fa;
    > width: 100%;
    > }
    >
    > a:link, a:visited, a:hover {
    > color: #006699;
    > text-decoration: none;
    > }
    >
    > a:hover {
    > text-decoration: underline;
    > }
    >
    >
    > h1, h2, h3, h4, h5, h6 {
    > font-family: Arial,sans-serif;
    > margin: 0px;
    > padding: 0px;
    > }
    >
    > h1{
    > font-family: Times New Roman;
    > font-size: 120%;
    > color: #002a69;
    > }
    >
    > h2{
    > font-size: 114%;
    > color: #006699;
    > }
    >
    > h3{
    > font-size: 100%;
    > color: #002a69;
    > }
    >
    > h4{
    > font-size: 100%;
    > font-weight: bold;
    > color: #002a69;
    > }
    >
    > h5{
    > font-size: 100%;
    > color: #334d55;
    > }
    >
    > ul{
    > list-style-type: square;
    > }
    >
    > ul ul{
    > list-style-type: disc;
    > }
    >
    > ul ul ul{
    > list-style-type: none;
    > }
    >
    > label{
    > font: bold 100% Arial,sans-serif;
    > color: #334d55;
    > }
    >
    >
    > /***********************************************/
    > /* Layout Divs */
    > /***********************************************/
    >
    > #masthead{
    > margin: 0;
    > padding: 10px 0px;
    > background: url("../graphics/for banner.jpg")no-repeat
    right top;
    > border-bottom: 1px solid #cccccc;
    > width: 100%;
    >
    > }
    >
    > #navBar{
    > margin: 0 80% 0 0;
    > padding: 0px;
    > background-color: #eeeeee;
    > border-right: 1px solid #ccc;
    > border-bottom: 1px solid #ccc;
    > }
    >
    > #content{
    > float:right;
    > width: 75%;
    > margin: 0;
    > padding: 0 3% 0 0;
    > }
    >
    >
    > /***********************************************/
    > /*Component Divs */
    > /***********************************************/
    >
    > #siteName{
    > margin: 0px;
    > padding: 0px 0px 10px 10px;
    > }
    >
    >
    > /*************** #pageName styles **************/
    >
    > #pageName{
    > padding: 10px 0px 0px 0px;
    > }
    >
    >
    > /************* #breadCrumb styles *************/
    >
    > #breadCrumb{
    > font-size: 80%;
    > padding: 5px 0px 5px 10px;
    > }
    >
    >
    > /************** .feature styles ***************/
    >
    > .feature{
    > padding: 0px 0px 10px 10px;
    > font-size: 80%;
    > }
    >
    >
    > /************* #siteInfo styles ***************/
    >
    > #siteInfo{
    > clear: both;
    > border: 1px solid #cccccc;
    > font-size: 75%;
    > color: #cccccc;
    > padding: 10px 10px 10px 10px;
    > margin-top: 0px;
    > }
    >
    >
    > #siteInfo img{
    > padding: 4px 4px 4px 0px;
    > vertical-align: middle;
    > }
    >
    >
    > /************* #search styles ***************/
    >
    > #search{
    > padding: 5px 0px 5px 10px;
    > border-bottom: 1px solid #cccccc;
    > font-size: 90%;
    > }
    >
    > #search form{
    > margin: 0px;
    > padding: 0px;
    > }
    >
    > #search label{
    > display: block;
    > margin: 0px;
    > padding: 0px;
    > }
    >
    >
    > /*********** #navBar link styles ***********/
    >
    > #navBar ul a:link, #navBar ul a:visited {display:
    block;}
    > #navBar ul {list-style: none; margin: 0; padding: 0;}
    >
    >
    > #navBar li {border-bottom: 1px solid #EEE;}
    >
    >
    > html>body #navBar li {border-bottom: none;}
    >
    >
    >
    > /*********** .relatedLinks styles ***********/
    >
    > .relatedLinks{
    > margin: 0px;
    > padding: 0px 0px 10px 10px;
    > font-size: 90%;
    > }
    >
    > .relatedLinks h3{
    > padding: 10px 0px 2px 0px;
    > }
    > .relatedLinks a:visited{
    > color: #006699;
    > text-decoration: none;
    > }
    >
    > .relatedLinks a:hover{
    > color: #006699;
    > text-decoration: underline;
    > }
    > /************** #headlines styles **************/
    >
    > #headlines{
    > margin: 0px;
    > padding: 10px 0px 20px 10px;
    > font-size: 80%;
    > }
    >
    > #headlines p{
    > padding: 5px 0px 5px 0px;
    > }
    >

  • FW 8 popup-menu in CSS problem with IE7 & Safari

    Hi,
    hope that anyone out there got some ideas in my issue. I was
    already searching the forum for advice, but couldn't find
    meaningful infos.
    Here is my problem:
    I designed a page in FW8 (Mac) with a nice popup-menu. I
    exported this thing into DW8 having set the option to export the
    menu as CSS and slices to layers. Then I rearranged the html File
    and included some editable regions, as it was to be used as an
    template.
    Everything works fine in Firefox but IE7 and Safari
    experience some problems.
    The popup-layers are displayed behind the main text-area and
    not in front of it - this makes navigation a bit complicated.
    So teh menu is displayed with text and everything, but behind
    the main text.
    What I tried:
    I tried to reset the z-Index of the popup-layers to values
    below 10 (were set to 500) - didn't help.
    I gave every single item a z-index - didn't help.
    I gave the main text area an z-index of 0 or -1 - made the
    layer disappear.
    I reexported the whole thing - made me just crazy.
    I worked through the css file for errors - maybe I'm not to
    good in CSS ;)
    I checked the forums, but could only find issues where the
    menu was not displayed at all or the text was missing - doesn't
    apply.
    -- no more ideas :(
    Link to my page:
    Website
    Link
    I really appreciate your help! Any comments welcome!
    patrick

    > I think it's a bug with ie7. It doesn't support
    javascript completely,
    > nor
    > does it css.
    I don't think this is accurate. Each browser supports things
    differently,
    and CSS is no exception, but support for javascript is fairly
    reliable
    across the board.
    > but I can't find one that I can use my own images, yet
    Then you are not looking in the right place. Go here -
    http://www.projectseven.com/
    and examine their extensive collection of menu products.
    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
    ==================
    "udigrudi" <[email protected]> wrote in
    message
    news:ful3t7$n9u$[email protected]..
    > I've had a similar problem, menus made in Fireworks 8
    don't show up
    > completely
    > in ie7 for windows either. The menu shows up, but the
    text of submenus
    > with
    > submenus doesn't show up.
    >
    > I think it's a bug with ie7. It doesn't support
    javascript completely,
    > nor
    > does it css.
    >
    > Since your website has disappeared, I'm sorry I can't be
    of more help.
    > I'm
    > thinking of getting a "third party" submenu generator
    (but I can't find
    > one
    > that I can use my own images, yet)
    >

  • Css problem with image

    Hello,
    I am just starting working with dreamweaver cc for 3 months and try to create a website.
    I try to learn step by step CSS uses but since some weeks  I have some problems in displaying figure and caption into this page.
    It seems very easy when I look for other websites 
    http://analytics-consulting-v501.businesscatalyst.com/laboratoire_test_2.html
    I try to have two images and their captions on the same line. and so on , line after line.
    and then isotope to filter them using the criteria in the first line.
    Of course, I have test many ways but without success... probably due to a lack of work with CSS.
    Thank you very much for any help !!!
    Jean-François

    I have removed all of your CSS to show images and associated caption being placed in a document.
    <!DOCTYPE html>
    <html>
    <head>
    <title>Analytics Consulting</title>
    <style>
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    body {
        width: 1000px;
        margin: auto;
    .thumb {
        width: 50%;
        float: left;
        padding: 15px 25px;
    div.thumb:odd {
        clear: both;
    .thumb img{
        width: 70%;
        display: block;
        margin: auto;
    </style>
    </head>
    <body>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    </body>
    </html>

  • CSS problem with drop menu please help!

    I have been going crazy for hours trying to use CSS to cover up part of a border, but I can't seem to do it with z-index or anything. My desired effect is to have the border be visible around the menu item and the drop part (only during hover) and eliminate the part that is separating the menu item from the drop box. Any help would be greatly appreciated.
    Here is the menu part of my HTML:
    <ul class="dropdown">
                    <li><a href="about-us.html">Company</a>
                        <ul>
                            <li><a href="about-us.html">About Us</a></li>
                            <li><a href="people.html">People</a></li>
                            <li><a href="business-development.html">Business Development</a></li>
                        </ul>   
                    </li>
                    <li><a href="oral-cancer.html">Therapeutic Areas</a>
                        <ul>
                            <li><a href="oral-cancer.html">Oral Cancer</a></li>
                        </ul>
                    </li>
                    <li><a href="media-inquiries.html">News</a>
                        <ul>
                            <li><a href="media-inquiries.html">Media Inquiries</a></li>
                            <li><a href="press-releases.html">Press Releases</a></li>
                            <li><a href="publications.html">Publications</a></li>
                        </ul>
                    </li>
                    <li><a href="contact.html">Contact</a>
                        <ul>
                            <li><a href="contact.html">Contact</a></li>
                        </ul>
                    </li>
                </ul>
    Here is the CSS:
    /* Drop Menu */
    ul.dropdown, ul.dropdown li, ul.dropdown ul
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 15px;
    ul.dropdown
        position: relative;
        float: left;
    ul.dropdown li
        float: left;
        background-color: #C3C3E5;
        padding: 7px 10px;
        line-height: 15px;
        border: 1px solid #C3C3E5;
        height: 20px;
    ul.dropdown li:hover
        position: relative;
        background-color: #BBAADD;
        border: 1px solid #FFFFFF;
        border-bottom-color: #BBAADD;
    ul.dropdown ul
        z-index: 100;
        visibility: hidden;
        position: absolute;
        width: 180px;
        top: 100%;
        left: 0;
        margin-left: -1px;
    ul.dropdown ul li
        float: none;
        background-color: #BBAADD;
        border: 0;
    ul.dropdown a:link
    z-index: 100;
        color: #FFFFFF;
        text-decoration: none;
    ul.dropdown li:hover > ul
        visibility: visible;
        border: 1px solid #FFFFFF;
    ul.dropdown li:hover > ul li:hover
        border: 0;
    ul.dropdown li:hover > ul li a:hover
        text-decoration: underline;

    Like this:
    http://alt-web.com/DEMOS/CSS2-Horiz-Drop-Menu.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • CSS problem with content in different browsers?

    I've been revamping the CSS for a website and got most internal pages to display normally on different browsers. However, the site entry page is driving me nuts. I think I've been staring at the code so long that I've overlooked an obvious error. In Firefox, the paragraph of intro text lines up nicely to the right of the navigation panel. In Google Chrome (and IE of course), it pops down underneath the nav panel as shown in screen capture below. Even if I zoom out. Included a link so you can see it in real time. (Since the revamp is recent, the style sheet isn't pretty.)
    http://www.keithpurtell.com/kthings/index.htm

    Sorry for the slow reply. Thanksgiving and family in town and all that. No I didn't fix or change anything. And I'll make sure the percentage match in the morning. It's after midnight here.

  • CSS Problem with iPod page

    I too am having an issue on my iPod page here.  I have created a css file in Dreamweaver and it appears in DW but when I upload it the page does not display correctly.  I hope this is something easy.

    I hope this is something easy.
    It is.
    THis give you any ideas?

  • CSS Problem With Background

    Im working on Dreamweaver MX
    The code in my CSS sheetis:
    border: 1px solid #669999;
    background-attachment: scroll;
    background-image: url(/assets/pictures/lama_border1.gif);
    background-repeat: no-repeat;
    background-position: left top;
    There's grey square appears instead of the image.
    I use a custom class.
    Before everything was ok.

    Nobody will have any idea what you are describing without
    seeing the full
    page. Can you post a link to it, please?
    > background-attachment: scroll;
    > background-position: left top;
    There's no need for these two styles - the first and the
    second are a
    restatment of the default.
    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
    ==================
    "Prizmo" <[email protected]> wrote in
    message
    news:eovgkc$13g$[email protected]..
    > Im working on Dreamweaver MX
    > The code in my CSS sheetis:
    >
    > border: 1px solid #669999;
    > background-attachment: scroll;
    > background-image:
    url(/assets/pictures/lama_border1.gif);
    > background-repeat: no-repeat;
    > background-position: left top;
    >
    > There's grey square appears instead of the image.
    >
    > I use a custom class.
    >
    > Before everything was ok.
    >

  • CSS Problem with Internet Explorer 8.0 Filters and linked reports

    Hi ,
    The Internet explorer 8.0 re presents the filter prompt for linked reports and a warning of "Prevention of XSS" is flashed on the browser. Is there a patch for this since changes in Interner explorer security setting are not possible to be changed in all clients.
    Thanks
    Regards
    Shivakanth

    Jovaini,
    IE 8 handles threads different than previous versions. Thus, if you sign into an APEX workspace and then try to start a new instance of IE 8, that process is no longer seen as a separate process like IE 6 & 7, but rather as another "tab", if you will. Thus, as soon as you log into workspace 2, your login credentials for workspace 1 are invalidated. This is true even if workspace 2 is the APEX Admin Console, as it uses the same underlying authentication mechanism.
    To solve this, you have a couple of options:
    1) Use two different browsers (i.e. IE 8 and Google Chrome).
    2) Use the hostname for one session and the IP address for another session. This will limit you to two concurrent logins.
    3) Either edit your local hosts file or if you can, have your network administrator create a number of aliases to the same APEX server. You can then use each alias for a different session with the same browser. APEX manages its session cookies based on the hostname, so if you have 10 aliases, you will be able to be logged into 10 separate workspaces within the same browser using this approach.
    Thanks,
    - Scott -
    http://spendolini.blogspot.com
    http://www.sumneva.com

  • Problem with Spry Menu Bar 2.0 (1.0) re - CSS

    Hello:
    I am having some difficulty with a Spry Menu Bar (horizontal) 2.0 (1.0)  that I have created.  Initially I thought the problem was with regard to rendering issues on IE 6.0, however the problem seems to be more general than that and I have come to believe that it has to do with the CSS created by the Widget Browser and modified once imported into the webpage.  Hence I have elected to post my issue here rather than on the spry page.
    I have relied on the tutorial provided by David Powers (Bayside.css) and in addition other documentation regarding the Spry menu bar UI.  The problem appeared to be one of IE 6 rendering the page with a gap that is created when the drop down menus appear, thus pushing down any divs that appear below the page.
    However, through a painstaking process of trial and error my problem now seems to be that when I export the CSS generated by the widget browser to an external style sheet (the general style sheet governing the whole site), it conflicts with other CSS styles regarding links etc.  The end result is that all the padding, background colours, background images, and text colours are lost.  So long as the CSS remains within the head this doesn't happen.
    My thinking is that this must have to do with issues of specificity, inheritence, etc.
    The site can be viewed at the following URL: http://www.aclco.org/testing/index.html.  In its current form all CSS related to the menu bar is found in the head of each page.  (see CSS below).
    My question is can I establish a separate style sheet for the horizontal menu bar and have those styles applied specifically (and only) to the menu bar.  My only other alternative is to work through the remainder of the general style sheet and work through any issues of specificity/inheritance -- which may be the "best" practice, but it risks causing other "cascading" [sic] problems elsewhere.
    Any advice or suggestions or directed reading (that would point to a solution) that could be offered would be greatly appreciated.
    Steve Webster
    The CSS governing the horizontal menu bar is as follows:  (currently the following CSS is embedded in the head of the web page)
    <style type="text/css">
    /*  -- Begins Spry Menu Widget 2.0 (1.0) Horizontal menu bar Custom styles --  */
    /* BeginOAWidget_Instance_2141544: #MenuBar */
    /* Settable values for skinning a Basic menu via presets. If presets are not sufficient, most skinning should be done in
        these rules, with the exception of the images used for down or right pointing arrows, which are in the file SpryMenuBasic.css
         These assume the following widget classes for menu layout (set in a preset)
        .MenuBar - Applies to all menubars - default is horizontal bar, all submenus are vertical - 2nd level subs and beyond are pull-right.
        .MenuBarVertical - vertical main bar; all submenus are pull-right.
        You can also pass in extra classnames to set your desired top level menu bar layout. Normally, these are set by using a preset.
        They only apply to horizontal menu bars:
            MenuBarLeftShrink - The menu bar will be horizontally 'shrinkwrapped' to be just large enough to hold its items, and left aligned
            MenuBarRightShrink - Just like MenuBarLeftShrink, but right aligned
            MenuBarFixedLeft - Fixed at a specified width set in the rule '.MenuBarFixedLeft', and left aligned. 
            MenuBarFixedCentered -  - Fixed at a specified width set in the rule '.MenuBarFixedCentered',
                            and centered in its parent container.
            MenuBarFullwidth - Grows to fill its parent container width.
        In general, all rules specified in this file are prefixed by #MenuBar so they only apply to instances of the widget inserted along
        with the rules. This permits use of multiple MenuBarBasic widgets on the same page with different layouts. Because of IE6 limitations,
        there are a few rules where this was not possible. Those rules are so noted in comments.
    #MenuBar  {
        background-color:transparent;
        font-family: Arial, Helvetica, sans-serif; /* Specify fonts on on MenuBar and subMenu MenuItemContainer, so MenuItemContainer,
                                                    MenuItem, and MenuItemLabel
                                                    at a given level all use same definition for ems.
                                                    Note that this means the size is also inherited to child submenus,
                                                    so use caution in using relative sizes other than
                                                    100% on submenu fonts. */
        font-weight: normal;
        font-size: 17px;
        font-style: normal;
        padding:0;
    /* Caution: because ID+class selectors do not work properly in IE6, but we want to restrict these rules to just this
    widget instance, we have used string-concatenated classnames for our selectors for the layout type of the menubar
    in this section. These have very low specificity, so be careful not to accidentally override them. */
    .MenuBar br { /* using just a class so it has same specificity as the ".MenuBarFixedCentered br" rule bleow */
        display:none;
    .MenuBarLeftShrink {
        float: left; /* shrink to content, as well as float the MenuBar */
        width: auto;
    .MenuBarRightShrink {
        float: right; /* shrink to content, as well as float the MenuBar */
        width: auto;
    .MenuBarFixedLeft {
        float: left;
        width: 80em;
    .MenuBarFixedCentered {
        float: none;
        width: 80em;
        margin-left:auto;
        margin-right:auto;
    .MenuBarFixedCentered br {
        clear:both;
        display:block;
    .MenuBarFixedCentered .SubMenu br {
        display:none;
    .MenuBarFullwidth {
        float: left;
        width: 100%;
    /* Top level menubar items - these actually apply to all items, and get overridden for 1st or successive level submenus */
    #MenuBar  .MenuItemContainer {
        padding: 0px 0px 0px 0px;
        margin: 0;     /* Zero out margin  on the item containers. The MenuItem is the active hover area.
                    For most items, we have to do top or bottom padding or borders only on the MenuItem
                    or a child so we keep the entire submenu tiled with items.
                    Setting this to 0 avoids "dead spots" for hovering. */
    #MenuBar  .MenuItem {
        padding: 10px 10px 10px 4px;
        background-color:#000088;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent-Dark.png);
        background-repeat:repeat-x;       
    #MenuBar  .MenuItemFirst {
        border-style: none none none none;
    #MenuBar .MenuItemLast {
        border-style: none none none none;
    #MenuBar  .MenuItem  .MenuItemLabel{
        text-align:center;
        line-height:1.4em;
        color:#ffffff;
        background-color:transparent;
        padding: 0px 18px 0px 5px;
        width: 10em;
        width:auto;
    .SpryIsIE6 #MenuBar  .MenuItem  .MenuItemLabel{
        width:1em; /* Equivalent to min-width in modern browsers */
    /* First level submenu items */
    #MenuBar .SubMenu  .MenuItem {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 15px;
        font-style: normal;
        background-color:#000088;
        padding:0px 2px 0px 0px;
        border-width:0px;
        border-color: #cccccc #cccccc #cccccc #cccccc;
        /* Border styles are overriden by first and last items */
        border-style: solid solid none solid;
    #MenuBar  .SubMenu .MenuItemFirst {
        border-style: none;
        padding: 0px;
    #MenuBar  .SubMenu .MenuItemFirst .MenuItemLabel{
        padding-top: 0px;
    #MenuBar .SubMenu .MenuItemLast {
        border-style: none none none none;
    #MenuBar .SubMenu .MenuItemLast .MenuItemLabel{
        padding-bottom: 10px;
    #MenuBar .SubMenu .MenuItem .MenuItemLabel{
        text-align:left;
        line-height:1em;   
        background-color:transparent;
        color:#ffffff;
        padding: 10px 10px 10px 10px;
        width: 240px;
    /* Hover states for containers, items and labels */
    #MenuBar .MenuItemHover {
        background-color: #2E35A3;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent%20Light2.png);
        background-repeat:repeat-x;
    #MenuBar .MenuItemWithSubMenu.MenuItemHover .MenuItemLabel{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    #MenuBar .MenuItemHover .MenuItemLabel{
        background-color: transparent;
        color: #ffffff;
    #MenuBar .SubMenu .MenuItemHover {
        background-color:#2E35A3;
    #MenuBar .SubMenu .MenuItemHover .MenuItemLabel{
        background-color: transparent;
        color: #ffffff;
    /* Submenu properties -- First level of submenus */
    #MenuBar .SubMenuVisible {
        background-color: transparent;
        min-width:0%;  /* This keeps the menu from being skinnier than the parent MenuItemContainer - nice to have but not available on ie6 */
        border-style: none none none none;
    #MenuBar.MenuBar .SubMenuVisible {/* For Horizontal menubar only */
        top: 100%;    /* 100% is at the bottom of parent menuItemContainer */
        left:0px; /* 'left' may need tuning depending upon borders or padding applied to menubar MenuItemContainer or MenuItem,
                        and your personal taste.
                        0px will left align the dropdown with the content area of the MenuItemContainer. Assuming you keep the margins 0
                        on MenuItemContainer and MenuItem on the parent
                        menubar, making this equal the sum of the MenuItemContainer & MenuItem padding-left will align
                        the dropdown with the left of the menu item label.*/
        z-index:10;
    #MenuBar.MenuBarVertical .SubMenuVisible {
        top: 0px;   
        left:100%;
        min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse */
    /* Submenu properties -- Second level submenu and beyond - these are visible descendents of .MenuLevel1 */
    #MenuBar .MenuLevel1 .SubMenuVisible {
        background-color: transparent;
        min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse*/
        top: 0px;    /* If desired, you can move this down a smidge to separate top item''s submenu from menubar -
                    that is really only needed for submenu on first item of MenuLevel1, or you can make it negative to make submenu more
                    vertically 'centered' on its invoking item */
        left:100%; /* If you want to shift the submenu left to partially cover its invoking item, you can add a margin-left with a
                    negative value to this rule. Alternatively, if you use fixed-width items, you can change this left value
                    to use px or ems to get the offset you want. */
    /* IE6 rules - you can delete these if you do not want to support IE6 */
    /* A note about multiple classes in IE6.
    * Some of the rules above use multiple class names on an element for selection, such as "hover" (MenuItemHover) and "has a subMenu" (MenuItemWithSubMenu),
    * giving the selector '.MenuItemWithSubMenu.MenuItemHover'.
    * Unfortunately IE6 does not support using mutiple classnames in a selector for an element. For a selector such as '.foo.bar.baz', IE6 ignores
    * all but the final classname (here, '.baz'), and sets the specificity accordingly, counting just one of those classs as significant. To get around this
    * problem, we use the plugin in SpryMenuBarIEWorkaroundsPlugin.js to generate compound classnames for IE6, such as 'MenuItemWithSubMenuHover'.
    * Since there are a lot of these needed, the plugin does not generate the extra classes for modern browsers, and we use the CSS2 style mutltiple class
    * syntax for that. Since IE6 both applies rules where
    * it should not, and gets the specificity wrong too, we have to order rules carefully, so the rule misapplied in IE6 can be overridden.
    * So, we put the multiple class rule first. IE6 will mistakenly apply this rule.  We follow this with the single-class rule that it would
    * mistakenly override, making sure the  misinterpreted IE6 specificity is the same as the single-class selector, so the latter wins.
    * We then create a copy of the multiple class rule, adding a '.SpryIsIE6' class as context, and making sure the specificity for
    * the selector is high enough to beat the single-class rule in the "both classes match" case. We place the IE6 rule at the end of the
    * css style block to make it easy to delete if you want to drop IE6 support.
    * If you decide you do not need IE6 support, you can get rid of these, as well as the inclusion of the SpryMenuBarIEWorkaroundsPlugin.js script.
    * The 'SpryIsIE6' class is placed on the HTML element by  the script in SpryMenuBarIEWorkaroundsPlugin.js if the browser is Internet Explorer 6. This avoids the necessity of IE conditional comments for these rules.
    .SpryIsIE6 #MenuBar .MenuBarView .MenuItemWithSubMenuHover .MenuItemLabel /* IE6 selector  */{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    .SpryIsIE6 #MenuBar .MenuBarView .SubMenu .MenuItemWithSubMenuHover .MenuItemLabel/* IE6 selector  */{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    .SpryIsIE6 #MenuBar .SubMenu .SubMenu  /* IE6 selector  */{
        margin-left: -0px; /* Compensates for at least part of an IE6 "double padding" version of the "double margin" bug */
    /* EndOAWidget_Instance_2141544 */
    /* Ends Spry Menu Bar Widget 2.0 (1.0) Horizontal Menu Custom styles */
    </style>
    The CSS governing the site generally is reproduced below:  (my belief is that it is the a:link, a:visited,  a:hover, a:active styles that may be in conflict).
    @charset "utf-8";
    body  {
        font: 100% Verdana, Arial, Helvetica, sans-serif;
        min-height: 0; /* This is necessary to overcome the "haslayout" bug that is found in Windows 7 in conjuction with IE8.  For More information see: URL -- http://reference.sitepoint.com/css/haslayout.html */
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
        padding: 0;
        text-align:center; /* This allows for the centering of the container and overcomes a bug inherent in IE 5 */
        color: #000000;
        list-style-image: none;
        background-color: #FCFCFC;
    h1,h2,h3,h4,h5,h6 {
    color:#000066;
    a:link {
        color: #151A96;
        text-decoration: underline;
    a:visited {
        text-decoration: underline;
        color: #1B8DCD;
    a:hover {
        text-decoration: none;
        color: #F30A0A;
    a:active {
        text-decoration: underline;
        color: #151A96;
    #container {
        width: 960px;   
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        text-align: left; /* this overrides the text-align: center on the body element. */
        background-image:
        url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Website%20Midsection%20_960.png);
        background-repeat: repeat-y;
    #header {
            padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
            width:960px;
            height:332px;
            background-image:
            url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Website%20Header_960.png);
            background-repeat:no-repeat;
    #header h1 {
        margin-right: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
        display:none;
    #header img {
        display: none;
    #Main_nav_contents {
        padding: 0;
        margin-top: 0px;
        height: 39px;
        width: 950px;       
        padding-top: 275px; 
        padding-left: 39px;
        z-index: 3; 
    #MenuBarVertical {
        margin-bottom: 50px;
        padding-top: 50px;
        padding-bottom:200px;
        padding-left: 15px;
        padding-right: 15px;
    .mainContent_left {
        margin: 0;/* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
        padding-left:30px;
        padding-right:20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
        width: 600px;
        float: left;
    .sidebar_right {
        float: right; /* since this element is floated, a width must be given */
        width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
        margin-top: 30px;
        margin-left:0;
        margin-right:10px;
        font-size:90%;
    .mainContent_right {
        margin-left: 10px;
        padding-left:30px;
        padding-right:20px;
        width: 600px;
        float: right;
    .sidebar_left {
        float: left; /* since this element is floated, a width must be given */
        width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
        margin-top: 30px;
        margin-left:30px;
        margin-right:0;
        overflow: hidden;
        font-size:90%;
    .main_content_centered {
        width: 650px;
        margin-left: 155px;
    .main_content_centered_header {
        margin-left: 75px;
    .sidebar_textbox {
        margin: 0px;   
        width: 260px;
        padding: 2px;
    .sidebar_textbox_header {
        width:255px;
        height:58px;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Portrait%20Textbox%20He ader.png);
    .sidebar_textbox_background_middle {
         width: 255px;   
        padding-top: 12px;   
        padding-bottom: 10px;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Portrait%20Textbox%20Mi ddle.png);
        background-repeat: repeat-y;
    .sidebar_textbox_content {
        /* The width and padding are set as follows to accomodate quirks in browser rendering and to ensure that text is contained within the background of the text box */
        width: 230px;
        padding-left: 20px;
        padding-right: 40px;
    .sidebar_textbox_footer {
        width:255px;
        height:64px;
    background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Portrait%20Textbox%20Foo ter.png);
    #issues_menu a:link {
        color: #151A96;
        text-decoration: none;
        font-weight:bold;
    #issues_menu a:visited {
        color: #151A96;
        font-weight:bold;
        text-decoration: none;
    #issues_menu a:hover {   
        color: #F30A0A;
        font-weight:bold;
        font-style: oblique;
        text-decoration: none;
    #issues_menu a:active {
        color: #151A96;
        font-weight:bold;
        text-decoration: none;
    #archives {
        padding-top: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 0px;
    .landscape_textbox {
        width: 500px;
        margin-right: 0px;
        margin-left: 30px;
        padding-top:35px;
        padding-bottom: 25px;
        font-style: normal;
        font-weight: normal;
    .landscape_textbox_hdr {
        width:500px;
        height:38px;
        margin:auto;
        padding:0;
        background-image:
    url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Landscape%20Textbox%20Header.png);
    .landscape_textbox_middle {
        width:auto;
        margin:auto;
        padding-top: 12px;
        padding-bottom: 12px;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/landscapte%20Textbox%20 Middle.png);
        background-repeat:repeat-y;
    .landscape_textbox_content {
        width:450px;
        padding:25px;
    .landscape_textbox_ftr {
        width:500px;
        height:44px;
        margin:auto;
        padding:0;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Landscape%20Textbox%20F ooter.png);
    #footer {
        padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
        width: 960px;
        height: 222px;
        background-image:
        url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Website%20Footer%20_960.png);
        background-repeat:no-repeat;
    #footer p {
        margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
        padding:0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
        text-align:center;
        margin-left: 50px;
        margin-right: 50px;
        padding: 10px;
        font-size: small;
    #footer h5 {
    text-align:center;
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    .dropcap {
        display: block;
        float: left;
        line-height: 80%;
        font-size: 250%;
        font-weight: bolder;
        color: #000066;   
        padding: .03em .1em 0 0;
    .red_arrows {
        list-style-position: outside;
        list-style-image: url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Arrow%20Large.png);   
    .blue_bullets {
        list-style-position: outside;
        list-style-image: url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Bullet%20Medium%20Full.png);   
    .attention {
        color: #F30A0A;
        font-size:x-large;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-style: italic;
        font-weight:900;
    .attention_small {
        color: #F30A0A;
        font-size:large;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-style: italic;
        font-weight:900;
    .table {
        table-layout:fixed;
    .blue {
        color: #00F;
    #container .mainContent_left p .blue {
        color: #0303A0;

    Hello Martin:
    Thanks for your input.  However I am not certain we have resolved this issue adequately, or understand the principles governing the css as regards this spry menu framework 2.0 (1.0).
    For example, the menu only works in IE 6.0 if the css remains in the head.  I agree with your original post that it shouldn't make any difference whether the css is posted in the head or in a separate style sheet (so long as specificity issues are addressed).  Both should work -- and yet it doesn't.
    If the CSS is placed in the separate style sheet governing the total site, it doesn't work for 6.0.  If placed at the top of the style sheet, conflicts of specificity prevent the menu from rendering properly in any of the browsers causing the rules for general links to govern the menu.   This has been verified using a cross browser testing.  If the styles are placed at the bottom of the style sheet to help them take precedence, they work in all the browsers except for IE 6.
    The website I am building needs to support IE 6 for a variety of reasons, and because it is catering to the non-profit community and to low income persons, I am mindful of even small differences in page weight.
    So for me, at least, the issue remains baffling.
    I appreciate your input, but also would appreciate the input from others, and especially Adobe Community Professionals and employees.  The spry framework in this regard is not well documented.  I am not certain if this is exclusively a CSS problem, if it might also be complicated by the architecture of the spry framework, or if indeed other variables are at play.
    I would be my hope that in resolving the problem, other users of the this particular spry framework might also benefit.
    Thanks,
    Steve.

  • Problem with .css for Spry menu

    Hi,
    I am having a problem with the Spry menu I have created and edited. All looks great in the Design view of Photoshop however under the Live view or opened using a browser the menu reverts to a list of hyperlinks!
    I have checked the .css link but when using Firefox CSS editor the CSS file for the menu is simply blank?
    Any suggestions would be great!
    Thanks,
    Ozan

    Your SpryMenuBarHorizontal.css needs to be within your SpryAssets folder, which is where it would have been put automatically when you inserted the SpryMenuBar. You can move it back in there using the Files Panel.
    Here is what the file structure needs to look like:
    SpryAssets
    SpryMenuBar.js
    SpryMenuBarHorizontal.css
    cssstyletemplate.css
    index.html (or whatever the name of your page is)
    Hierarchally, the top level of your root folder will show folders for SpryAssets and css and the html pages will be on the same level.
    The Spry assets themselves will be down a level IN the SpryAssets folder, as the styletemplate.css file will be down a level IN the css folder.
    In the head of the document, you will have
         <link rel="stylesheet" type="text/css" href="css/styletemplate.css" />
         <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"> </script>
         <link rel="stylesheet" type="text/css" href="SpryAssets/SpryMenuBarHorizontal.css" />
    At the end, remove the slash before Spry inside the imgDown and imgRight sections:
         <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    Compare these with your files and file structure and correct any small typos, and they should be correctly linked.
    Beth

  • Problem with redundancy in CSS 11051

    I have a problem with redundancy in CSS 11051. I use firewall load balancing and server load balancing. Load balancers which only load balance over 3 firewall switch from primary to master with no problems.
    problem is with load balancers which load balance over firewalls and over servers two. whene the master is shutdown, backup keeps master function, all services on backup LB are alive, but it is not possible to display web page on address 10.10.7.16. Even if I try from the network 10.10.7.0/24, so before firewalls. below my config. any help appreciate.
    ===primary LB=====
    !Generated on 10/30/2002 10:42:53
    !Active version: ap0500002
    configure
    !*************************** GLOBAL ***************************
    ip redundancy master
    no console authentication
    restrict ftp
    app
    app session 10.10.60.13
    ip firewall 1 10.10.7.1 10.10.8.1 10.10.8.10
    ip firewall 2 10.10.7.2 10.10.8.2 10.10.8.10
    ip firewall 3 10.10.7.3 10.10.8.3 10.10.8.10
    ip route 0.0.0.0 0.0.0.0 firewall 1 1
    ip route 0.0.0.0 0.0.0.0 firewall 2 1
    ip route 0.0.0.0 0.0.0.0 firewall 3 1
    ip route 10.10.1.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.2.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.12.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.14.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.22.0 255.255.255.0 10.10.3.1 1
    !************************* INTERFACE *************************
    interface e1
    phy 100Mbits-FD
    bridge vlan 62
    interface e2
    phy 100Mbits-FD
    bridge vlan 7
    interface e3
    bridge vlan 3
    interface e4
    phy 100Mbits-FD
    bridge vlan 7
    interface e5
    phy 100Mbits-FD
    interface e6
    phy 100Mbits-FD
    bridge vlan 6
    interface e7
    phy 100Mbits-FD
    interface e8
    phy 100Mbits-FD
    bridge vlan 6
    !************************** CIRCUIT **************************
    circuit VLAN62
    ip address 10.10.60.14 255.255.255.252
    redundancy-protocol
    circuit VLAN7
    redundancy
    ip address 10.10.7.10 255.255.255.0
    circuit VLAN3
    redundancy
    ip address 10.10.3.10 255.255.255.0
    no redirects
    circuit VLAN6
    redundancy
    ip address 10.10.6.10 255.255.255.0
    !************************** SERVICE **************************
    service cc1
    ip address 10.10.3.129
    keepalive type tcp
    keepalive port 443
    service cc2
    ip address 10.10.3.130
    keepalive type tcp
    keepalive port 443
    active
    service ssl1
    ip address 10.10.6.131
    keepalive port 443
    keepalive type tcp
    active
    service ssl3
    ip address 10.10.6.133
    keepalive port 443
    keepalive type tcp
    active
    service ssl4
    ip address 10.10.6.141
    keepalive type tcp
    keepalive port 443
    active
    service ssl6
    ip address 10.10.6.143
    keepalive port 443
    keepalive type tcp
    active
    service www1
    ip address 10.10.6.101
    keepalive type tcp
    keepalive port 443
    weight 2
    active
    service www3
    ip address 10.10.6.103
    keepalive type tcp
    keepalive port 443
    active
    service www4
    ip address 10.10.6.121
    keepalive port 443
    keepalive type tcp
    active
    service www6
    ip address 10.10.6.123
    keepalive type tcp
    keepalive port 443
    active
    !*************************** OWNER ***************************
    owner L5_Owner
    content L5_Rule
    vip address 10.10.7.6
    application ssl
    protocol tcp
    port 443
    url "/*"
    add service www1
    add service www3
    add service www4
    advanced-balance sticky-srcip
    add service www6
    balance weightedrr
    active
    content L5_Rule_CC
    vip address 10.10.3.120
    advanced-balance sticky-srcip
    add service cc1
    add service cc2
    active
    content L5_Rule_SSL
    vip address 10.10.7.16
    application ssl
    protocol tcp
    port 443
    url "/*"
    add service ssl1
    add service ssl3
    add service ssl4
    advanced-balance sticky-srcip
    add service ssl6
    active
    !*************************** GROUP ***************************
    group CC
    vip address 10.10.3.120
    add destination service cc1
    add destination service cc2
    active
    ======
    ===backup LB=====
    !Generated on 10/29/2002 20:47:30
    !Active version: ap0503015
    configure
    !*************************** GLOBAL ***************************
    ip redundancy
    console authentication primary none
    restrict ftp
    app
    app session 10.10.60.14
    ip firewall 1 10.10.7.1 10.10.8.1 10.10.8.10
    ip firewall 2 10.10.7.2 10.10.8.2 10.10.8.10
    ip firewall 3 10.10.7.3 10.10.8.3 10.10.8.10
    ip route 0.0.0.0 0.0.0.0 firewall 1 1
    ip route 0.0.0.0 0.0.0.0 firewall 2 1
    ip route 0.0.0.0 0.0.0.0 firewall 3 1
    ip route 10.10.1.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.2.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.12.0 255.255.255.0 10.10.3.1 1
    ip route 10.10.14.0 255.255.255.0 10.10.3.1 1
    !************************* INTERFACE *************************
    interface e1
    phy 100Mbits-FD
    bridge vlan 62
    interface e2
    phy 100Mbits-FD
    bridge vlan 7
    interface e3
    phy 100Mbits-FD
    bridge vlan 3
    interface e4
    phy 100Mbits-FD
    bridge vlan 7
    interface e5
    phy 100Mbits-FD
    interface e6
    phy 100Mbits-FD
    bridge vlan 6
    interface e7
    phy 100Mbits-FD
    interface e8
    phy 100Mbits-FD
    bridge vlan 6
    !************************** CIRCUIT **************************
    circuit VLAN62
    ip address 10.10.60.13 255.255.255.252
    redundancy-protocol
    circuit VLAN7
    redundancy
    ip address 10.10.7.10 255.255.255.0
    circuit VLAN3
    redundancy
    ip address 10.10.3.10 255.255.255.0
    no redirects
    circuit VLAN6
    redundancy
    ip address 10.10.6.10 255.255.255.0
    !************************** SERVICE **************************
    service cc1
    ip address 10.10.3.129
    active
    service cc2
    ip address 10.10.3.130
    active
    service ssl1
    ip address 10.10.6.131
    keepalive port 443
    keepalive type tcp
    active
    service ssl3
    ip address 10.10.6.133
    keepalive port 443
    keepalive type tcp
    active
    service ssl4
    ip address 10.10.6.141
    keepalive type tcp
    keepalive port 443
    active
    service ssl6
    ip address 10.10.6.143
    keepalive port 443
    keepalive type tcp
    active
    service www1
    ip address 10.10.6.101
    keepalive type tcp
    keepalive port 443
    weight 2
    active
    service www3
    ip address 10.10.6.103
    keepalive type tcp
    keepalive port 443
    active
    service www4
    ip address 10.10.6.121
    keepalive port 443
    keepalive type tcp
    active
    service www6
    ip address 10.10.6.123
    keepalive type tcp
    keepalive port 443
    active
    !*************************** OWNER ***************************
    owner L5_Owner
    content L5_Rule
    vip address 10.10.7.6
    protocol tcp
    port 443
    url "/*"
    add service www1
    add service www3
    add service www4
    advanced-balance sticky-srcip
    add service www6
    balance weightedrr
    active
    content L5_Rule_CC
    vip address 10.10.3.120
    advanced-balance sticky-srcip
    add service cc1
    add service cc2
    active
    content L5_Rule_SSL
    vip address 10.10.7.16
    protocol tcp
    port 443
    url "/*"
    add service ssl1
    add service ssl3
    add service ssl4
    advanced-balance sticky-srcip
    add service ssl6
    active
    !*************************** GROUP ***************************
    group CC
    vip address 10.10.3.120
    add destination service cc1
    add destination service cc2
    active
    =======

    Please visit the folloiwing page where you can find many configuration examples on configuring CSS for Load Balancing.
    http://www.cisco.com/en/US/products/hw/contnetw/ps789/prod_configuration_examples_list.html
    Hope it helps.

  • Problem with CSS styles and Previewing in Firefox

    Hello,
    I recently rebooted my Mac OS X system (leopard) and reinstalled Adobe CS3. Before this I had virtually no problems with Dreamweaver and everything was running smoothly. However, now whenever I preview my pages in Safari, the CSS code is completely mangled.
    Also, my site won't preview in Firefox unless I close any existing tabs and exit Firefox completely. I have no idea why these problems are occurring, but I have pasted the code below so any advice would be extemely helpful.
    ---------------------------------html----------------------------------------
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv= "Content-Type" content="text/html; charset= UTF-8" />
    <title>armed and harmless</title>
    <link href="untitled.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
        <div id="nav">
        </div>
    </div>
    </body>
    </html>
    -----------------------------------css-----------------------------------
    @charset "UTF-8";
        background-color: #000000;
        background-image: url(images/header.jpg);
        background-repeat: no-repeat;
        margin: 0px;
    #wrapper {
        height: 800px;
        width: 1000px;
        margin-top: 0px;
        margin-right: auto;
        margin-left: auto;
        background-color: transparent;
        background-image: none;
    #wrapper #nav {
        background-color: transparent;
        background-image: none;
        height: 30px;
        width: 1000px;
        margin-top: 260px;
        clear: both;
        border-top-width: 1px;
        border-bottom-width: 1px;
        border-top-style: solid;
        border-bottom-style: solid;
        border-top-color: #FFFFFF;
        border-bottom-color: #FFFFFF;

    hey there,
    thanks so much for the insight on the firefox issue. hopefully they fix that soon.
    as for the css, i do have a screenshot of what's happening. the background image seems to repeat after the navigation bar instead of keeping the transparent background. it's extremely odd and i've never seen it before. it can be seen in the attached photo.
    thanks again for your help,
    -e

  • Problem with CSS files when placed in multiple locations.

    Hi,
    In our application we have a folder structure for the code files. Folder structure looks something like the one shown below:
    ABC
    ---Scripts
    ---Stylesheets
    DEF
    Scripts
    Stylesheets
    Common
      ---Scripts
      ---Stylesheets
      The problem is, if we create a CSS file and place it in its module specific folder (Eg: ABC) to which it belongs to and call the CSS on a page, then the styles are not getting applied to the page. But if we move the stylesheet to the Common folder, then page renders properly. In common folder, we already have a common CSS which is used across the project.
    Facing similar problem with module specific and common js files.
    We have to move all the module specific files to the module folders and all the common files to be placed in the Common folder.
    MII Version: 11.5
    Please help!
    Regards,
    Rajesh.

    Rajesh,
    Also note that, If your html is referencing to multiple css files then the last referenced CSS file style classes will override all the style class having same names in the previous css files.
    for example,
    say CSS1 has
    .bodycolor
    background-color:yellow;
    .button
    color:red;
    h1
    font-size:50pt;
    and CSS2 has
    .bodycolor
    background-color:red;
    .button
    color:yellow;
    And your HTML is,
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="css1.css"/>
    <link rel="stylesheet" type="text/css" href="css2.css"/>
    <title>CSS Test</title>
    </head>
    <body class="bodycolor">
    <h1>Hello World</h1>
    <input type="button" class="button" name="B1" id="B1" value="      Click         " size="50">
    </body>
    </html>
    In this case the classes "bodycolor" and "button" will be overridden by css2 file but h1 will be taken from css1
    Hope this helps!!
    Regards,
    Adarsh

Maybe you are looking for

  • Is there any need to create schema in unvierse designer of business objects

    HI this is sridhar is there any need to create schema in unvierse designer of business objects xi r2,  when i integrated sap bi data into business objects,i,e i have fetched sap-bi/bw data to business objects universe please help me

  • Calling reports from forms 10g

    Hi, I have proc reports that are called from the forms. These proc reports run with host command on the server. But since now it is AS,so i need to search for the way os taht when client run form through URL, the text file that proc generated should

  • I try to use the tools in photoshop elements 13, instead of one of the tools I only get the eraser. Whatt can I do?

    When I try to one of the tools in photoshop element 13 I get always the eraser. I push the brush. But I het once again the reaser.  What can I do to get one of the other tools? Joost van Santen

  • Savin Printer Woes

    I am trying to connect to a networked printer. Savin C2824. I can see it on the network. I downloaded the drivers and have tried several ways to connect (IP, Windows, More). Each time, when i print, I get reams and reams and reams of pages of gibberi

  • Is iTunes Match down? Weird Problems...

    Hello everyone, I'm experiencing some weird issues with iTunes (latest version) / iTunes Match at the moment. As soon as I want to add more than one song (in the cloud) to a playlist via drag'n'drop, the connection gets lost and all of my songs in th