eltigre Posted April 8, 2013 Share Posted April 8, 2013 I have this version of chrome...now bookmarks are having a big space between them..In the previous version I didn't have this...Someone has and idea of a fix? or a workaround? Link to comment Share on other sites More sharing options...
Tweety.Abd Posted April 8, 2013 Share Posted April 8, 2013 I have this version of chrome...now bookmarks are having a big space between them..In the previous version I didn't have this...Someone has and idea of a fix? or a workaround?Could you please provide a screenshot of the issue?EDIT: Just thought I'd say this, few things have changed since the last Google Chrome update and things have gotten a tad bigger. I'm not sure if its relevant to your issue. I'd need a screenshot to confirm. Link to comment Share on other sites More sharing options...
eltigre Posted April 8, 2013 Author Share Posted April 8, 2013 added an attachement with issue... Link to comment Share on other sites More sharing options...
Lacius Posted April 8, 2013 Share Posted April 8, 2013 Chrome recently updated Chrome to have extra space in-between items all over the place in their browser. For example, the right-click menu looks very much like your screenshot of the bookmarks menu; you'll notice it's much taller with things more spaced apart. There's no workaround; it's just an aesthetic change Google made so it'd be more consistent with other Google web products.Edit: You can find more information and a way to disable it here: http://productforums.google.com/forum/#!topic/chrome/A0DJtvV4gTE Link to comment Share on other sites More sharing options...
eltigre Posted April 8, 2013 Author Share Posted April 8, 2013 tried that with "disable-new-menu-style" but it worked only once.. Link to comment Share on other sites More sharing options...
pinyuszka Posted April 8, 2013 Share Posted April 8, 2013 Best bookmarks for chrome:https://chrome.google.com/webstore/detail/neater-bookmarks/ofgjggbjanlhbgaemjbkiegeebmccifi Link to comment Share on other sites More sharing options...
Tweety.Abd Posted April 8, 2013 Share Posted April 8, 2013 added an attachement with issue...Its the new UI change, I'm afraid there's nothing we can do at the moment. You could try the band-aid fix suggested by Lacius. I don't like the change either, but I'm getting used it it.. Link to comment Share on other sites More sharing options...
chlorophyll Posted April 8, 2013 Share Posted April 8, 2013 working fine here .i tried the trick disble new menu style.trick working fine for me. Link to comment Share on other sites More sharing options...
blueriver649 Posted April 9, 2013 Share Posted April 9, 2013 Hi Eltigre,Add a space before "disable-new-menu-style" , remember to click Ok after Link to comment Share on other sites More sharing options...
maia Posted April 9, 2013 Share Posted April 9, 2013 1. Right-click on your shortcut to Chrome2. Click Properties (at the bottom)3. Go to Shortcut tab4. Edit Target so that is has a space and --disable-new-menu-style at the end of it5. Click ApplyProblem solved!... :lol: Link to comment Share on other sites More sharing options...
eltigre Posted April 9, 2013 Author Share Posted April 9, 2013 strange...i've done again the procedure...and now (in the moment of posting) it's workingThank you Link to comment Share on other sites More sharing options...
bob92132 Posted April 9, 2013 Share Posted April 9, 2013 1. Right-click on your shortcut to Chrome 2. Click Properties (at the bottom) 3. Go to Shortcut tab 4. Edit Target so that is has a space and --disable-new-menu-style at the end of it 5. Click ApplyGoogle requiring its options to be set via command-line flags is extremely limiting. The above fix is just going to fix it if you launch Chrome from your start menu. But what if you launch Chrome from clicking on a .URL link or from typing a http:// address into the run box? Then it will launch Chrome from the registry path without that command line flag. To make "--disable-new-menu-style" always work no matter how you launch Chrome - you will have to search your registry for all instances of chrome.exe - and add the command line flag to all the associations (such as HKEY_CLASSES_ROOT\http\shell\open\command). Link to comment Share on other sites More sharing options...
bob92132 Posted April 15, 2013 Share Posted April 15, 2013 Found a good solution to compile an EXE with the flags already in there.1. Rename chrome.exe to chrome_orig.exe2. Make a .vbs script as follows in ScryptCryptor and compile to chrome.exeSet WshShell = CreateObject("WScript.Shell")If WScript.Arguments.Count = 0 ThenWshShell.Run """chrome_orig.exe"" --user-data-dir=""D:\PortableApps\Chrome\Profile"" --disable-new-menu-style"ElseWshShell.Run """chrome_orig.exe"" --user-data-dir=""D:\PortableApps\Chrome\Profile"" --disable-new-menu-style """ & WScript.Arguments(0) & """"End IfSet WshShell = Nothing(NOTE: The "--user-data-dir" makes chrome portable - it specifies to use a specific profile dir instead of defaulting to %LOCALAPPDATA%\Google\Chrome\User Data\. If you want the default profile location then you can remove this arg.) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.