Thursday, November 8, 2012

Techniques of Adding New Widget Sections In Blogger On Different Places?

Adding new widget sections in blogger template is very easy task to do. There are many posts about this topic on the internet but those are very lengthy to read. Purpose of my post is to clear the concept.

If you want to add a widget which should be shown on home page of your blogspot blog then you have to follow these steps.

Step # 1. Go to templates section of your blog and click on html Editor.

Step # 2. Now decide where you want to add new widget section.

Step # 3. And past below code and save.

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<b:section class='sidebar' id='magazine-left' showaddelement='yes' >
<b:widget id='Text51' locked='false' title='Test Title 1' type='Text'/> 
</b:section> </b:if>

If you want to add a widget which should be displayed on every page of your blog then you have to past below code in the corresponding area and save the template. All other steps will remain same.

<b:section class='sidebar' id='magazine-left' showaddelement='yes' >
<b:widget id='Text51' locked='false' title='Test Title 1' type='Text'/>
</b:section>

How to do PTCL DSL Modem and Router configuration

Hi guys, today i am going to share with you the most important and useful information regarding PTCL DSL modem configuration. This is a common problem that our internet stops working and we have no knowledge about what to do. There are two methods of configuring PTCL DSL router.


1. Call 1236 Helpline:

One method id to call 1236 PTCL line anf ask them, they should configure you DSL modem remotely and the other method is to configure you modem manually.


2. Manual Method:

2nd method is to do manual configuration. First of all open Internet Explorer and write “192.168.1.1” in address bar and press enter. There must not be any proxy setting in the internet Explorer. This will open a login window and will ask for username and password to access the router console. The default username and password for router is admin/admin. So write admin in username box and admin in password box and click on login button.

How to access router using browser can be found in this post http://our-knowledge-base.blogspot.com/2012/11/how-to-do-ptcl-dsl-modem-and-router.html

Wednesday, October 10, 2012

Images of Shangri-La Pakistan

Shangrila Lake or Lower Kachura Lake is a part of the Shangrila resort located at a drive of about 20 minutes from Skardu (nearly 2,500 m or 8,200 feet) town.

It is a popular tourist destination, and has a unique restaurant that is built on the fuselage of an aircraft that had crashed nearby.

Shangrila was established in 1983 with the opening of the first Resort Hotel in Skardu, Baltistan. It was named "heaven on earth" because of its spectacular beauty,and breathtaking view and peaceful atmosphere. Shangrila Resort Hotel was founded by the late Brig.(Retd) Muhammad Aslam Khan, the first commander of the Northern Scouts of the Pakistan Army.

Shangrila was named after a book titled "Lost Horizon" by James Hilton. In the novel, the author narrates a tale in which an aeroplane crash landed near a riverbed, in the early 1920s. The surviving passengers came across some Buddhist monks from a nearby temple and sought their help. They were taken to a beautiful lamasery filled with a variety of fruits and flowers. The monks looked quite young, although they claimed to be hundreds of years old. The idyllic place was called Shangri-la, a Tibetan word meaning "Heaven on earth".









Saturday, September 29, 2012

javascript - window.open not working in IE - (RESOLVED)

Browser compatibility is an issue which each and every web-developer has to face. New window popup using javascript is the same kind of issue and javascript fuction window.open() has different functionality in defferent browsers like in firefox and chrome it works and in IE-8 etc sometimes it does'nt work.

I also faced this problem today and did R&D on it, and found a very simple solution to this. here is the solution of this problem.

In IE, you can't have spaces in your second variable (the new window's name).

Try:
 
window.open (address,'Ver_articulo', config=center);
 
Please post your comment and share this with others if you really like this post.