Monday, November 7, 2011

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

Simply do this, Go To Blogger> Design > Edit HTML Backup Your Template 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;        ...
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 15password keepoutlogin To telnet to the switch, it must have an IP address configured. ...
Continue Reading »