How to display newly added bookmarks on top of the list in Unsorted Bookmarks? (not in Bookmark Manager window)

I have hundreds of bookmarks.The Bookmarks Toolbar is filled.I made a shortcut of the "Unsorted Bookmarks" folder and placed it in on the Bookmarks Toolbar.Whenever I click the star to add a bookmark, it adds one to the real Unsorted Bookmarks, which add a copy of that bookmarks into the folder named Unsorted Bookmarks which is on the Bookmarks Toolbar.
When I click on the Unsorted Bookmarks(both original and shortcut folder), it displays the oldest bookmarks on top, which honestly makes no sense to me because the user has to scroll a lot to get to the newest bookmarks, which are more likely to be used than the old ones that have been sitting there for a long time.Is there any way to sort the bookmarks by a reversed chronological order and display newly added ones on top of the list ?
I am aware that you can do this in Bookmarks Manager window(called Library?) but it requires too many steps and it's time consuming and not easy to use in general.I'd rather click on the folder on Bookmarks Toolbar to open my bookmarks, but they show old ones on top.
Thanks !
hashtag - firstworldproblem

Hmm, you might need to create a "smart folder" for this. You may have noticed some blue folders in your bookmarks such as "Most Visited" and "Recently Bookmarked". These show the results of a query run against your bookmarks or history (Places database) and you can create your own queries with a little elbow grease.
So one possibility might be to create a custom "Recently Bookmarked" folder that extends beyond the current limit of 10. I gave the steps for creating a 20-item version of this folder in this post: https://support.mozilla.org/questions/934205#answer-358492
That example searched ''all'' bookmarks and not specifically Unsorted Bookmarks. To create a new "smart folder" for Unsorted Bookmarks, you could try this:
(1) Select and copy the following places search query:
place:queryType=1&folder=UNFILED_BOOKMARKS&folder=UNFILED_BOOKMARKS&sort=12&excludeQueries=1
''(For definitions of those parameters and many more, see: [https://developer.mozilla.org/docs/Places_query_URIs])''
(2) Expand the Bookmarks Menu (e.g., from the toolbar button or menu bar, or in the sidebar or Library dialog), right-click the first bookmark, and choose New Bookmark
(3) In the Location field, paste the query (Ctrl+v or right-click > Paste)
(4) In the Name, enter something like Unsorted Desc (for descending order) or the name of your choice. Then click Add.
(5) Drag the new bookmark to the desired location on the Bookmarks Toolbar. If you are using the menu, click and drag and hover over Bookmarks Toolbar until it expands. Once it is on the toolbar, you can easily move it again to the desired location. During the first move, Firefox will recognize it as a query-type bookmark so that is why I have you create it on the menu and move it to the toolbar.

Similar Messages

  • Is there a way to keep unread email at the top of the list?

    Is there a way to keep unread email at the top of the list?  I do not delet email after it's read so I end up with many 'read' email between the un-read email.  Is there a way to cluster the un-read email at the top of the list?
    Thank you,
    Patrick

    Just make a smart mailbox (unread mail) and leave it in the sidebar.

  • How do you organize bookmarks so all the folders are listed at the top of the list?

    When I click on bookmarks, the folders are scattered among the uncategorized bookmarks that I have added. This makes it harder to sort through. I want all of the folders to stay in alphabetical order at the top of the list, and the individual websites to fall in below this. it is so frustrating to look for bookmarks all mixed together that I just go to internet explorer, where the system seems more logical. I can't find an easy way to set the format I want as a default setting with the folders at the top below the uncategorized items.

    See this article.
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically

  • When I sort by date added in Column View in Finder, how can I make the most recent files appear at the top of the list?(Mavericks)

    In 10.8, when I sorted Finder by date added or date created in column view, the most recent files would appear at the top of the list. Currently, this happens as it should in every single view mode EXCEPT column view (which is pretty much the only view I ever use). Currently, I have a folder with over 2000 files in it that date back to 2011, so now I have to scroll for like ten minutes just te get to files that were most recently added. Who in their right mind would want to sort by last modified with the oldest result listed FIRST? Ridiculous. I can't figure this out. Any help?

    Thanks for the reply leroydouglas! Unfurtunately this doesn't cause the column to be ordered correctly either. After selecting this option, the files seem to be ordered by label, and the most recently added file is somewhere in the middle of the list. I'd like it to be at the top, and have other files/folders descend in retrochronological order by their add date.
    Any other input from the community would be greatly appreciated, even if it's just confirming that this is/is not expected behavior. I'd be super bummed to find out that this IS expected behavior, as it's really counterintuitive and extremely inconvenient.
    Thanks again!

  • In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page (I turn Shockwave Flash on only to see videos - having it off prevents screen freezing - and so I want it stay at the top of the list)?

    In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page? I turn Shockwave Flash on only when I want to watch a video and then turn it off to prevent screen freezing, and so I want it to PUT it and KEEP it at the top of the list.

    Hit Ctrl+0 (That's a zero, by the way). I'm not sure if it will work, but hey, that's the first thing I would try.

  • ALV: how to display only subtotals and total rows in the output

    ALV: how to display only subtotals and total rows in the output
    i am getting output
    i am getting subtotals for respective fields
    but i want to display only subtotals and totals rows in the output
    i have tried the
    totals_only   parameter in slis_layout_alv
    but it is not working.

    hi,
    For TOTAL
    For the amount field / quantity field in the field catalog give DO_SUM = 'X'    for WHOLE total
    For SUBTOTAL
    For subtotal you will have to create an internal table sort..Let's say you want to do subtotal for each customer..
    DATA: lt_sort type SLIS_T_SORTINFO_ALV,
    ls_sort type slis_sortinfo_alv.
    CLEAR ls_sort.
    ls_sort-spos = 1.
    ls_sort-fieldname = 'Give the field name that you do the sum'.
    ls_sort-up = 'X'.
    ls_sort-subtot = 'X'.
    APPEND ls_sort TO lt_sort.
    fieldcatalog-do_dum = 'X'.
    for subtotals
    WA_SORT-FIELDNAME = 'ERSDA'.
    WA_SORT-SPOS = '2'.
    WA_SORT-UP = 'X'.
    WA_SORT-SUBTOTAL = 'X'.
    APPEND WA_SORT TO IT_SORT.
    Refer
    http://help.sap.com/saphelp_erp2004/helpdata/en/ee/c8e056d52611d2b468006094192fe3/content.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/doesnt-function-event-subtotal_text-in-alv-713787
    regards,
    Prabhu
    reward if it is helpful

  • My old PC, when scrolling through bookmarks and clicking, would return to the same place when opening bookmarks again. My Mac, book marks always open at the top of the list. Can this be set like my PC?

    The PC, (Sony Vaio) if i scrolled half way through my bookmarks and clicked on one, if i returned to bookmarks it would open in the same location from where i clicked previously.
    The Mac, every time i open my bookmarks, it opens at the top of the list.
    Can this be adjusted to work like my old PC?
    Thank you.

    Please see the Back button as depicted in this snapshot...
    Thanks
    Andaleeb

  • Safari status bar disappears.  I have tried clicking on show status bar and it will only appear when I move the cursor to the top of the screen.  I can not minimize the open page only full screen or close the browser.  Any idea how the rectify this

    Safari status bar disappears. I have tried clicking on show status bar, under the View tab and it will only appear when I move the cursor to the top of the screen. I can not minimize the open page, only full screen or close the browser. Any idea how the rectify this issue?

    One enters and exits full-screen with control+command+F keys. This is on the View menu in Safari. Optionally, the green traffic light in your browser title bar, if you roll over it, has the full-screen control it it. While in full-screen mode with Safari, moving your mouse pointer virtually up, and off-screen reveals the Safari title bar again, and you can click the green traffic light to exit full-screen mode.
    You can hide/show the status bar by simply typing command+/. This too, is on the Safari View menu. and in 10.10.1 — it works reliably for me.

  • How to make most recent messages appear at the top of the list?

    I can not find a place in Mail preferences to make my messages in each mailbox ALWAYS appear with the most recent at the top of the list. They seem to revert to the reverse order, even though I laboriously change the order in each mailbox via clicking the top of the date column. I am using primarily .Mac addresses in IMAP format, and three computers. It seems that after I shut down, then restart the next day and my computers all sycn with .Mac, the order goes back to oldest first. How can I fix this? Thanks!

    Everytime i have used webmail, the view is always retained with my previous settings. In fact the .Mac web mail help menu says the same thing (see below)
    Therefore the last thing i would recommend is to simply reset safari (which will empty the cache), delete all your Mail plist files, and not turn .Mac sync on fully until all systems are sorting consistently on their own....
    (from the .mac help menu)
    ===================
    Sorting message lists
    When you use .Mac Mail on the web, you can sort your messages, drafts, and sent messages lists by their column headers. Sorting is helpful when you want to quickly locate specific emails or groups of emails, such as all messages received from a specific sender or all flagged messages.
    To sort a message list:
    If you're not already in .Mac Mail on the web, go to www.mac.com and click Mail (at the top of the page), and log in.
    Access a message list by opening a folder.
    Click any column header to sort the list by that parameter. Clicking the same column header again reverses the order in which the list is sorted.
    When you sort a message list, all email messages in the list are sorted, not just those showing on the current page.
    Column headers vary slightly by list. The Drafts list, for example, has no From column.
    After you have sorted a list, it retains that order until you re-sort it.

  • Why when i check songs they go to the top of my playlist. On my pc they stay where they are but on my laptop they go to the top of the list, how do i change the settings?

    why when i check songs they go to the top of my playlist. On my pc they stay where they are but on my laptop they go to the top of the list, how do i change the settings?

    I've seen this too and I believe its on the side of Dw that is doing it.
    Something in the Dw code is causing it.
    d

  • How do I move an email address up in the list of accounts on my iPhone?

    I have several email accounts on my iPhone, and I had to remove and reinstall one for a technical reason. Now it's at the very bottom of the list, although it's the one I use the most. How can I move it to the top of the list, without removing and reinstalling all the others? Thanks!

    bunny1 wrote:
    How can I move it to the top of the list, without removing and reinstalling all the others? Thanks!
    You can't. The order is defined by the order added.

  • ITunes DJ just puts songs at the top of the list

    Ok, something which is really annoying me is that if you want to play a song in iTunes DJ, it just puts it at the top of the list, and all the songs which were before it are still in their place. I want to select a song to play, and start from there as the top of the list, skipping all the songs before it, like what happened in Party Shuffle. Is there any way to do this? Any Applescripts or hidden settings? Thanks for any help

    http://discussions.apple.com/category.jspa?categoryID=149

  • Messages puts a blank conversation at the top of the list

    I recently deleted an entire conversation in messages, and now that contact will occasionally  update and go to the top of the list. It has a time associated with it as if I had sent a message at that time, but the conversation is still blank. I am worried that the person is trying to send me messages and I am not receiving them. Any ideas?

    Hi,
    looks like you are not using Google Webmaster verification method. The code that you have used, is to verify your site with Google Plus Page, You are linking your website by inserting a small snippet of code on your website and then listing that website as your Google+ Page's primary link in the About section of the profile.
    <a href="https://plus.google.com/{+PageId}" rel="publisher" />
    So as long as the Google Publisher code is there, Google Plus tag will be there. You can read more about this here
    https://support.google.com/plus/answer/1713826?hl=en

  • Why does my messages app on the iphone put 6/7 random contacts who I haven't messaged at the top of the list of people to message?

    In my messages app, let's say I sent a text to my friend 'John'. By right, his name and text should appear at the top of the list of messages, right? But instead, my phone decides to put let's say 'Mary', 'Sophie' 'Luke', 'Paul', 'dan' and 'Michelle' all on the top of this list instead. All the messages to/from them are and have been empty/deleted with weeks and i haven't contacted them in weeks either. But my phone still puts them at the top of the list, and the time stamp usually state the current time on my clock at that time. So Even though I texted john seconds ago, these people all remain above his name in my messages, why is this does anyone know?

    Hello there, Eimear_d.
    The following Knowledge Base article offers up a set of steps that can be useful as a first steps for apps that are not behaving as expected:
    iOS: Understanding multitasking
    http://support.apple.com/kb/ht4211
    If an app doesn't respond to your input, or doesn't perform as expected, do the following, testing after each step:
    Check for app updates.
    Force the app to close.
    Restart your device.
    Update your iOS device.
    Learn more about troubleshooting apps.
    If you find the issue persists, then this article offers extensive, in-depth troubleshooting for Messages itself on your iOS device:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I found out that I have some lost contacts on my iphone 5s, they dont appear when I search but if the contact calls me I see their name. How can I get those contacts to be on the list?

    I found out that I have some lost contacts on my iphone 5s, they dont appear when I search but if the contact calls me I see their name. How can I get those contacts to be on the list?

    You could check settings > mail contacts and calandars and see if there are any accounts (like icloud gmail yahoo) listed and if they have contacts on. Its possible if contacts were synced to one of these accounts that turning them back on will recover the missing contacts.

Maybe you are looking for