Menu arrow doesn't show in IE6

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
2/12/2007 12:46:34 PM
Gravatar
Total Posts 80

Menu arrow doesn't show in IE6

If a menu item contains submenus an arrow should appear to the right of the menu item name. IE6 doesn't show the arrow.
2/12/2007 4:31:19 PM
Gravatar
Total Posts 18439

Re: Menu arrow doesn't show in IE6

All of that is controlled from the css files if you want to look into this issue.

style.css is the main file in the skin but things specific for IE6 can be specified in the IESpecific.css and things for IE 7 can specified in the IE7Specific.css

Maybe something is already in one of those IE specific files that is making it not show the image.

I don't have time to fool with that myself for a little while.

Joe
3/19/2007 9:57:28 AM
Gravatar
Total Posts 11

Re: Menu arrow doesn't show in IE6

This has been driving me nuts! I must get into the habit of checking the forums - I thought it was just me but I also notice that the menu on this site is broken in IE6

Thus far I can get the arrows to appear by editing the line (around 200) in style.css which reads 
li.AspNet-Menu-WithChildren > a

remove the > so it reads
li.AspNet-Menu-WithChildren a

This apears to work until I looked carefully - it is putting arrows on all sub menu items.

I want to upgrade a site with the new mojo version but cannot until i can resolve this issue. I will keep chipping away at it but my css is not very good.
3/19/2007 1:47:25 PM
Gravatar
Total Posts 11

Re: Menu arrow doesn't show in IE6

Add this to IESpecifics.css and the arrow is then OK :) (you will need to use your own colours!)


li.AspNet-Menu-WithChildren a
{background-color: #26611F; background-image: url('arrowRight.gif');
    background-repeat:no-repeat; background-position: right bottom; color:#FFFFFF }
   
li.AspNet-Menu-SelectedWithChildren a
{background-color: #26611F ; background-image: url('arrowRight.gif');
    background-repeat:no-repeat; background-position: right bottom; color:#FFFFFF }
   
li.AspNet-Menu-WithChildren a:hover
{background-color: #009900 ; background-image: url('arrowRight.gif');
    background-repeat:no-repeat; background-position: right bottom; color:#FFFFFF }

li.AspNet-Menu-ChildSelected a
{background-color: #26611F ; background-image: url('arrowRight.gif');
    background-repeat:no-repeat; background-position: right bottom; color:#FFFFFF }

.AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float: left !important;
}

li.AspNet-Menu-Leaf a { background-image: none; }
li.AspNet-Menu-Leaf a:hover { background-image: none; }
li.AspNet-Menu-SelectedLeaf a { background-image: none; }
You must sign in to post in the forums. This thread is closed to new posts.