I want to assign and change bookmark icons on my bookmark toolbar

Some websites automatically assign an icon when I add them to my bookmark bar. For brevity sake, I delete the description so I can have more bookmarks lined up across the top of the browser page. Other websites do not generate an icon (its an icon of a blank page, a generic default setting I suppose). I want to be able to assign an icon for my bookmarks that do not have a unique icon.

If you want to have a less crowded Bookmarks Toolbar then I don't think that you can assign icons.
However you can create folders to put bookmarks in. That way, you can still put in a description if you want to, without having to give up Toolbar space. To create a folder:
1. Right-click the Toolbar
2. Select the 'New Folder...' option (near the top)
3. Fill in the name (and description if you wish)
4. Click 'Add'
* You can now add bookmarks to that folder by draging and droping them onto it
* You can edit a folder by right-clicking on it and selecting 'Properties...', changing it to how you want it and clicking 'Save'
'''If this was the answer you were looking for, please click 'Solved' -- Thanks.'''

Similar Messages

  • HT1766 I bought a sim free phone from phones 4u and had a virgin SIM card put it in to phone now it's locked to Virgin. I want to cancel and change networks but the will not give me an unlock code can you help

    I
    I bought a sim free phone from phones 4u and had a virgin SIM card put it in to phone now it's locked to Virgin. I want to cancel and change networks but they
    will not give me an unlock code can you help, as Virgin will not help me

    You did not buy an unlocked iPhone. Only Apple themselves sell unlocked iPhones in most countries. Your iPhone locked to the first carrier used. Only Virgin could authorize unlocking of your iPhone, and if they will not, there's nothing you can do. Sell the iPhone to someone who can use it with Virgin and buy a truly unlocked iPhone from Apple.
    Regards.

  • Jtree Select node and change leafs icon problem

    Hi All,
    i create a tree and implement a TreeSelectionListener:
    my mission is whenever i select a node i need to change the icon of this node (for now.later i will have to find if it have childrens).
    import java.awt.Color;
    import java.awt.Component;
    import java.util.Enumeration;
    import java.util.NoSuchElementException;
    import java.util.Vector;
    import javax.swing.ImageIcon;
    import javax.swing.JTree;
    import javax.swing.event.TreeExpansionEvent;
    import javax.swing.event.TreeExpansionListener;
    import javax.swing.event.TreeSelectionEvent;
    import javax.swing.event.TreeSelectionListener;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.TreeModel;
    import javax.swing.tree.TreeNode;
    import javax.swing.tree.TreePath;
    public class TreeView{
         DefaultMutableTreeNode top;
         JTree tree ;
         Color frameColor;
         public static ImageIcon NoTSelIcon;
         public static ImageIcon SelIcon;
        public static String[] name= new String[8];
         public TreeView(Color BackColor) {
              // TODO Auto-generated constructor stub
            top =  new DefaultMutableTreeNode("Diagnostics");
            this.frameColor=BackColor;
             SelIcon = createImageIcon("../Resource/Images/Select.gif");
             if (SelIcon == null)
                 System.err.println("Tutorial icon missing; using default.");
             NoTSelIcon = createImageIcon("../Resource/Images/NotSelc.gif");
               if (NoTSelIcon == null)
                 System.err.println("Tutorial icon missing; using default.");
         public Component createTreeComponents(){
                //Create the nodes.
                 createNodes(top);
            //Create a tree that allows one selection at a time.
            tree = new JTree(top);
            //TREE LISTENERS
            //Treeselction listener
            Handler hObject = new Handler();
            tree.addTreeSelectionListener(hObject);
           //Tree expand/collapse listener
            HandlerExpansionListener hObjectExpan = new HandlerExpansionListener();
            tree.addTreeExpansionListener(hObjectExpan);
    //       tree.getSelectionModel().setSelectionMode(TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION);
            //set tree background
            tree.setBackground(frameColor);
             tree.setCellRenderer(new OverrideTreeCellRenderer(frameColor,SelIcon,NoTSelIcon));
            return tree;
          private void createNodes(DefaultMutableTreeNode top) {
                 DefaultMutableTreeNode category = null;
                 DefaultMutableTreeNode SubCategory = null;
                 DefaultMutableTreeNode SubCategoryBasee = null;
                 DefaultMutableTreeNode SubSubCategoryBasee = null;
                 category = new DefaultMutableTreeNode("Dfe");
                 top.add(category);
                 //Sub test visible
                 SubCategory = new DefaultMutableTreeNode("Test Visible");
                 category.add(SubCategory);
                 SubCategory.add(new DefaultMutableTreeNode("Son 1"));
                 SubCategory.add(new DefaultMutableTreeNode("Son 2"));
                 SubSubCategoryBasee = new DefaultMutableTreeNode("Test Base");
                 SubSubCategoryBasee.add(new DefaultMutableTreeNode("Grandson 1"));
                 SubSubCategoryBasee.add(new DefaultMutableTreeNode("Grandson 2"));
                 SubCategory.add(SubSubCategoryBasee);
          class Handler implements TreeSelectionListener {
                   public void valueChanged(TreeSelectionEvent arg0) {
                        // TODO Auto-generated method stub
                        System.out.println("treeSelect event ");
                        TreePath trph;
                        trph=arg0.getNewLeadSelectionPath();
                        int count=trph.getPathCount();
                        DefaultMutableTreeNode Selnode = (DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
                        String Name = (String)Selnode.getUserObject();
                        setSelected(Selnode,true);
                        int number_ofnodes=getNodeCountBelow((TreeModel)tree.getModel() , Selnode, false);
                        System.out.println("The Number of nodes under "+Name+"="+number_ofnodes);
                        tree.setCellRenderer(new IconRenderer(SelIcon,NoTSelIcon,frameColor));
          class HandlerExpansionListener implements TreeExpansionListener {
                   public void valueChanged(TreeSelectionEvent arg0) {
                        // TODO Auto-generated method stub
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode)  tree.getLastSelectedPathComponent();
                        if (node == null) return;
                      }     // The inner class
                   public void treeCollapsed(TreeExpansionEvent arg0) {
                        // TODO Auto-generated method stub
                        System.out.println("treeCollapsed event ");
                   public void treeExpanded(TreeExpansionEvent arg0) {
                        // TODO Auto-generated method stub
                        System.out.println("treeExpanded event ");
          /** Returns an ImageIcon, or null if the path was invalid. */
             protected static ImageIcon createImageIcon(String path) {
                  //ImageIcon imcon= new ImageIcon(path);
                  //return imcon;
                 java.net.URL imgURL = TreeView.class.getResource(path);
                 if (imgURL != null) {
                     return new ImageIcon(imgURL);
                 } else {
                     System.err.println("Couldn't find file: " + path);
                     return null;
             DefaultMutableTreeNode newnode;
             public void setSelected(DefaultMutableTreeNode Selnode ,boolean isSelected)
                    Enumeration Enchilds=Selnode.children();//ENUMRATE ALL CHILDS FOR THIS NODE
                 if (Enchilds != null)
                      while (Enchilds.hasMoreElements())
                           newnode=(DefaultMutableTreeNode)Enchilds.nextElement();
                           String NameSel = (String)newnode.getUserObject();
                           setSelected(newnode,isSelected);
             //GETTING THE TREE DEPTH
             public int getNodeCountBelow(TreeModel model, Object node, boolean includeInitialNode)
                 int n = includeInitialNode ? 1 : 0;
                 for (int i = 0; i < model.getChildCount(node); i ++)
                     n += getNodeCountBelow(model, model.getChild(node, i), true);
                 return n;
    import java.awt.Color;
    import java.awt.Component;
    import java.util.Enumeration;
    import java.util.NoSuchElementException;
    import javax.swing.Icon;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellRenderer;
    public class IconRenderer extends DefaultTreeCellRenderer {
         private static final long serialVersionUID = 1L;
         Icon SelectedIcon;
         Icon NotSelectedIcon;
         Color BackgroundColor;
         boolean Selected=false;
         boolean Leaf=false;
         boolean IsItaChild=false;
         DefaultMutableTreeNode SelctedNode=null;
        public IconRenderer(Icon SelIcon,Icon NoTSelIcon,Color Bacground) {
             SelectedIcon = SelIcon;
             NotSelectedIcon = NoTSelIcon;
             BackgroundColor=Bacground;
             setBackgroundNonSelectionColor(BackgroundColor);
        public Component getTreeCellRendererComponent(JTree tree,Object value,boolean sel,boolean expanded,
                                                        boolean leaf,int row,boolean hasFocus)
             super.getTreeCellRendererComponent(tree, value, sel,expanded, leaf, row,hasFocus);
             Selected=sel;
             Leaf=leaf;
             DefaultMutableTreeNode node = (DefaultMutableTreeNode) value;
             String s2 = (String)node.getUserObject();
       return this;
    }my problem is :
    when i select a node the the method "getTreeCellRendererComponent"
    start to run on the entire tree from buttom to top and than from top to buttom.
    for me it waste of time because if has say 100 nodes it wont botthers me.
    but i have 20000 nodes and more its take a time.
    and for all this nodes i have to make compares.
    is there a way to force the DefaultTreeCellRenderer to not run the entire tree???
    Thanks

    You need to make sure that your TreeModel interprets your group nodes to be non-leaf nodes (one of the methods in the TreeModel interface is called isLeaf). If you are using a DefaultTreeModel with DefaultMutableTreeNode objects, you can use the askAllowsChildren property of DefaultTreeModel and the allowsChildren property of DefaultMutableTreeNode to control this. See the API for more details:
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/tree/DefaultTreeModel.html
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/tree/DefaultMutableTreeNode.html

  • I like the navigation toolbar to have icons and the bookmarks toolbar to be text only; like Safari. Can I do this in Firefox?

    In Safari the Back, Forward, Home buttons etc are Icons only and the bookmarks are text only. Is there a way of doing this in Firefox?
    In View/Toolbars/Customize I do not see this option so I have it set as text only. I don't like the icons in the bookmarks toolbar because they take up more space, limiting the number of visible bookmarks

    You can look at this extension:
    *Bookmarks Deiconizer: https://addons.mozilla.org/firefox/addon/bookmarks-deiconizer/

  • I want to review and change the security questions. I get the message ''Vérifiez votre boîte de réception. Vous devriez y trouver un nouveau message contenant les instructions permettant de réinitialiser vos données de sécurité '' but still not receiving

    My children received a message from i'Tunes saying you have to answer some of the security questions.  Strange?  She was using the same I'Pod .. She answered the questions whitout talking to me.... I after recevied an e-mail saying my birthdate and security questions have been change.
    WHAT I WANT TO DO:  I want to verify those questions and changes but the answers given by my daugher don't match with the 2 questions I have to answer.
    In my ID gestion, when I click  ''Envoyer un courriel de réinitialisation des donnés de sécurité'' it indicates an e-mail has been sent concerning security information but I did that many many times and still haven't receive this e-mail. 
    What ca I do?   I want to make sure these questions received by my sister have nothing to do with hacker...

  • When logging in to hotmail, a new window opens and the bookmarks toolbar disappears.

    Using Firefox 8.0.1 on an iMac. When I open Firefox, the bookmarks toolbar is fine, but when I login to Hotmail, it opens a new window and the toolbar disappears.
    Under the View menu, the bookmarks toolbar is still checked but the toolbar isn't there.

    Websites '''''can''''' suppress the appearance of toolbars on popup windows that they open.
    Do you really need the Bookmarks Toolbar to appear when viewing your email at Hotmail?
    If so, Type '''about:config''' in the URL bar and hit Enter. <br />
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''dom.disable_window_open_feature.toolbar''' = double-click that pref to toggle it to '''true''' and then restart Firefox.

  • Hi. I want to add an extra bookmark toolbar. I've followed the instuctions but nothing's happening. What can I do?

    I've used "Customise toolbars" to create a new toolbar but it never appears. When I try to create a second one with the same name, the software says it already exists (but I still can't see it).
    I'm not sure in any case that this method would give me a new BOOKMARK toolbar - which is what I want.
    If you can help, I'd be glad to hear from you.

    You can only have one bookmarks toolbar with the Bookmarks Toolbar items on it to store bookmarks in.
    Look at this extension.
    *Multirow Bookmarks Toolbar Plus: https://addons.mozilla.org/firefox/addon/multirow-bookmarks-toolbarplus/

  • Upgraded to 23.0.1 and now bookmarks toolbar only shows open tabs and not bookmarks. How to I fix?

    Running Win 7 Home Premium. When I upgraded to Firefox 23.0.1, the Bookmarks Toolbar no longer shows my bookmarks which are in Bookmarks Toolbar but shows open tabs. If I uncheck "View Bookmarks Toolbar" the blank toolbar disappears, open tabs stay in there position. If I recheck "View Bookmarks Toolbar" a blank toolbar reopens but open tabs are on the toolbar. I tried to move a bookmark to the toolbar but all it does is open a tab of the location of the bookmark I tried to position on the toolbar.

    hello, please try to restore the default toolbar set as it's described in [[Navigation buttons like back, home, bookmarks and reload are missing]]

  • I want to backup just my Bookmarks TOOLBAR not my bookmarks

    I need to be sure I do not lose the items and groupings on my Bookmarks TOOLBAR
    - NOT my bookmarks
    I know how to back up my bookmarks. HOW do I back up my Bookmarks TOOLBAR
    so I can recover just that - the Toolbar?
    I don't see any way or any individual file that contains this organized data so I can use it
    to restore or migrate the toolbar
    Not the whole Profile. I have FEBE - but that doesn't seem to do what I am looking for.

    Sorry, the Bookmark Toolbar is part of the bookmarks / history storage file - '''places.sqlite'''. As such there isn't a separate file which can be backed up separately.

  • Just updated to Firefox 31.0 and my Bookmarks Toolbar disappeared.

    Using Windows 7, I have Classic Theme Restorer but uninstalled that and still had same problem. The Bookmarks Toolbar is where it should be in Customize mode and when I exit Customize I can see my Bookmarks Toolbar for a split second but then it's gone for good. Just started happening today July 24 2014 when I rebooted. Thanks.

    Is the Bookmarks Toolbar items still positioned on the Bookmarks Toolbar?
    Try to click the "Restore Defaults" button in the Customize palette to restore the default toolbar setup.
    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • MRS: fm to get assignment and change status

    Hello all,
    I have a requirement for MRS to get all assigned MRS tasks for a specific user (PERNR) and then change the MRS status of a task from an external system. Therefor, I need 2 remote enables FM's.
    1) collect all assigned MRS tasks based on PERNR and start/end date.
    2) change status of a chosen MRS task.
    I have the pernr and orderid's. But to be able to change the status of a MRS task, I need the assignment key (OBJECT_GUID) .
    So first, I need to find the assignment key based on the pernr/resource_key and orderid => is there a functionmodule / method for this? Or does anyone know in which table(s) I can find this assigment?
    Next, I have to change the MRS status of this task. I found class /MRSS/CL_SGD_DEM_STATUS with method MAINTAIN where I can change the status => but is there also a functionmodule that also does the SAVE?
    Kind regards!
    Robert

    Allright, so I have requirement nr 2 working. But I have not yet found the collection of the assignment value based on pernr / orderid / startdate / enddate. If anyone can help me that would be great!

  • My bookmarks have diappeared and while the icon is on the toolbar, I cannot create or save bookmarks, let alone access my saved book marks. I am prompted to log in, but can't log in to either of my accounts in any meaningful way. Nothing happens

    I can't access my saved bookmarks and I can't create new ones. I can't access either of my two accounts for bookmarks.

    This could be a problem with the file places.sqlite
    Locked or Damaged places.sqlite
    * http://kb.mozillazine.org/Locked_or_damaged_places.sqlite
    Check and tell if its working.

  • Can I link folders in the Bookmarks Menu and the Bookmarks Toolbar so that an addition or deletion from one will show up in the other?

    It seems as if these two lists - the Toolbar list and the Menu list - operate independently. Is that correct? I'm using Windows 7.

    Immediately backup your whole Firefox profile.
    * [[Back up and restore information in Firefox profiles]]
    You will have over written your bookmarks database and it may be difficult to recover. You may at least have backups of bookmarks that are still usable but that is why you must back up the profile.
    Create a new additional test profile using the profile manager. Next test the bookmarks from your backup restoring them into Firefox whilst open with and using the new test profile. If one of those backups works you should be able to restore that into your ordinary Firefox profile.
    You may need to delete the database places.sqlite to get working bookmarks. But rename it rather than delete it as it is then easier to reverse. Note if you do need to delete the places database you will lose your Firefox History.
    There is an alternative strategy but again ensue the profile is backedup. And in this case also backup separately places.sqlite before any recovery attempt.
    The Windows OS should try to keep previous copies of Files and it is possible that you will have a usable previous copy of ''places.sqlite'' that may be recovered by options available from right clicking the current version.
    Related articles
    * [[Use the Profile Manager to create and remove Firefox profiles#w_creating-a-profile]]_creating-a-profile
    *[[Recover lost or missing Bookmarks]]
    *[[Profiles - Where Firefox stores your bookmarks, passwords and other user data#w_how-do-i-find-my-profile]]_how-do-i-find-my-profile
    * http://kb.mozillazine.org/Places.sqlite
    * These articles mentions the last resort deleting places.sqlite to restore bookmarks, BUT you lose history AND need a correct backup file '''within the profile''' for Firefox to utilise <br /> http://kb.mozillazine.org/Lost_bookmarks#Restoring_bookmarks_in_Firefox_3_and_above <br /> http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox#Rebuild_Places_database

  • I want back, forward, home and reload as icons, everything else as text please.

    Hi.
    I am using the Multirow Toolbar Bookmarks Plus 1.0
    In customize tools I have icons set as text only.
    Is there a way of having back, forward, home and reload as icons.

    Firefox 4 uses a combined Stop/Reload/Go button that is positioned at the right end side of the location bar.
    During the page load process it shows as a Stop button and after the loading has finished the button is changed to a Reload button.
    If you type in the location bar then that button becomes a Go button.
    Middle-click the Reload button to duplicate the current tab to a new tab.
    Make sure that all the toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization
    A possible cause for issues with bookmarks is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • I have problem with previous billing purchase,now i cant change my credit card because my previous credit card was closed,and there in none selection between the visa mastercard and amex,please help i want to to purchase,and change credit card

    please help me i already input another card and the securitycodes but the device said for assistance,contact iTunes Support at www.apple.com/support/itunes/ww/.
    it doesnt help at all please help me
    i want to purchase and change credit card

    This is a user-supported forum. You are talking to other users here, not Apple. As the advice suggested, contact iTunes Customer Support at: http://www.apple.com/support/itunes/contact/

Maybe you are looking for

  • Report on Slow-moving item in sap MM

    Dear All, I am facing problem in preparing functional specification for a Z report.The requirement details are given below MC46 gives me a list of all items that have not got consumed since the last period (defined in terms of 'no of days' on the scr

  • HP ENVY TouchSmart & HP ENVY 4500 e-All-in-o​ne-Printer

    My HP ENVY 4500 e-All-in-one-Printer has been installed & uninstalled twice.  It is presently uninstalled.  When you first install & print test is prints from my HP ENVY TouchSmart w/Windows 8.1.  After the initial installation is tells me its offlin

  • How do you change the default location of the library xml and other related files?

    After the most recent software update of iTunes for Windows, the new software resorts to going to a folder on my hard drive for the files that determine your library: \Users\username\Music\iTunes\iTunes Library.itl \Users\username\Music\iTunes\iTunes

  • Portal integration with E-Business and Discoverer 10g

    Hello Everyone, We have a R12 integrated with SSO/OID. We also have a standalone Oracle BI Discoverer 10g. We want to implement Oracle Portal here. One of the requirements of this project is to have a common home page for both E-Business Suite login

  • So I have an Apple iPod the 5th gen and idk how to get my messaging to work

    Hello? My name is Hailey and I have the 5th gen of an iPod touch and my friend has the same one we'll she got her messaging texting thing working I was wondering how to get mine to work? Because it's not working and I've followed the instructions. Pl