Sitecore Desktop “All Applications” fix.

May 3rd, 2011 by Andrew Leave a reply »

Here’s a quick and dirty fix for that annoying issue/bug where the menu appears below the screen where it’s not accessible..I’m yet to submit this suggestion to Sitecore myself – actually, I am not sure this is even an issue on 6.4 – I do know 6.3 and earlier have this problem, so here’s a quick fix that I discovered.

Sitecore Menu - Y-Axis Misalignment

=====================================================================

Go to Website\sitecore\shell\Controls\InternetExplorer.js

Around line 333, Change:

 


case "right":

x = ctl.offsetWidth - 3;

y = 0

break;

TO


case "right":

x = ctl.offsetWidth - 3;

y = -height + 33;

break;

 

You then get this:

Sitecore Menu - Good Y-Axis Alignment

 

Much Nicer :)

Advertisement

1 comment

  1. Nick says:

    Thanks for sharing this fix, it was just starting to bug me and now looks much better!

    Cheers,
    Nick

Leave a Reply