Monday, November 7, 2011

How To Make Newer, Older and Home Links Visible in Blogger?

Simply do this,

  1. Go To Blogger> Design > Edit HTML
  2. Backup Your Template
  3. Search For this code by pressing Ctrl+F,

 

#blog-pager-newer-link {
    float: left;
}
#blog-pager-older-link {
    float: right;
}
#blog-pager {
    text-align: center;
}

4.   And replace it with this code,

#blog-pager-newer-link {
    float: left;
        display:inline;
}
#blog-pager-older-link {
    float: right;
        display:inline;
}
#blog-pager {
    text-align: center;
        clear:both;
}

5.    View Your template now to see Links or buttons appearing just below Post Body.

Continue Reading »

Configure Cisco switch telnet login and password

The ability to telnet into a Cisco switch greatly simplifies remote administration of the device. This recipe describes enabling telnet logins and password protecting them.

To enable telnet logins into a Cisco switch and set the telnet password to keepout use the following commands from configuration mode:

line vty 0 15
password keepout
login

To telnet to the switch, it must have an IP address configured.

Continue Reading »