Menubar submenu centering problems

I just downloaded the spry widgets today to use the menubar
in a webpage. I need the menu items to be centered but the submenus
to be on the left. Unfortunately while it works in Firefox it does
not work in IE7. In IE the menu items on top are centered but the
submenus shift over to the right with the left edge of the submenu
directly under the center of it's parent menu item. I checked the
Menu
Bar Styling Examples thread but nothing I tried seemed to work
(ironically i accidentally commented out the ul.MenuBarHorizontal
li.MenuBarItemIE css and it did align correctly in ie even though
it caused other problems)
Here's the html code I'm using in the page that contains the
menubar along with any css for the menu bar in the actual page:
quote:
<style type="text/css">
ul.MenuBarHorizontal li
width: 103px;
text-align:center;
font-size:11px; border:none;
ul.MenuBarHorizontal ul li
width: 150px;
text-align:left; font-size:11px; border:none;
ul.MenuBarHorizontal a
text-align:center; background-color:#9ACABE; color:#FFFFFF;
font-weight:bold; font-family:arial;
ul.MenuBarHorizontal ul a {
text-align: left;
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
color: #003377;
text-decoration:underline;
</style>
****START OF HTML CODE****
<td valign="middle" height="25px" align="center"
bgcolor="#9ACABE">
<table cellpadding=0 cellspacing=0 width="100%"
align="center">
<tr valign="middle" align="center">
<td align="center" valign="middle">
<!-- START OF MENUBAR -->
<ul id="menubar1" class="MenuBarHorizontal">
<li><a href="about.html">ABOUT
US</a></li>
<li><a class="MenuBarItemSubmenu"
href="services.html">SERVICES</a>
<ul>
<li><a href="itServices.html">Information
Technology</a></li>
<li><a
href="consultServices.html">Consulting</a></li>
<li><a href="accountServices.html">Customer
Support</a></li>
<li><a href="softwareEngineering.html">Software
Engineering</a></li>
<li><a href="immunization.html">Immunization
Registry</a></li>
<li><a
href="products.html">Products</a></li>
</ul>
</li>
<li><a class="MenuBarItemSubmenu"
href="alliances.html">ALLIANCES</a>
<ul>
<li><a
href="customers.html">Customers</a></li>
<li><a
href="partners.html">Partners</a></li>
<li><a
href="affiliates.html">Affiliates</a></li>
</ul>
</li>
<li><a href="news.html">NEWS &amp;
EVENTS</a></li>
<li><a
href="contact.html">CONTACTS</a></li>
</ul>
<!--Initialize the Menu Bar widget object-->
<script type="text/javascript">
var menubar1 = new Spry.Widget.MenuBar("menubar1",
{imgDown:"", imgRight:""});
</script>
</td>
</tr>
</table>
</td>
Here's a copy of the SpryMenuBarHorizontal.css file I have:
quote:
@charset "UTF-8";
/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release
1.5 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights
reserved. */
LAYOUT INFORMATION: describes box model, positioning,
z-order
/* The outermost container of the Menu Bar, an auto width box
with no margin or padding */
ul.MenuBarHorizontal
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
cursor: default;
width: auto;
/* Set the active Menu Bar with this class, currently setting
z-index to accomodate IE rendering bug:
http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
ul.MenuBarActive
z-index: 1000;
/* Menu item containers, position children relative to this
container and are a fixed width */
ul.MenuBarHorizontal li
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
position: relative;
text-align: left;
cursor: pointer;
width: 8em;
float: left;
/* Submenus should appear below their parent (top: 0) with a
higher z-index, but they are initially off the left side of the
screen (-1000em) */
ul.MenuBarHorizontal ul
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
z-index: 1020;
cursor: default;
width: 8.2em;
position: absolute;
left: -1000em;
/* Submenu that is showing with class designation
MenuBarSubmenuVisible, we set left to auto so it comes onto the
screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
left: auto;
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
width: 8.2em;
/* Submenus should appear slightly overlapping to the right
(95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
position: absolute;
margin: -5% 0 0 95%;
/* Submenu that is showing with class designation
MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
ul.MenuBarSubmenuVisible
left: auto;
top: 0;
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
border: 1px solid #CCC;
/* Menu items are a light gray block with padding and no text
decoration */
ul.MenuBarHorizontal a
display: block;
cursor: pointer;
background-color: #EEE;
padding: 0.5em 0.75em;
color: #333;
text-decoration: none;
/* 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;
/* 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;
If I can get this last issue working I'd be all set with the
website. If anyone has any suggestions I would greatly appreciate
it. Thanks.

All you have to do is remove the text-align:center that you
added to this rule:
ul.MenuBarHorizontal li
width: 103px;
text-align:center;
font-size:11px; border:none;
In the Menu Bar Styling Examples, we don't change the
text-alignment of the li, we change the alignment of the link
elements which are the actual menu items.
--== Kin ==--

Similar Messages

  • Menubar submenu display problems

    I have created a menubar using graphic elements as the
    submenu triggers, and I was able to go in and make modifications to
    the css and js files so that everything was being properly
    positioned in FF and IE6. When I checked in IE7, however, the
    submenu's appear much lower than in FF/IE6. Here is a link to the
    page to see what I am talking about:
    http://www.jefffulwiler.net/spryWidgets/menuCombo.html.
    Any suggestions on addressing this issue would be greatly
    appreciated. Thanks.
    Jeff

    This fix was posted in another thread and worked for me:
    The problem for the false is a known bug we have for the Spry
    Menu in a solution for another IE bug. You'll have to go in your
    CSS and look for this class "ul.MenuBarVertical iframe". Inside you
    should add the following line:
    filter:alpha(opacity:0.1);

  • Menubar submenu display problems in IE

    I have created a menu with dropdown submenus which display
    fine in safari and firefox, though in IE 6 and 7 I'm having
    problems with the submenus. In between each submenu box is a gap
    which should be transparent to show the colour of the cell
    underneath, though in Internet Explorer instead of being
    transparent its showing white inbetween the boxes, also you can see
    between the top two boxes part of some text which looks like it
    says 'false'. Is there anybody out there who can help me? I'm so
    stuck!! Many thanks, Rebecca

    This fix was posted in another thread and worked for me:
    The problem for the false is a known bug we have for the Spry
    Menu in a solution for another IE bug. You'll have to go in your
    CSS and look for this class "ul.MenuBarVertical iframe". Inside you
    should add the following line:
    filter:alpha(opacity:0.1);

  • MenuBar -submenu color

    Hi I've some problem with setting style of menubar.
    I've two question:
    I can change the color of menubar, but may I change the background color of submenu ?( I see them still white).
    May I change the orientation of submenu? (for example from vertical to horizzontal and vice versa).
    Thank you
    Marco

    Here is how to change the menubar item background color ..
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout="vertical"
            verticalAlign="left"
            backgroundColor="white"
    >
        <mx:Style>
        .menuBarStyle
        backgroundColor : #ff0000;
        </mx:Style>
        <mx:MenuBar menuStyleName="menuBarStyle" id="myMenuBar" labelField="@label">
            <mx:XMLList>
                <menuitem label="MenuItem A">
                    <menuitem label="SubMenuItem A-1" enabled="false"/>
                    <menuitem label="SubMenuItem A-2"/>
                </menuitem>
                <menuitem label="MenuItem B"/>
                <menuitem label="MenuItem C"/>
                <menuitem label="MenuItem D">
                    <menuitem label="SubMenuItem D-1"
                        type="radio" groupName="one"/>
                    <menuitem label="SubMenuItem D-2"
                        type="radio" groupName="one"
                        selected="true"/>
                    <menuitem label="SubMenuItem D-3"
                        type="radio" groupName="one"/>
                </menuitem>
            </mx:XMLList>
        </mx:MenuBar>
    </mx:Application>
    I'm not sure about #2.
    hope this helps,
    Babo,

  • Spry horizontal menu: submenu background problem in IE7

    Hello,
    I am using the Spry horizontal menu in this website: http://www.isis-papyrus.com
    It works perfectly on all current version browsers, but in IE7 the white submenu background only shows behind the actual text for each link and not to the border of the submenu box.
    I modified the css to allow for dynamic sizing for each submenu (see below). 
    Any suggestions would be greatly appreciated.
    Best, Oliver
    @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: 10px;
    cursor: default;
    width: auto;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: normal;
    /* 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: auto;
    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: auto;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 100%;
    clear:left;
        float: none;
    background-color: transparent;
        color: #fff;
    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: 100%;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #339999;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #fff;
    padding: 0.4em 0.8em;
    color: #339999;
    text-decoration: none;
    white-space: nowrap;
    /* 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: #fff;
    color: #339999;
    /* 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: #339999;
    color: #fff;
    /* 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;

    Thank you so much for your quick answer Beth!
    You solved half my problem!
    I added the bg-color to the li and ul styles of the submenus (css below) and now the white background shows correctly in IE7.
    The only thing I still would like to resolve: The hover style for the menu items (inverse bg and text colors) only works for the actual text of the link and not for the entire width of the submenu box.
    Any suggestions?
    Thank you again.
    Best, Oliver
    @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: 10px;
    cursor: default;
    width: auto;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: normal;
    /* 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: auto;
    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: auto;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 100%;
    clear:left;
        float: none;
    background-color: #fff;
         color: #fff;
    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: 100%;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #339999;
    background-color: #FFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #fff;
    padding: 0.4em 0.8em;
    color: #339999;
    text-decoration: none;
    white-space: nowrap;
    /* 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: #fff;
    color: #339999;
    /* 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: #339999;
    color: #fff;
    /* 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;

  • Spry menubar submenu horizontal instead of vertical

    I have spent two days trying to figure out why the submenu on my spry menubar goes horizontal instead of vertical.  I have watched youtube videos and all the tutorials automatically have them going vertical under each other.  My submenu bar goes left to right and i dont want that.  I have tried several changes with the code in CSS and the HTML and I can move the main menubar and the submenu all over the screen, just cant get it do drop down under each other.  Help please!!

    Have a look here for auto widths http://labs.adobe.com/technologies/spry/samples/menubar/AutoWidthHorizontalMenuBarSample.h tml.
    The only change I would make to the above is to add !important to the following
    ul.MenuBarHorizontal ul li {
        display: block;
        float: none !important;
        width: auto;
        white-space: nowrap;
        border-bottom: solid 1px #EEE;
    Gramps

  • Horizontal Spry Submenu Alignment Problems

    I am experiencing a massive emotional low with not being able to figure this problem out.
    I have incorporated a Spry menu in the site I'm building, but I'm having trouble getting the
    drop down submenu to align properly in Firefox/ Chrome AND IE8
    What seems to be the heart of the problem is the CSS for the Spry class "ul.MenuBarHorizontal ul.MenuBarSubmenuVisible"
    By default, it's set to this:
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    If I leave it like this, the submenus drop down where I want them to (upon rollover) - with the left edge
    of the submenu aligned with the parent button (ul li item). However this only works properly in Chrome / Firefox.
    If I use IE8 to look at the site. The submenus drop down such that the left edge of submenu aligns
    with the the center of the partent button (ul li item) upon rollover.
    I can get IE to overcome this alignment issue by adding "position:relative" to the CSS for "ul.MenuBarHorizontal ul.MenuBarSubmenuVisible"
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    position:relative
    After making this addition, IE8 works fine, and the submenus align to the left. But now, if I browse in Chrome
    or Firefox, the 1px border of the submenus do not appear on the left, right and bottom edges. It's only there
    for the top edge???!!!??
    It seems that the property listed below gets compromised and does not work if I add the "position:relative" attribute
    to "ul.MenuBarHorizontal ul.MenuBarSubmenuVisible"
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    If anyone can offer and explanation to this I would be hugely appreciative.
    Thanks so much,
    Hosanna_Bizarre

    Please find the html and css attached.
    Yes, I have used text-align: center on the main menu.
    Like I say, adding position:relative to the css for "ul.MenuBarHorizontal ul.MenuBarSubmenuVisible"
    fixes the problem for IE and it displays left justified submenu items underneath a center-aligned
    main menu button.
    Problem is the submenu borders do not display properly any more for Chrome / Firefox.
    Thanks
    H

  • MenuBar - Submenu Indicator

    I've gone over the Spry sample menubar code carefully and I
    just don't see how this all works. In the samples, whenever a menu
    has a submenu there is a black indicator present. On mouse over,
    the black indicator changes to white. In my code, I get the white
    indicator on mouse over; but, the black indicator is not present at
    any time. I don't find this too surprising because I don't have a
    black indicator image present anywhere nor do I have such an image
    referenced anywhere. As far as I can see, the sample Spry code
    doesn't have a black indicator image or any such reference either,
    yet the Spry sample code works and mine doesn't. Could someone
    please explain this to me (i.e., what I have to do to get the black
    submenu indicator to appear)? I would really appreciate it. BTW, my
    setup can be seen at
    http://www.simpson-rich.com/main.
    Thanks for any help.
    ... doug

    First docs:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/MenuBar.html
    Default component is
    mx.controls.treeClasses.DefaultDataDescriptor
    so you can see in sorce realization.
    It should reazile interface http://livedocs.adobe.com/flex/3/langref/mx/controls/menuClasses/IMenuDataDescriptor.html

  • Menubar submenu icon display right side..

    Hi.,
             I have using menubar with  custom item renderer menus. sub menu icon was displayed right side corner. but i want to display left side icon and then labelfield., using iconfield and labelfield also.
    Any one help this problem..
    With Regards.,
    Lings

    Flex 4.1 will have support for right-to-left languages.  Is that what you
    are trying to accomplish or are you just trying to get a different look?  If
    you just want a different look, subclass MenuItemRenderer and look at past
    threads on how to apply it.

  • MenuBar submenu display

    when i go on a root menu element of a menubar, automatically i display a submenu element, if it exists.
    May I make a condition to decide to see the submenu or no.
    thanks

    First docs:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/MenuBar.html
    Default component is
    mx.controls.treeClasses.DefaultDataDescriptor
    so you can see in sorce realization.
    It should reazile interface http://livedocs.adobe.com/flex/3/langref/mx/controls/menuClasses/IMenuDataDescriptor.html

  • Indesign CS4 Pages pane centering problem

    Dear all,
    I have a problem with my Pages pane. Instead of centering the pages previews they are now placed to the far right side of the screen. This means that i need to enlarge the pages pane to 4/5th of the screen to be able to view the pages.
    See picture...
    If i try to make the pane smaller the pages are going out of view to the right side.
    If i deactivate the "facing pages" option in (CTRL+ALT+P) then the pages are positioned to the far left side.
    Is this a setting that changed somewhere, and how to make them centered again?
    Or is this a bug?
    Thank you in advance for your help...
    Johan

    I'd suggest restoring your InDesign preferences using the instructions in the link below:
    http://forums.adobe.com/thread/526990

  • Safari Centering Problem

    I created a cosmetics website (http://bootiebabe.com) in Dreamweaver and have centered the content which stays centered as you widen the browser window. 
    I tested the site with Safari, Firefox, Chrome and Opera, and Safari is the only one that has a problem -
    if you navigate from the "shop" or "links" pages to any of the other pages, the content jumps to the left and right about a 1/2 inch.  
    the "shop" and "links" pages are longer than the others, but that shouldn't cause the pages to jump horizontally...
    With the other browsers the content stays perfectly centered -  ???
    I know I set up the content exactly the same in dreamweaver so there's no coding issues there...
    Thanks!
    Mark

    Your site is perfectly centered for all links and complete navigation from my end.
    Tested using Safari Version 5.0.5 (6533.21.1)
    EE

  • MenuBar skin change problem

    I am trying to skin an mx:Menubar in a FLEX project and have encountered a strange problem. I have given the component an FXG background, but I would like the background to change on mouse over and mouse down events. To achieve this I I have a stylesheet linked to custom MenuBarSkin.mxml skins.
    For some reason when the mouse is over the component the background doesn't change. However if I move the mouse over the component a second or third time it works. The same thing happens during mouse down events. If I click on the component just once the background remains the same. If I click again it works.
    Main.mxml (spark Application component):
    <fx:Style source="style.css"/>
    style.css:
    mx|MenuBar {
         backgroundSkin: ClassReference("MenuBarSkin_Normal");
         item-down-skin: ClassReference("MenuBarSkin_Down");
         item-over-skin: ClassReference("MenuBarSkin_Down");
    MenuBarSkin_Normal.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fxg="fxg.*" xmlns:mx="library://ns.adobe.com/flex/mx">
         <s:states>
              <s:State name="normal"/>
              <s:State name="disabled"/>
         </s:states>
         <fxg:FXG_Normal width="100%" height="100%"/>
    </s:Skin>
    MenuBarSkin_Down.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fxg="fxg.*" xmlns:mx="library://ns.adobe.com/flex/mx">
         <s:states>
              <s:State name="normal"/>
              <s:State name="disabled"/>
         </s:states>
         <fxg:FXG_Normal width="100%" height="100%"/>
    </s:Skin>
    From what I have read on the internet skinning the menubar component is a real pain in the *** and many people seem to have problems with it.
    Any help is greatly appreciated.
    Martin

    I think you are encountering an issue that has been fixed recently. http://javafx-jira.kenai.com/browse/RT-18859
    Please try with the latest promoted build and hopefully you should not see the odd behavior between menus and textfields.
    The second issue about the Menubar not moving when the browser window moves is a known issue and is being currently looked at - here is the bug if you would like to track it. http://javafx-jira.kenai.com/browse/RT-15970.
    thanks.

  • Spry Menubar in table -problem in IE

    I'm a newbie to web design and this software...having said
    that here is my issue:
    I inserted a horizontal Spry menu bar in a cell of a table.
    When viewed in Firefox, all is well. When viewed in IE, the Spry
    menubar is no longer in the cell but dropped well below and to the
    right of the entire table.
    Any idea where to correct this?

    I'm a newbie to web design and this software...having said
    that here is my issue:
    I inserted a horizontal Spry menu bar in a cell of a table.
    When viewed in Firefox, all is well. When viewed in IE, the Spry
    menubar is no longer in the cell but dropped well below and to the
    right of the entire table.
    Any idea where to correct this?

  • MenuBar submenu shows up way right in IE

    Please Please help. I am using the horizontal menu barwith 2
    submenu levels.
    I have searched the forum and can't find the fix that works.
    I loaded the 1.5 .js file, but it didn't fix it.
    You can see the site at
    adshapiro.com/test
    The CSS is located in the Spry folder....
    I am still looking for the fix on the forum but if you know
    how to fix this let me know

    Got my to work - found this in the samples
    add this to your styles
    <style type="text/css">
    <!--
    /* Center the text within all menu item links.
    ul.MenuBarHorizontal a {
    text-align: center;
    /* Set the the alignment back to left for any
    * menu item links that are in a sub menu.
    ul.MenuBarHorizontal ul a {
    text-align: left;
    -->
    </style>
    Worked for me

Maybe you are looking for

  • ITunes can't access shared library when Vista parental controls are on

    I started a thread back on March 1 2008, but it got archived before it could be answered, see: http://discussions.apple.com/thread.jspa?threadID=1420673&tstart=0 I'm using 64 bit Vista with iTunes version of 8.0.2.20, but I don't believe this issue h

  • Warning messages on one iWeb page

    Hello iWeb practitioners, Thanks to Wyodor et al who helped me with other queries about iWeb. I have published this same site to iweb (www.saivision.ie) and am getting this warning on my directory page. Am I being hacked? How do I get rid of this? Th

  • Color correcting using gray card & FCP6?

    with still photography, I can color correct rather quickly using a WhiBal card from http://www.rawworkflow.com/products/whibal/index.html . Is it possible do perform some rudimentary correction using this with FCP6 - until I add the other pieces of e

  • Select from database table

    Hi Experts, I have a database table having fields entity account period category value  filename A         1         001      ABC       100   abc.xls A          1        002      ABC        200  abc.xls B         2         001      DEF        300   s

  • Background image in Sharepoint 2013 is blurry

    Hi guys I need your help. Firstly I am a newbie at SharePoint 2013. I recently changed the theme of our site and change the look of our site. I selected the nature theme and changed the background image of the theme. Upon changing it, I noticed that