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

Similar Messages

  • I have an iPhone 4 on IOS5. I signed up for itunes match. After everything uploaded to the cloud, my songs are messed up. I'll select a song and the title will show with the right art work but a different song will start playing.  Anyone have a solution?

    I have an iPhone 4 on IOS5. I signed up for itunes match. After everything uploaded to the cloud, my songs are messed up. I'll select a song and the title will show with the right art work but a different song will start playing.  Some songs won't play at all even though they do appear in the itunes store. The artwork almost always shows u blank until you turn it to landscape then it will appear. Anyone know what's going on?

    I have found that scrolling through the album list (past albums without art) triggers the progress wheel next to the wifi symbol. You can scroll quickly through the whole collection and then wait! Artwork will appear gradually...
    However, repeat visits to the Music App might initially show no artwork again, but it might spontaneously appear more quickly this time. The bad news is that the whole Music App is now sluggish as ****...

  • My iphone 4S is constantly on 3g service instead of 4g ...how do i get it to stay on 4g service?  My other phone is showing 4g service right next to each other so i know i am in a 4g service area.

    My iphone 4S is constantly on 3g service instead of 4g ...how do i get it to stay on 4g service?  My other phone is showing 4g service right next to each other so i know i am in a 4g service area.

    THe 4s is 3G device, it can't get 4g service.

  • How to format paragraph string to show content left, Right or middle of pdf document using iTextsharp ' vb

    Dear All
    how to format paragraph string to show content left, Right or middle of pdf document using iTextsharp in visual basic and absolute position on the document.
    Thanks

     Here is one more example that i have modified the GetCell function so that you can use it for adding all the cells to the document.  It takes several arguments to specify everything you need to create each cell.  It now lets
    you specify the Text, the Text Alignment, the Text Font and color, weather the cell shows the Border, the BackColor of the cell, and the Padding values for the Left, Right, Top, and Bottom.
     If you study the code you should be able to figure out how it works.  From here you can figure out the rest of what you need to do and how to use the
    GetCell function.
     With one quick google search for "iTextSharp Documentation" the first link to pop up was this link.
    iTextSharp Documentation
    Imports System.IO
    Imports Its = iTextSharp.text
    Public Class Form1
    Private dt As New DataTable
    Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    dt.Dispose()
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    dt.Columns.Add("Name")
    dt.Columns.Add("Age")
    dt.Columns.Add("Birth Date")
    dt.Rows.Add(New Object() {"Johnny", "23", Now.AddYears(-23).ToString})
    dt.Rows.Add(New Object() {"Frank", "41", Now.AddYears(-41).ToString})
    dt.Rows.Add(New Object() {"Rex", "33", Now.AddYears(-33).ToString})
    dt.Rows.Add(New Object() {"Kim", "26", Now.AddYears(-26).ToString})
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim MyPdfFilePath As String = "C:\TestFolder\MyPdf.pdf"
    Dim pSize As New Its.Rectangle(Its.PageSize.A4)
    Dim PdfDoc As Its.Document = New Its.Document(pSize, 10, 10, 10, 10)
    Dim PdfImage As New Its.Jpeg(New Uri("C:\TestFolder\MyLogo.jpg"))
    PdfImage.Alignment = Its.Jpeg.ALIGN_CENTER
    Dim pTable As New Its.pdf.PdfPTable(1)
    pTable.AddCell(getCell("Name : " & TextBox1.Text, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 15, Its.BaseColor.BLACK), False, Its.BaseColor.WHITE, 10, 0, 0, 0))
    pTable.AddCell(getCell("Policy : " & TextBox2.Text, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 20, Its.BaseColor.RED), False, Its.BaseColor.WHITE, 10, 20, 0, 0))
    Dim cTable As New Its.pdf.PdfPTable(dt.Columns.Count)
    For Each col As DataColumn In dt.Columns
    cTable.AddCell(getCell(col.ColumnName, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 12, Its.BaseColor.WHITE), True, Its.BaseColor.BLUE, 3, 5, 0, 0))
    Next
    Dim tblfont As Its.Font = Its.FontFactory.GetFont("Arial", 10, Its.BaseColor.BLACK)
    For Each row As DataRow In dt.Rows
    cTable.AddCell(getCell(row.Field(Of String)("Name"), Its.pdf.PdfPCell.ALIGN_LEFT, tblfont, True, Its.BaseColor.WHITE, 3, 4, 3, 0))
    cTable.AddCell(getCell(row.Field(Of String)("Age"), Its.pdf.PdfPCell.ALIGN_CENTER, tblfont, True, Its.BaseColor.WHITE, 3, 4, 0, 0))
    cTable.AddCell(getCell(row.Field(Of String)("Birth Date"), Its.pdf.PdfPCell.ALIGN_RIGHT, tblfont, True, Its.BaseColor.WHITE, 3, 4, 0, 3))
    Next
    Using fs As New FileStream(MyPdfFilePath, FileMode.Create, FileAccess.Write, FileShare.None)
    Using pdfWrite As Its.pdf.PdfWriter = Its.pdf.PdfWriter.GetInstance(PdfDoc, fs)
    PdfDoc.Open()
    PdfDoc.Add(PdfImage)
    PdfDoc.Add(pTable)
    PdfDoc.Add(cTable)
    PdfDoc.Close()
    End Using
    End Using
    PdfDoc.Dispose()
    End Sub
    ''' <summary>Creates a new cell for the table.</summary>
    ''' <param name="text">The text string for the cell.</param>
    ''' <param name="alignment">Alighnment for the text string.</param>
    ''' <param name="textfont">The font used for the text string.</param>
    ''' <param name="border">True to show the cell border. False to hide the cell border.</param>
    ''' <param name="backcolor">The background color of the cell.</param>
    ''' <param name="padtop">The amount of padding on the top of the text string.</param>
    ''' <param name="padbottom">The amount of padding on the bottom of the text string.</param>
    ''' <param name="padleft">The amount of padding on the left of the text string.</param>
    ''' <param name="padright">The amount of padding on the right of the text string.</param>
    Public Function getCell(ByVal text As String, ByVal alignment As Integer, ByVal textfont As Its.Font, ByVal border As Boolean, ByVal backcolor As Its.BaseColor, ByVal padtop As Single, ByVal padbottom As Single, ByVal padleft As Single, ByVal padright As Single) As Its.pdf.PdfPCell
    Dim cell As New Its.pdf.PdfPCell(New Its.Phrase(text, textfont))
    cell.BackgroundColor = backcolor
    cell.PaddingLeft = padleft
    cell.PaddingRight = padright
    cell.PaddingTop = padtop
    cell.PaddingBottom = padbottom
    cell.HorizontalAlignment = alignment
    If Not border Then cell.Border = Its.pdf.PdfPCell.NO_BORDER
    Return cell
    End Function
    End Class
    If you say it can`t be done then i`ll try it

  • FF 4.01 dont show all pages right

    My Firefox 4.01 stopped to show some pages right. For example it don`t show css styles in wikipedia-pages. It don`t open GMAIL exept in simple html-mode.
    SHOW/STYLES/DEFAULT STYLE is set up, so thats not the answer.
    I don`t know if it has something to do but all changed after I installed adobe design premium 5.5.

    Thanks, but I removed ff and loaded it again, removing it first from my pc. It worked too. If I left my profile it didn`t. So I don`t know if Your suggestion had worked.
    Thanks anyhow.
    matti

  • Movie does't show on the right window!

    Movie doesn't show on the right window once the movie is ready. Exporting will only make a black video.
    Need help!!

    More info...I can now get a backup to show on my macbook that shows at least the username of the desired target, but it shows 0.0kb even though I know there are months of backup that I'm targeting.
    Why aren't all the files there?

  • How do I find a file to reconnect my missing file to when it doesn't show on the right hand side?

    How do I reconnect a missing file when it doesn't show on the right hand side?

    What do you mean by "missing file", or "reconnect", or "right side"?
    You haven't given us enough information to understand what you're referring to, much less to help you.

  • Firefox no longer shows on my full screen. When I rollover the icon on the taskbar, it shows the way it is suipposed to be but it does not ever show full size.

    Firefox was working fine yesterday. Now it's not coming up at all on my full screen but when I rollover the icon on the taskbar a mini screen comes up that shows the way it should be but it doesn't come up on the fuill screen. I did a system restore but it didn't help.
    Fr. Martel

    Try:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Itunes screen shows up way too large

    My Itunes screen is showing up way too big. When I click on to go to it, my whole screen goes black, then it shows up too big and distorted.
    Is there anything I can do to fix this on my own?
    Thank you.

    When the large image is on your screen, try clicking on the green dot (top left of window).

  • 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.

  • Spry submenu appears way right in IE on horizontal menu

    Hi,
    I have tried all the fixes in the other posts but none work.
    My submenus are appearing clear over to the right of the page on my
    horizontal menu. This has to be an z index problem. The site is
    www.oregontrailcenter.org.
    Mouse over the first item The Trail Center then the bottom item
    "Support Opportunities". The menu appears almost off the right side
    of the page. Thanks for any help you can give me.
    My code is below:

    I figured this one out on my own. No worries!

  • 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 ==--

  • 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

  • Airport icon in OSX menubar is showing the connected time

    how do i disable this?
    it didn't show when i was connected using other wifi access points.

    thanks... and the solution is
    If you click on the menubar icon, and hover over the network you're connected to, a submenu will pop up, one item of which is the "show time connected" option. It's checked, so just pick it again and the time will disappear
    ---------

  • Color Laserjet 3600 PQ print quality test pink shows faded on right side

    All the color print outs have this somewhat faded color on the right side.
    When I ran the PQ test under troubleshooting it shows on the pink page missing color pink towards the right side.
    fades into white / blank. Already changed the toner and still happens. I calibrated that printer twice and still occurs.
    what else can i do to fix this?

    Hi ProspeorusCE,
    The product you have is a commercial printer. I suggest posting in the forum for HP Business Support for a better chance at finding a solution.
    Here is the link to the Commercial Laserjet board:
    http://h30499.www3.hp.com/t5/Printers-LaserJet/bd-p/bsc-413
    If I have helped in any way, just click the Kudos star on the left. Also, if your issue has been resolved, don't forget to select Accept as Solution

Maybe you are looking for

  • BMP is not displayed in Oracle Forms 10g

    Hi, I am trying to display logo on the custom logon form. I have created an image item in the block. The following code is written in WNFI DECLARE Master_image VARCHAR2(80) := 'SS.bmp'; BEGIN set_window_property(forms_mdi_window, window_state, maximi

  • Is it just me, or is the pricing of some Apps a bit strange.

    I'm going to use, Star Wars-Knights Of The Old Republic, as an example, just because it seems to stick out like a sore thumb to me. When i first noticed this game. it was something like £11.99, then i noticed that it sometimes came down to £6.99, the

  • BI Content transfer to Flatfile Source System

    Hi How can we transfer standard business content for source system file. We are not able to view some standard contents ( both BW 3.x or BI 7.0) eg. 0CONSUMER_ATTR to activate from the business content. The same is available for R3 Source System but

  • HEADER MAPPING in RECEIVER AGREEMENT use.?

    Hi folks,    Can anyone explain me about the HEADER MAPPING in RECEIVER AGREEMENT. In which cases we go for this header mapping. Give me an example if possible or any links regarding this. Thanks in advance Srinivas Reddy.

  • Balance sheet a/c - Planning

    Hello Gurus     My client requirement is they want to maintain the planning in balance sheet account also, so I have maintained the plan values  in T code 7KE3 if I execute the std report of profit center plan/actual/variance , here I can able to see