IE6 - possible to show submenu without background-color?

Hi you all,
problem: I want the submenu to show just text, without background. This works in all browsers except IE6. Is it possible to take this default(?) background off?
Thank you...

Hallo Hans,
it does work now, thank´s a lot!
Liebe Grüße aus Mannheim,
Alex
Am 06.09.2010 um 10:52 schrieb hans-g.:
Gruess Dich Alex,
>
I take the liberty of specify Nancy O.'s hint: +"Look for IE 
comments in your Spry CSS file.  Near the bottom."+ She thinks about 
this;
>
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;/
>
With this correction, I have suspended the white color, so that you 
can use another of course.
>
Hans-G.
>

Similar Messages

  • Is it possible set programm menu module background color?

    HY,
    is it possible set programm menu module background color?
    thanks

    Hy,
    thanks for your answer, but, if i understand well,
    it's for individual menus and submenus (lower-level menus, displayed by default as vertical Lists of menu items) menu items
    I am speaking about a main menu (the top-level menu, displayed by default as a horizontal strip)
    And, when create a VA in menu module isn't possibile set color but only font.
    I believe it need create VA in set_visual.....
    Thanks again
    Rosario

  • Spry menu without background color

    Hi
    I have tried to remove the background color in the CSS file.
    But if I remove it, it dosent work correct.
    I have removed:
    background-color: #3a90cb; (in ul.MenuBarHorizontal a)
    and
    background: #FFF; (ul.MenuBarHorizontal li.MenuBarItemIE)
    I want to remove the background color to be able to see the
    design behind (with gradient) instead of one color
    Hope you can help me
    Best Regards
    Kim

    1: The drop down menu/submenu now has a white background, and
    cant figure out where to change that
    2: Between submenu 1 and submenu 2 on each headmenu, the word
    disable are showing up.

  • Exporting swf without background color

    I am exporting from CS5 to a swf - which all works fine except when I load the swf as an external file into Flash it shows a grey background during pre-loading, does anyone know how to make it transparent or change the colour without losing the interactivity?

    AFAIK you can´t remove or bypass that default preload.... when we were designing eDocker2 we faced that problem too. We worked-around it by creating our own non-transparent preloader which was placed on the top of loaded SWF until loaded was finished....
    See example:
    http://www.edocker.com/_demo/edocker-online-demo/index.html

  • Is it possible to show Manual edits using color indicator in IP.

    Hi Experts!!
    Can you please let me know is it possible --
    To show Manual edits using colour indicator in Integrated planning reporting.
    Thanks in Advance,
    Sravani

    It is possible in Analyzer.
    In the workbook, place the cursor in manual input cell, goto Format -> Style -> SAPBeXInputData -> Modify, change the pattern color. Save the workbook.
    Let us know if you are using analyzer or WAD.

  • Is it possible to change TreeView's background color, not node color?

    In advance, Thanks!!
    Actually, I've made my own treeview in my project. and  I've changed my treeview node color as i want
    I wonder whether or not to change treeview's background color, not node color in below class.
    // in ~.fr
    Class
      kMyTreeViewWidgetBoss,
      kTreeViewWidgetBoss,
         IID_ICONTROLVIEW,                    kMyTreeViewCtrlViewImpl,  
         IID_ITREEVIEWWIDGETMGR,      kMyTreeViewListBoxWidgetMgrImpl,
         IID_ITREEVIEWHIERARCHYADAPTER,  kMyTreeViewListBoxHierarchyAdapterImpl,
         IID_ISTRINGLISTDATA,                          kStringListDataImpl,
         IID_IOBSERVER,                                  kMyTreeViewCtrlBoxObserverImpl,
    type MainTreeViewListBox(kViewRsrcType)       : TreeViewWidget    (ClassID = kMyTreeViewWidgetBoss)  {};
    MainTreeViewListBox   //Tree view
               kMyTreeViewWithTextListWidgetID, kPMRsrcID_None, // WidgetId, RsrcId
               kBindAll,           // Frame binding
               Frame(-1, 26, 300, 276)  // Frame
               kTrue, kTrue,         // Visible, Enabled
               kTrue,       // EraseBeforeDraw
               kInterfacePaletteFill,   // InterfaceColor
               kHideRootNode,// | kDrawEndLine, // Options. Display root node
               kFalse,  // Use H Scroll bar
               kTrue,  // Use V scroll bar
               20,   // fVScrollButtonIncrement
               20,   // fVThumbScrollIncrement
               0,   // fHScrollButtonIncrement
               0,   // fHThumbScrollIncrement
               2,   // Items selectable, 0 = No Selection, 1 = Single Selection, 2 = Multiple Selection
               kFalse,  // Allow children from multiple parents to be selected
               kTrue,  // Allow discontiguous selection
                //The tree view is dynamically created. 
    class MyTreeViewCtrlView : public PanelView
    virtual void   Draw(IViewPort* viewPort, SysRgn updateRgn);
    void MyTreeViewCtrlView::Draw( IViewPort*  viewPort, SysRgn  updateRgn )
       AGMGraphicsContext gc(viewPort, this, updateRgn);
      InterfacePtr<IGraphicsPort>  gPort(gc.GetViewPort(), UseDefaultIID()); // IID_IGRAPHICSPORT);
      ASSERT(gPort);
      gPort->gsave();
      PMRect frameOut      = GetFrame();
      frameOut.MoveTo(0, 0);
      COLORREF crBackColor    = RGB( 255, 0, 0 );
      gPort->setrgbcolor( GetRGBtoReal( GetRValue(crBackColor) ), GetRGBtoReal( GetGValue(crBackColor) ), GetRGBtoReal( GetBValue (crBackColor) ));
    gPort->rectpath(frameOut);
    gPort->fill();
    gPort->grestore();
    PanelView::Draw( viewPort, updateRgn );
    In above case, there are errors in kMyTreeViewCtrlViewImple when Indesign is launching.
    // Error Assert
    XferObject- ReadWrite for impl kMyTreeViewCtrlViewImpl of iid IID_ICONTROLVIEW in class kMyTreeViewWidgetBoss read wrong amount in plugin kMyTreeViewWidgetBoss
    but, in kMyTreeViewWidgetBoss ClassDescriptionTable, when remove this( IID_ICONTROLVIEW, kMyTreeViewCtrlViewImpl), that's ok. but I can't change background color. just interfacepalettefill color
    Please help me!!

    Here's a sample!
    That's all.
    #define GetRGBtoReal( X )   (double) X / (double) 255.f
    COLORREF crBackColor    = RGB( 255, 0, 0 );
    gPort->setrgbcolor( GetRGBtoReal( GetRValue(crBackColor) ), GetRGBtoReal( GetGValue(crBackColor) ), GetRGBtoReal( GetBValue(crBackColor) ));

  • Is it possible to change the CS4 background color?

    I am doing a job which requires lots of screengrabs of images and settings against the usual dark gray CS4 background. The problem is that the guidelines you adjust to form a rectangle round the image you're grabbing are dark grayish too and it's difficult to see it against the gray background. Is there any way to temporarily change the dark gray CS4 window background color? I'm running under Vista and changing the window and application background colors in Vista makes no difference to the background color in CS4 which sticks at dark gray.
    Thanks.
    David

    Thanks.
    Geoff - Changing the color in Full Screen with Menus has no effect. The dark gray is still there after a close CS4 and open.
    Thanks for the alternative approach. The Faststone screengrab process is quicker. It's just a nuisance you can't change the color or thickness of the grabbing lines.
    Rob - which background? When I right click on the CS4 background - the working area with nothing in it - I get no context menu. I get nothing in fact.
    I am surprised that the Prefernces/Interface changes don't work but they don't seem to.
    I have done abou 160 screen grabs and probably have another 3-400 to do.
    David

  • Is ist possible to show only one accentuation color in preview?

    Dear All,
    I often work with preview to read scientific text using preview. I often do accentuations in different colors to carve out argumentation, facts etc. But the accentuations of all colors are shown on the left bar (and all my additional notes. It would be very helpfull for me only to the one of the five colors available to create are clear view of arguments, facts, pro vs. contra etc.
    Is there any function available?
    Best regards
    Torsten

    SUBSTR(column1, INSTR(column1,'.',1,2)+1 )The INSTR finds the position of the second occurrence of a '.'
    The SUBSTR then takes from that position + 1 and the rest of the string.

  • Importing graphics without background color

    hi, i was trying to import a symbol to DSC's Image Navigator; but it seems that the whiteground is always imported as well ; as a result the symbol inserted into the front panel has always the "white" background ; pls help/advise

    One way to do it is to create a 'Transparent GIF' this is the technique that I find most robust.
    I usually use an old version of Paintshop Pro for this although there are thousands of other tools.

  • WPF: how to toggle background color in xaml by using F1 key?

    We want to show users different background colors when clicking F1 key.
    Colors are defined as following:
    <LinearGradientBrush x:Key="StatusBackround1" EndPoint="0.5,1" StartPoint="0.5,0">
    <GradientStop Color="#FF88AED0" Offset="0"/>
    <GradientStop Color="#FF5286B2" Offset="1"/>
    </LinearGradientBrush>
    <LinearGradientBrush x:Key="StatusBackground2"
    EndPoint="0.5,1" StartPoint="0.5,0">
    <GradientStop Color="#FFCCDDED" Offset="0"/>
    <GradientStop Color="#FFB7D5F2" Offset="1"/>
    </LinearGradientBrush>
    we know how to implement it in code behind.
    protected override void OnPreviewKeyDown( KeyEventArgs e )
    if ( e.Key == Key.F3 )
    ToggleTabStyle();
    e.Handled = true;
    static bool showTab2 = false;
    private void ToggleTabStyle()
    LinearGradientBrush statusBackground;
    showTab2 = !showTab2 ;
    if (showTab2 )
    statusBackground = Application.Current.Resources["StatusBackground2"] as LinearGradientBrush;
    else
    statusBackground = Application.Current.Resources["StatusBackround1"] as LinearGradientBrush;
    this.rectagleStatus.Fill = statusBackground;
    How easy to implement in xaml? Thx!
    JaneC

    >>How easy to implement in xaml?
    Not easy, and probably not possible at all since there is no way to override the OnPreviewKeyDown method in XAML. I think you should stick with the code-behind approach or use a command that you bind to a KeyBinding as suggested by Andy. But you
    still need to define the command programmatically.
    Remember that XAML is primarily a markup language used to define the layout. An application's behaviour should till be defined programmatically. Don' try to move behaviours to the XAML markup just for the sake of it.
    Please remember to mark helpful posts as answer to close your threads and please start a new thread if you have a new question.

  • Change NativeWindow background color

    Hi, I'm developing ad Air application with Flash. This
    application creates other windows and plays video in fullscreen
    mode. Created windows have white background so in fullscreen mode i
    have white strips :-(
    Do you know if is possible to change native window background
    color?
    I can't create a transparent window because I load PDF
    documents with an HTMLLoader object in the same window.
    Thanks
    Francesca
    Sorry for my terrible english :-/

    I'm creating windows with NativeWindowSystemChrome.NONE crome
    and transparent = false and I'm obtaining windows with white
    background.
    Do you mean to create a transparent window and a sprite to
    add to the stage to use it as "stage background"?
    I can't because I must set transparent value to false bacause
    I have to load a pdf into an htmlLoader.
    Entering in Fullscreen mode with
    FLVPlayback.enterFullScreenDisplayState I have the correct black
    background but I must set FLVPlayback.fullscreenTakeOver to false,
    set stage.fullScreenRect and change stage.displayState because I
    have to show some buttons over video player in fullscreen mode.
    Sorry for my terrible english

  • Sequence Background Color Change

    I kind of doubt this is possible, but you never know. Is it possible to change the gray background color of the timeline Sequence?
    We need to make it extremely obvious what sequence our editors are using. We have several Sequences with specific codecs that are used for different purposes and we need to make it obvious beyond a doubt what Sequence they are working on. Unfortunately we can not use Compressor to make this change in our workflow. We are trying to make this workflow as simple as possible, and this is one consideration we are looking into.
    Thanks in advance for your ideas and help.

    I'm guessing this is an educational institution? If not, I agree with the above statements about not hiring editors who need different colored timelines. But if you ARE in the business of teaching, then consider this as part of the lesson. You can't teach someone how to be an editor without teaching them the things that editors have to know.
    But the real answer of your question is, no. You can't have FCP automatically set your timeline to a certain color, even by using the label feature, on the bias of the sequence settings. Even if you use the label feature, you would still have to manually label each and every sequence that was created.
    Teach your editors well. Their producer's **** will slowly go by.

  • Spry MenuBar Test in IE (background color check)

    This is a part two to a previous post. I have a Spry menu bar in my clients app and right now my issue is that the menu bar when you rollover over to view the drop down (in this case a drop up since the menu is above the main menu) should display a menu with a background color of #887242 which in Firefox and Safari it does, but in IE (any version) it instead inherits the color of the main nav bar which is #483828. Originally the background was all white in IE and then I went to the CSS and found this:
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inline;
        f\loat: left;
        background-color: #FFF;
    So I changed #FFF to #483828 and that took care of the menu bar but applied the color to both the menu bar and drop down. I want the drop down to be a different background color as mentioned previously so after a little looking around I'm trying this:
    @media screen, projection
        ul.MenuBarHorizontal ul
        display: inline;
        f\loat: left;
        background-color: #887242;
    underneath that. Since I'm on Mac, I can't eee the drop down on BrowserLab or BrowserShots so can anyone on a PC please check briefly this URL for me to tell me if the drop down is showing the proper background color and if not, is there a fix?
    http://www.designmg.com/new//index3.html

    OK, I tried it with my PC on both Firefox and IE8. With Firefox the menu and submenu text is the orange color but changes to white on hover. Also on hover the drop up submenu appears and the background is the beige color. With IE8 the menu text is italic (somewhat slanted), the text turns white on hover but the background does not appear. Instead, a beige vertical line appears to the right of the drop up submenu (maybe 5 px wide).
    Hope that helps. Sorry I can't offer any suggestions - I'm pretty new at this and I'm working my own issues out with IE. Good luck and Happy New Year
    RM

  • Menu background color when mouse over

    Dear all,
    I tried to make menu without background color. I already set all fillers transparent. Now I have 1 menu box transparent, but others not.
    See screenshots
    Unfortunately I did not find solution.
    Can anyone help? Many thanks & BR
    Catharina

    cool! many thanks, got it. ;-)

  • How can I programica​lly change the background color of one VI using another VI?

    Is it possible to change the text background color of an indicator on the front panel of one VI from a different VI? 
    Solved!
    Go to Solution.

    Hi Coutts,
    Good Morning and I hope your well today.
    Thanks for the kudos and marked answer.
    You can alter the controls/indicators fonts etc.
    You need to get a reference to Controls[] which includes all controls and indicators on a VI. 
    Then I have created an array of their Labels.Text - so we know which reference is which.
    With a single reference you can then access properties such as label.font where you can alter if the label is
    Bold, Unerline,size and colour...
    Notice I have selected to Bold and Underline the label of the controls and indicators - and they appear bold and underlined. 
    I have re-attached the modified code.
    Hope it finds you well, 
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!
    Attachments:
    setter.vi ‏22 KB
    other VI.vi ‏5 KB

Maybe you are looking for