Changing Mobile Website Icon When Added to Home Screen of a Mobile

Does anybody know how to change the icon on the mobile layout when a user 'Adds to Home Screen'? Also, is it possible to add the mobile website to the users homescreen by having a button or code in place? Any help would be hugely appreciated people!! Thanks a lot!!

Bookmark saved in phone homescreen would be favicon of your site , which you can change from Site properties.
Regarding adding site favicon in homescreen , you can add the browser bookmark in homescreen first and then from browser settings , add bookmark with site name in home screen.
Thanks,
Sanjit

Similar Messages

  • Can i change the cursor icon when hover over an active link by another one ?

    Can i change the cursor icon when hover over an active link by another one ?

    i have multiple links,so is there a way to have the custom cusrsor work on all links in a page and not just one?......you can see here i have 3 links..but only the top one changes to the crosshair cursor when rolled over  http://prntscr.com/5oxkj6
    actually it seems its not working on multiple instances of the same button.
    nvm found out why,lol...it was because i ndidnt have an actual link associated with the other instances of the button....all good now:)

  • Accidentally deleted an App Store app.  how can I get the icon back on my home screen?  when I search for it in the App Store it comes up 'open'. thanks.

    accidently deleted an app Store app.  how can I get the icon back on my home screen?  in the app store it comes up 'open' instead of install.

    What happens if you tap on open?
    Remember, if you ever want to find an app quickly, you can slide all the way to the left (iOS 6 and lower) or pull down (iOS 7 and later) to get to an app.
    If you know for certain that you have deleated the app, please try restarting your phone. There are many ways to do this, but the safest way would be to hold down the power button and then slide to power down.
    Once powered down, restart and try to find the icon on your screen. If you still can't find it, go into the App Store and then find the app you were trying to access. It should have an iCloud download symbol since you've purchased it before, rather than saying "install."

  • The contact icon in my bb home screen has been disappeare​d

    i have got a problem
    the contact icon in my bb home screen had been disappeared from the menu
    i tried this :
    from the application i click the blackberry button then i click show all but this did not solve the problem
    what can i do to solve this ?
    thanks

    Hi there!
    Please see my response to your duplicate post here:
    http://supportforums.blackberry.com/t5/BlackBerry-​8800-Series/the-contact-icon-in-my-bb-home-screen-​...
    Please mark this thread as solved so that we don't needlessly spend time on duplicated efforts.
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I get my kindle app icon back on my home screen.  I have to keep going to the App Store to open Kindle

    How can I get my kindle app icon back on my home screen.  After updating to iOS 8.0.2, my Kindle icon was gone. Now I have to keep going to the App Store to open Kindle, but I cannot get it on my home screen.

    for the   Points
    7:07 pm      Sunday; September 28, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How do I get the Photo icon back to my home screen?

    How do I get the Photo icon back to my home screen?  I don't know how I managed this - but my lovely 'happy' photo icon is gone from my home screen and I can only access it through the double click - I would like it back on the home screen...any ideas???

    You looked on every page & in every folder(if you have folders)? Still don't see it? If so: Settings>General>Reset>Reset Home Screen Layout...see if you see it now.

  • Icon was changed to default icon when editting a node on JTree

    I have a tree with icon on nodes. However, when I edit the node, the icon is changed to default icon.
    I don't known how to write the treeCellEditor to fix that one.
    The following is my code:
    package description.ui;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.ToolTipManager;
    import javax.swing.WindowConstants;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellEditor;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreePath;
    import javax.swing.tree.TreeSelectionModel;
    public class Tree extends javax.swing.JPanel {
         private JTree tree;
         private JScrollPane jScrollPane1;
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new Tree());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.show();
         public Tree() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   BorderLayout thisLayout = new BorderLayout();
                   this.setLayout(thisLayout);
                   setPreferredSize(new Dimension(400, 300));
                    jScrollPane1 = new JScrollPane();
                    this.add(jScrollPane1, BorderLayout.CENTER);
                        DefaultMutableTreeNode rootNode = createNode();
                        tree = new JTree(rootNode);
                        tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
                        jScrollPane1.setViewportView(tree);
                        ToolTipManager.sharedInstance().registerComponent(tree);
                        MyCellRenderer cellRenderer = new MyCellRenderer();
                        tree.setCellRenderer(cellRenderer);
                        tree.setEditable(true);
                        tree.setCellEditor(new DefaultTreeCellEditor(tree, cellRenderer));
                        //tree.setCellEditor(new MyCellEditor(tree, cellRenderer));
              } catch (Exception e) {
                   e.printStackTrace();
         private void btRemoveActionPerformed(ActionEvent evt) {
             TreePath path = tree.getSelectionPath();
             DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)path.getLastPathComponent();
             ((DefaultTreeModel)tree.getModel()).removeNodeFromParent(selectedNode);
         private DefaultMutableTreeNode createNode() {
             DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Doc");
             DefaultMutableTreeNode ch1 = createChuongNode(rootNode, "Ch1");
             DefaultMutableTreeNode ch2 = createChuongNode(rootNode, "Ch2");
             createTextLeafNode(ch1, "title");
             return rootNode;
         private DefaultMutableTreeNode createChuongNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new ChapterNodeData(name));
             parent.add(node);
             return node;
         private DefaultMutableTreeNode createTextLeafNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new TitleNodeData(name));
             parent.add(node);
             return node;
          private class MyCellRenderer extends DefaultTreeCellRenderer {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
                 public MyCellRenderer() {
                     titleIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Text16.gif"));
                     chapterIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Element16.gif"));
                 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);
                     if (isChapterNode(value)) {
                         setIcon(chapterIcon);
                         setToolTipText("chapter");
                     } else if (isTextLeafNode(value)) {
                         setIcon(titleIcon);
                         setToolTipText("title");
                     return this;
                 protected boolean isChapterNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof ChapterNodeData;
                 protected boolean isTextLeafNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof TitleNodeData;
          private class MyCellEditor extends DefaultTreeCellEditor {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
              public MyCellEditor(JTree tree, DefaultTreeCellRenderer renderer) {
                  super(tree, renderer);
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Text16.gif"));
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Element16.gif"));
              public Component getTreeCellEditorComponent(
                           JTree tree,
                           Object value,
                           boolean isSelected,
                           boolean expanded,
                           boolean leaf,
                           int row) {
                  super.getTreeCellEditorComponent(tree, value, isSelected, expanded, leaf, row);
                  return this.editingComponent;
          abstract class NodeData{
              String name;
              public NodeData(String name) {
                  this.name = name;
              public String getName() {
                  return name;
              public void setName(String name) {
                  this.name = name;
              public String toString() {
                  return name;
          class ChapterNodeData extends NodeData {
              public ChapterNodeData(String s) {
                  super(s);
          class TitleNodeData extends NodeData {
              public TitleNodeData(String attr) {
                  super(attr);
    }

    Arungeeth wrote:
    I know the name of the node... but i cant able to find that nodeHere is some sample code for searching and selecting a node:
        TreeModel model = jtemp.getModel();
        if (model != null) {
            Object root = model.getRoot();
            search(model, root, "Peter");//search for the name 'Peter'
            System.out.println(jtemp.getSelectionPath().getLastPathComponent());
        } else {
            System.out.println("Tree is empty.");
    private void search(TreeModel model, Object o, String argSearch) {
        int cc;
        cc = model.getChildCount(o);
        for (int i = 0; i < cc; i++) {
            DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(o, i);
            if (model.isLeaf(child)) {
                TreeNode[] ar = child.getPath();
                String currentValue = Arrays.toString(ar);
                if (currentValue.contains(argSearch)) {
                    jtemp.setSelectionPath(new TreePath(ar));
            } else {
                search(model, child, argSearch);
    }

  • Ads in notifications and icons added to home screen.

    This is happening on my wife's phone. Notifications that are ads and icons to a different market added to her home screen. I assume it is an app that is doing it, but I cannot figure out which. Any tips on finding this thing or stopping the behavior?

    Use the Addons Detector app that can be found and downloaded from the Google Play Store.  It scans and determines what apps have push ads that cause the notification ads and icons to appear.  Download it, run the scan, tap Addons, and uninstall anything that shows up in the Push Notifications section.

  • Reader changed all my icons when I updated why?

    why does all my icons change to adobe reader when I updated?

    You are not talking to Apple in these forums. We are all end-users like you.
    This is the route to get feedback to Apple employees involved in product development and evolution:
    http://www.apple.com/feedback/ipad.html

  • Wallpaper zooming in and out when going to home screen

    Whenever I go to my home screen, my wallpapers zooms in and out by itself and it's rather annoying. I want to know if there's a way to stop it form doing it. Is it like an effect or something? How can I turn that off?
    Thanks

    I know on Zedge Mortb when i'm previewing Wallpapers they Will pull in & out if i press on the Screen but once i set them as a Permanent picture they no longer do that. Interesting in what the OP has and i have ever tried a Launcher but they do have a Bunch a Settings that you can Change.. b 

  • My music app icon is missing from my home screen and I have to go through the search to find and use it. How do I get the icon back on my home screen

    (IOS 7 update trouble) My music app icon is missing from my home screen and I have to go through the search to find and use it. How do I get the icon back on my home screen

    Find which screen, folder it was moved to, and hold down the icon until the icons start shaking. Then drag it to the left or right edge of the screen, and it will allow you to move it to which ever screen you want it. When you have it there, tap the Home button to stop the icons form shaking.
    Or do what hannahsage said above.

  • Nokia 6700 crash when setting up 'Home Screen'

    Okay,
    I have already had my 'Home Screen' menu and 'Go-To' menu setup and working fine for over 6 months now with no problems.
    NOW, when I want to add an Application to either of those menus (I will use the Go To menu for this example)
    - I will click the 'Go To' button on the left of the 'homescreen'.
    - Click Options
    - Click Select Options
    - If I click on the Applications folder (for me to select WHICH app to add to the shortcut menu, it will bring up a blank screen which I cannot exit from.
    - The only way out is to reeboot the phone.
    I'm starting to get frustrated with this now as it's been a good phone up to now (apart from my previous forum posts)
    I look forward to hearing what you have to suggest.
    THANKS!
    J

    Bought the 6700 on recommendation from the gy in Carphone warehouse (I know I should have known better...) I had the same problem, took it back to Carphone warehouse who sent it back to Nokia. Nokia couldn't fix it, I lost all my data and they sent me a new phone,  That one is now freezing after only 3 weeks so I have to go back yet again to try and change to another brand as I don't have time for this. Nokia, you have lost all my goodwill and I won't be buying one of their phones again.

  • Unknown and unrecognizable icon on iPhone 5 home screen

    This icon has appeared on my home screen.  It is not included in my applications list.  Can anyone tell me what it is?

    Are you using a 3rd party app to check your battery usage?
    If you are contact the app developer or look at their support site.

  • IPhone 5,  webpages added to home screen don't open correctly

    When I open pages stored to the home screen they appear to open using the old screen size.  There are black bars at top and bottom and no navigation bars.  Even the time, battery indicator, etc are moved down on the screen.

    The error that you are seeing has to do with your Internet connection. Try disabling your anti-virus software and connect the iPhone again and try to restore. See this support document for help. http://support.apple.com/kb/HT1808

  • I have downloaded what's app but icon is not on home screen and i have to search every time i want to use it ..anyone got any ideas pls

    I have downloaded what's app but the icon is not on my iphone i have to search for the app everytime i want to use it has anyone got any ideas please???

    This makes no sense... if it's not on the phone, it's not on the phone.  A search of the device would never find it.
    Is the issue possible that the app is simply on another home screen or in a folder?  Have you possibly filled the 11 page max of home screens?

Maybe you are looking for

  • How do I reinstall an "Up-to-date" application in Creative Cloud

    I recently switched to a new Mac.  My Creative Cloud applications all migrated fine, except Dreamweaver.  On opening it, I gewt an error.  I assume I just need to reinstall it, but when I go to the Application Manager, it says Dreamweaver is Up to da

  • DATAIMPORTBIN is not working if there is a change in Outline

    Hi, I am expoting data from one application in BIN format using below statement: DATAEXPORT "Binfile" "E:\Data\ExportTest.bin" ; which is exporting data correctly. Now when I try to Import this file in another application using DATAIMPORTBIN command,

  • How to make a special JPEG?

    I have 6 JPEG photos that I would like to create on one JPEG photo. Rather than just a collage, I want to be able to manipulate each individual photo in a desired position, such as any angle that I choose. How can this be done? Thanks

  • Problem importing photos from Extreme Pro SD Card

    Sorry if this has been covered. I atempted to import photos from my new CF card via a Griffin card reader into my iMAC. Never had a problem before, but iPhoto won't respond and won't recognize the card. Was able to import to my wife's MacBook Pro wit

  • Help plz my IPod has a sad face

    Okay so i turned on my ipod today and it has a sad face with a question mark on it. When i read the book it told me to reinstall the program and i keep doing that but it just doesnt go away. Got any idea how i can fix my ipod?