Gujranwala Board 1st Year Date Sheet 2012 (Inter FA,FSc,ICS,ICom part 1)



BISE Gujranwala Board will announce the Gujranwala Board 1st Year Date Sheet 2012. The 1st year Date Sheet 2012 of Gujranwala Board is also reffered as Inter part 1 Date Sheet 2012 of Gujranwala Board. The First Year Date Sheet includes the FA part 1 date sheet 2012, FSc Pre Engineering part 1 date sheet 2012, FSc Pre Medical part 1 date sheet 2012, ICS part 1 date sheet 2012 and ICom part 1 date sheet 2012. The 1st year exams 2012 of Gujranwala Board will start in the month of April 2012. The date sheet of 1st Year of Gujranwala board 2012 will be available one month before the exams.

So stay with us and keep visiting us we will update you about the Inter part 1 date sheet 2012 of Board of Intermediate and Secondary Education Gujranwala. On the day of announcement of exam schedule of 1st year exams 2012 we will update the same page. Students should prepare themselves for the 1st year exams as they

are going to be held in next month. 1st year students can also comment about the Gujranwala board date sheet below in the comment sections. If students have any question regarding date sheet they can comment below.





If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Dynamic Templates For Blogger
























Blogger today launched 5 new templates that can totally transform how people view your blog.





"...These new views use the latest in web technology, including AJAX,
HTML5 and CSS3, to deliver a host of benefits to you and your readers :
Infinite scrolling: read more posts without having to reload or click to
a second page, New layouts: different views suited to different types
of blogs, Speed: download images as you view them, not all at once in
advance, Interactivity: there are now more ways to experience and engage
with blog content..."












View Your Blog With Dynamic Templates


You can see how your blog looks with these dynamic templates by simply
adding /view to the end of your URL.So to view Spice Up Your Blog using
these templates this would be the URL (Click the link to check it out in
a new window):




  1. AdeelMushtaq.blogspot.com/view/SideBar

  2.  AdeelMushtaq.blogspot.com/view/SnapShot

  3.  AdeelMushtaq.blogspot.com/view/TimeSlide

  4.  AdeelMushtaq.blogspot.com/view/Mosaic

  5. AdeelMushtaq.blogspot.com/view/magazine

  6.  AdeelMushtaq.blogspot.com/view/FlipCard

  7. AdeelMushtaq.blogspot.com/view/Classic




Helpful Links




Blogger are still working on these amazing designs and you can give your opinion - Dynamic Templates Feedback



Check out the Blogger post on these templates - Blogger Buzz



You can also get more help - Help Center Article


Custom 404 Error Pages for Blogger


 "The 404 or Not Found error
message is a HTTP standard response code indicating that the client was
able to communicate with the server, but the server could not find what
was requested." In simple words the page that will be displayed when the actual page is not found
is called a 404 Error Page. Till now Blogger’s error page was a plain
old design with more of orange in it and was not customizable. Now
Blogger Error pages use the same template . This would help template
designers in making up custom 404 Pages.This tutorial will help you in
setting up a Custom 404 page for your Blog.

By Default, your Blogger Error page will display this error message


custom 404 page for blogger



You can Change this message to something else from the Blogger Settings.

The option is there at Settings > Search preferences > Custom Page not Found



blogger-custom-404-message

If you want more than just a message, then we will have to fill up this text area with some HTML Code.. This is how my Error page Looks like






  • Instructions





  1. Login to your Blogger account and go to the Template page and proceed to Edit HTML

  2. Click on the Expand Widget Templates Check box so that your entire template comes up

  3. Now Look for </head> and immediately before that paste this snippet
    <b:if cond='data:blog.pageType == "error_page"'>
    <style type="text/css">
    .status-msg-wrap {
    font-size: 100%;
    margin: none;
    position: static;
    width: 100%;
    }
    .status-msg-border {
    display:none
    }
    .status-msg-body {
    padding: none;
    position: static;
    text-align: inherit;
    width: 100%;
    z-index: auto;
    }
    .status-msg-wrap a {
    padding: none;
    text-decoration: inherit;
    }
    </style>
    </b:if>

    This code snippet will reset the default styling given to the Blogger Message Wrapper.

  4. Save the template and go to a page on your blog which doesn’t exist.

  5. You should be able to see the change now. The grey background
    and the border around the 404 status message would no longer be there.

  6. Now Let’s see how we can improve the look and feel of our 404
    page. I would suggest you to use inline CSS styles to improve the look
    and Feel of your 404 message.Here is a sample HTML template which you
    can paste into the text box at Search preferences > Custom Page not Found.
    <h3>Your requested page was not found</h3>
    <p>Sorry, we cannot find the page that you are looking for. It might have been removed, had its name changed, or is temporarily unavailable.<br/>
    Please check that the Web site address is spelled correctly.</p>
    <b>Other things to try:</b><br/>
    <ul>
    <li>Go to our <a href="/">home page</a>, and use the menus or links to navigate to a specific post.</li>
    <li>
    <form method="get" action="/search">
    <table width="100%">
    <tr>
    <td><input type="text" style="width:95%;padding:2px;" value="Search this blog.." onfocus="if (this.value == &quot;Search this blog..&quot;) {this.value = &quot;&quot;}" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Search this blog...&quot;;}" name="q"></td>
    <td><input type="button" Value="Search"></td>
    </tr>
    </table>
    </form>
    </li>
    </ul>


  7. It will give you something similar to my 404 page.

  8. If you are creative, you can add more stuff to the 404 pages. You can find a list of really creative 404 pages on HongKiat for inspiration







  • Detecting an Error Page




Blogger has introduced a new page type called "error_page" and you can detect it using b:if conditional tags.

The following condition checks if a page is an error page or not.

<b:if cond='data:blog.pageType == "error_page"'>
This is an Error Page
</b:if>








  • Changing the Error Page Title




By default the title of the Blogger Error Page is your Blog Title. If
you want to change it to something else, you can Edit your template and
change

<title><data:blog.pageTitle/></title>

to

<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found</title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>

If you are using my Title Tag Hack or derivatives of that available on the internet, then you will have to change

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/><b:if cond='data:blog.pageName'> - </b:if><data:blog.title/></title>
</b:if> 

to

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found</title>
<b:else/>
<title><data:blog.pageName/><b:if cond='data:blog.pageName'> - </b:if><data:blog.title/></title>
</b:if>
</b:if>



As I always say, if you get into troubles, you can use the comment form , Forum or our Facebook Wall :)

I’m sure that this is the first tutorial on Blogger 404 Pages on the Internet. Do share and keep us live :D



If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Fastest CSS Image Mouseover Effect






To achieve an image mouseover effect with CSS, you only need a
few lines of code an a single image. No javascript and no dependency on
clunky onload() or onmouseover() events.  Another great part about
this method is that you will be utilizing a single image, rather than
two images (inactive state and active state), so it is ultra fast, with
no additional image to load.




Laying the HTML Groundwork


The beauty of CSS is that there are several ways to do this, all
effective.  The simplest and most direct method for laying your
groundwork is to create a A link box, however, you can also create a box
area using an DIV tag, SPAN tag, LI tag, etc. the code will just be
slightly different.  Also, there are still several browser versions that
only support the CSS :hover command on a link, and not on block
elements of the page.  So, if possible, just use the A tag.




I am going to make a few assumptions, one being that the
image you are working with is 200px wide and 100px high (the displayable
area).  This means, you need to create an image that is actually 200px
wide by 200px high because you will put the inactive state image on
top, and active state image on bottom.  Only the top half of the image
is displayed, and then on mouse over or ‘hover’ the image shifts to
display the bottom only.

Here is the HTML code to start with:

<a href="/yourlinkhere" class="cssmouseover"></a>

That’s it! If you want to use several mouseovers in your document, change the above code to this:

<a href="/yourlinkhere" class="cssmouseover"
style="background-image: url('/pathto/image.jpg');"></a>

Replace pathto/image.jpg with the path to your mouseover image for that specific occurence, relative to the document URL.




CSS Code…The meat and potatoes


Now that the basic HTML code is there, we tell the browser what to do with CSS.

For the first example, the css code needed to create the mouseover effect is as follows:

a.cssmouseover {
display:block;
width:200px;
height:100px;
background-image:url(pathto/image.jpg);
background-position:0px 0px;
}
a.cssmouseover:hover {
background-position:0px -100px;
}

If you are utilizing the second example, with several instances of
the mouseover effect in one page, simply remove the
‘background-image:url’ tag in the a.cssmouseover reference since you
will be controlling that css property directly in the document.

As you can see, the code above is simply using the background-position property of css to shift the image upwards 100px when the area is hovered over.

 In
this case, the pathto/image.jpg needs to be relative to the CSS file
where this code is placed, or if you placed it directly into the
document of course it will be relative to the document.





Using Other Tags Besides A in your CSS Mouseover


You can certainly use other tags besides A, as almost any HTML
element can be displayed as a block with a background image.  The trick
is that many browsers do not support HOVER effects on any tag except the
A link tag.  So, if you want to be compliant simply use the A tag for
all your hovering needs.

There are also methods of putting all the above CSS code directly
into the HTML using the ’style’ attribute.  I typically avoid this as it
is messier, but if you are using several different sized images and
different mouseover effects you might have to do this anyway.  Every
time you call the .cssmouseover effect in the example above the browser
will assume the image area displayed is 200px by 100px, which may or may
not be true for all of your images.

Simply add or change the width and height properties in the CSS file
or directly on the page via style=”" and you are good to go.


It loads fast as well, as you are only loading a single
image, and the mouseover effect is really just an illusion as the image
is sliding out of your view.





If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

How to Change Blogget Language?

  • Go to Blogger Dashboard > Setting Tab > Language and Formatting tab

  • and Choose Your Language

  • and Press Save Setting









If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

How to Upload Videos on Blogger Blog?

  • Go to Blogger Dashboard > New Post Button > 

  • Press Video Button(you can is in Below Image)

  • Select One of Them Upload Option > Choose your Video  > And Press Upload 



If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Why does my blog redirect to a country-specific URL? 10 Qustions and Answers





Q1: Why am I seeing a URL change?

A: In the next few months the website address of a blog you're reading may be redirected to a country-specific domain. For example, if you're in Australia and viewing [blogname].blogspot.com, you might be redirected to [blogname].blogspot.com.au. The country-specific domain should correspond to the country where you're currently located.

Q2: Why is this happening?

A: We are doing this to provide more support for managing content locally. If we receive a removal request that violates local law, that content may no longer be available to readers on local domains where those laws apply. This update is in line with our approach to free expression and controversial content, which hasn’t changed.

Q3: Where will I see this change?

A: We’re rolling out these changes in stages, so in the coming months you will see country-specific domains implemented in additional countries.



Q4. Does Google provide notice to blog owners when it removes content?

A: Yes. When content is removed from a blog, the author and any account administrators are notified by email and receive a message on their Blogger dashboard.



Q5: What would a reader see if a post is removed from a blog?

A: When content is removed from a blog for any reason, readers attempting to access it will see a message indicating that the content has been removed. A copy of every removal notice we receive relating to Blogger is sent to Chilling Effects for publication on their web site. In addition, we disclose the number and nature of government requests for content removal biannually in our Transparency Report.

Q6. Can users outside of the United States still access the service’s .com domains?

A. Yes, we allow anyone to view the .com version of a Blogger blog by typing: http://[blogname].blogspot.com/ncr – which always goes to the .com version of the blog. The “no country redirect” (ncr) will temporarily prevent Blogger from redirecting readers to the local version of the blog.

Q7: How do I do this for a single post URL, and not the entire blog?

A: Place /ncr/ just after the country-specific domain to access the individual post. For instance, [blogname].blogspot.com/examplepage should be entered as [blogname].blogspot.com/ncr/examplepage.

Q8: How will this change affect my blog?

A: Blog owners will not see any visible differences in their blog, but readers may notice a country-specific domain depending on their country of origin. Blog authors and/or owners will continue to manage and edit their content from Blogger.com. When we remove content that violates local law, we only do so for the country-specific domain.

Q9: What happens if I have a custom domain?

A: Custom domains are unaffected by this change.

Q10: Will this affect search engine optimization on my blog?

A: After this change, crawlers will find Blogspot content on many different domains. Hosting duplicate content on different domains can affect search results. We are making every effort to minimize any negative consequences of hosting Blogspot content on multiple domains.



If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments 

How To Add a Border To Images in blogger



 Firstly I will show you how to just add a simple border to your images and then I will build on this to create some different effects.




image borders red maple

Inline Styling

<img src="http://www.imagesite.com/image.jpg" 
style="
border:1px solid #FF0000;
padding:35px 70px 35px 70px;
background-color:#F5F5F5;
" />


Simple Border



image borders poppy


Inline styling


The html for an image with a solid border, 1px in width, color #FF0000:

<img src="http://www.imagesite.com/image.jpg" 
style="
border:1px solid #FF0000;" />

Blogger - Add your image as usual and in your post html edit tab add all the colored code above after the image location and before the />

WordPress – In the ‘Insert Image’ window (Appearance tab) – enter the width of border you require to the ‘Border’ box (1 in this example).

This will produce a black border. To alter the color of the border enter border-color: #FF0000; in the Style box. (There is no need to add the code in orange (style=" and ")as this will be added automatically.) You can also add styling by editing in the post html window as in the instructions for Blogger above.


Add Code to Stylesheet


If you are going to use this same formatting regularly add a class to your CSS styling instead of the Inline method above (edit your style.css for WordPress, Layout/Edit html window in Blogger). Use a descriptive class name and you are more likely to remember it easily:

.border-red {border:1px solid #FF0000;}

When you want to use this border style – insert your image as usual and then add the the class in the html tab. From the example above:

<img src="http://www.imagesite.com/image.jpg"
class="border-red" />


Border with padding


Follow the instructions as above but add padding to the outside of the image. The color between the image and the border will be the same as your post’s background color.


image borders poppy

Inline styling:

<img src="http://www.imagesite.com/image.jpg" 
style="
border:1px solid #FF0000; padding:6px;"/>

or

Add to Stylesheet

CSS:

.border-padding {border:1px solid #FF0000; padding: 6px;}

HTML:

<img src="http://www.imagesite.com/image.jpg"
class="border-padding" />


Border, Padding, Colored Background



image borders rose

The same as the prior image except for the addition of a colored background:

Inline styling:

<img src="http://www.imagesite.com/image.jpg" 
style="
border:1px solid #5A750C; padding:6px;
background-color:#CCCCCC;
" />

or

Add to Stylesheet

CSS:

.border-padback {border:1px solid #5A750C; padding:6px;
background-color:#CCCCCC;
}

HTML:

<img src="http://www.imagesite.com/image.jpg"
class="border-padback" />


Image Consistency


If you have various size images in a post you can standardize the size by adding borders and padding to smaller images to create an overall size matching your larger image. This time I have only included code for inlne styling as the padding will vary from image to image.


image borders red maple

Inline Styling

<img src="http://www.imagesite.com/image.jpg" 
style="
border:1px solid #FF0000;
padding:40px 78px 40px 78px;
" />


if You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Important Tips For Using Labels On Your Blogger Blog





Every time you write a post on your blog you have the option to add some Labels to that post.While most Bloggers don't give much thought to the labels they use and some don't add any labels at all they can be very beneficial to your blog in a number of ways, but only if used correctly.Using labels in the correct manner can help your blogs performance in Search, leading to more traffic and labels can be a great way for visitors to navigate your blog keeping them browsing through your archive.So by simply following a few rules and putting some thought into the labels you select you can get more traffic to your blog and increased page views from that traffic.



Lets look at some of the mistakes i see made all the time.



Using Long Labels - Your labels should be short using the minimum number of words possible.Examples i have seen such as "Going To The Shop" Should Be simply "Shopping" then that label can be added to a more wide range of future posts.





Non Specific Labels - Above we changed "Going To The Shop" to "Shopping" and not only did this make it shorter it also made it more specific.A label i seen on a Great art blog recently was "Stuff I Drew This Week" ...Hmmm... Would "Latest" Or "Latest Work" Or "Latest Drawings" not work better ?.





Too Many Labels - A huge percentage of Bloggers are guilty of this, basically thinking More is Better.Are you one of those that think if i add Tons of labels to every post it will help ? I know i was when i started Blogging in the dark old days.In fact lots of labels are just messy and of no benefit whatsoever.



No Labels - Yes from one extreme to another while some people think they should keep adding labels until they are told to stop others just don't bother or don't understand.Labels are important and as i said when

used properly can be a great benefit to your blog.




So how should you use your labels ? - A great example of how helpful Labels can be and how it works is my Blogger Templates Site called BestBloggerTemplates.Net.On BestBloggerTemplates.Net i have hundreds of Templates in lots of different styles.While some visitors like to browse through all the templates most have a specific type of template in mind.To accommodate this i have broke all the templates into Categories simply using Labels.



Here are some examples -  I add the label Two-Column to any template with Two Columns, Left-Sidebar to any template with a left sidebar, Black to any Black colored templates, Simple to all the plain and simple templates, Magazine to templates with a Magazine layout, Featured-Slider to templates that have a Featured Posts Slider added.In all i use 63 different labels on the template site and every time i publish a new template i pick 5-6 labels from that 63.











Now if you visit BestBloggerTemplates.Net looking for a template that would be good to display your Photographs you can click on the label 'Photography' and be presented with a list of templates.



So lets quickly step away from Templates and look at some other examples, On a cookery blog you can use labels like Breakfast, Dinner, Supper and Snacks for people looking to cook a specific meal.Use Italian, Chinese, American to find recipes by country.If your latest recipe was a Hot Curry Dish you would add Chinese and Dinner and all future Chinese Recipes and Dinner recipes will be categorized with it.



By now you should be seeing how specific labels can help visitors navigate your blog.You can also see how a label such as "Going To The Shop" would be of no help.





So how can the use of proper labels help your blog in search ? - There are a number of ways not least the labels pages.When you click on a label and are presented with a list of posts using that label the list of posts are on a 'Label Page'.This page of course has it's own URL and so is another page of your blog.Another page for readers to view and increase page views but also another page for Search Engines to crawl.Each label page will be crawled and indexed by Google and the other main search engines and in some cases a popular label page can rank quiet high in search results.



Linking To Labels - Do you Bookmark or build links to your blog posts ? As i often mention here on This Blog you should be Building Links to your content.Building links to your Labels Pages is also a great idea.This can be a unique way for people to Land On and Discover your blog and of course the search engines will follow the links you create to those pages.





Formatting - You may have noticed when i gave examples of the Labels from BestBloggerTemplates.net the labels with two words were separated by a Hyphen or Dash.Why ? Well it's really a personal thing and i use it on all my blogs.By using the Hyphen you are making the URL much tidier as a space between the words will be automatically filled up.







If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

How To Add Your Website In Bing and Yahoo?


Go to Bing Webmaster Tool and sign in with your Windows Live ID (Hotmail Account) by clicking webmaster tool sign in button. If you don't have a hotmail account, then create it first.


2. Now you are logged into your bing webmaster tool. Now press Add Site button a

nd write your blog url in the field and press submit.










3. Now you have to verify owner ship. Just choose the option 2 and copy the given code. Give code should be like following code:






 <meta name="msvalid.01" content="ABCDEFGHIJ123456" />








4. Now search for <head> by pressing Ctrl + F In your Edit HTML (Template Code) and just below it paste the copied code and save your template.



5. Now press verify in your bing webmaster tool and your website will be added in bing and yahoo search engine.



It will took days for your website to appear in search results according to your site rankings.

If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

What is Nofollow Tag ?







Nofollow is a simple keyword/tag given to the links in your site which is used to tell search robots to index a url but don't follow it. It is used when you are linking to a non-trusted or a bad site (which does not contains good contents), you simply nofollow that untrusted link so no harm comes to your site by that link. By the nofollow tag, you just showed to the search robots that the link is only a text. So in a way it lets you to Save/Increase Your Website's Pagerank.




Why To Nofollow Comments Links ?

Because robots follow all comments links and if they are spam they will result in a huge decrease of your site's traffic and Page Rank. Your comments links will be taken as a part of your site or posts, so if you have added nofollow tag to the comments links, robots will not follow the links and your site will be protected from SPAM !











How To Nofollow Blogger Comments Links ?



1. Go to Blogger Dashboard > Template > Edit HTML.

2. Check the box of Expand Widget Template.

3. Now search for the following code:










<a class='comment-link'



4. Now replace that code with the following code:




<a class='comment-link' rel="nofollow"



5. Now search for the following code:




 <a expr:href='data:comment.authorUrl'>



6. And replace it with:




<a expr:href='data:comment.authorUrl' rel='nofollow'>



Now simply save your template and you're done !! 



If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Blogger Backup: Download Template And All Posts In Blogger





A backup of your blogger template and blogger posts is necessary before doing any serious change in your blog. Why would not it be amazing that if you can create your whole blog backup including template and all your posts in seconds. You should be thinking whether it is possible or not. Than answer is this is easily possible even for beginners to create their blogger backup in just two clicks. I hope after creating your backup you will feel your blog secure and will sleep easily.







  • Download Your Blogger Template




1. Go to your Blogger Dashboard > Template.

2. Then press the Backup / Restore button on the top left of your template settings page.

3. A menu will appear, click Download Full Template and save your template in your computer.






  • Download Your Blogger Posts/Whole Blog




1. Go to your Blogger Dashboard > Settings > Other.

2. Now click the Export Blog link on the page



3. Then a menu will appear, click the Download Blog button and Save Your Blogger Blog (All Posts) in your computer.



Oops you're done.






If you are having any problem, then don't hesitate to ask me in the comments below.






If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Nofollow Blogger Label Links: Save Your Blog From Spam


Few days ago I've written an article on Nofollow Blogger Comments To Increase PR. I mentioned clearly that how Blogger comments links affect your PR (Page Rank). But that was not enough, I've found one more thing that effect the PR and that is Blogger Label Links. Blogger Label Links are very much responsible for our site's decrease in search results and visitors because they are not acceptable by robots. Search engines have crawl errors while crawling blogger label links. So you have to Nofollow All Blogger Label Links to remove misconceptions of robots about your blog.





How To Nofollow Blogger Label Links



1. Go to your Blogger Dashboard > Template > Edit HTML.

2. Backup Your Template First !!

3. Check the box of Expand Widget Template.

4. Now search for the following code:








<a expr:href='data:label.url' rel='tag'>




5. And replace it with the following code:




<a expr:href='data:label.url' rel='tag,nofollow'>



Now you have successfully nofollow your all blogger label links in your post body. Now you also have to nofollow the sidebar Label links located in the labels widget.



6. Now search for:




 <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>



7. And replace it with:




<a rel='nofollow' expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>



Now save your template and your blog is protected from Spam !!



I recommend you to read the following article also in order to totally protect your blog:






If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

Nofollow Blogger Comments To Increase Page Rank






Today I am discussing the Guru SEO Tips that will give a massive increase to your blog's traffic and popularity and boost your traffic and Google Page Rank as well as Alexa And other rankings. Unlike the other Webmasters, I am going to share my 2 year experience of SEO with you.




I read thousands of articles on several blogs and applied and tested them, and the result is what I am going to share with you. I searched with my scope of knowledge and come to the point that 90% of blogs are missing many useful SEO points which can make you a pro Blogger and many blogs have published wrong contents that leads to the drop in Rankings. So below are mentioned the main Goals of SEO which I am using since years and have such Good SEO Rankings and Search Results.




Before starting in detail, you can Tweak Your Blog For SEO so you don't miss anything.








  • The Correct Time To Publish Posts






After regularly publishing 7 post a weak, I saw drop in my Traffic and Alexa Rankings day by day. That was a thinking point for me. The fact was that when I publish my post in between 11:00 AM to 12:00 AM (In Pakistan) the next day I see a massive increase in traffic with a single post at correct time. It is the time when the most of the traffic lands on Internet. So you should post between 11 AM to 12 AM (8 - 10 am in US).






  • Post Length and Summary






In order to place your post well in search results, your post must contain at least 300 Words. It should not be much longer that your visitors refuses to read it and close your blog. If you are writing a very long post, then divide it into 2 or more posts so your visitors don't get confused. Don't continuously write the post, give some spaces and write in paragraphs so it may be easy to read.





  • The Main Points Should Be Written First






You should write the main goals and the main purpose of your article first. Don't discuss anything which is not related to your topic. Just talk to the point.





  • Always Choose Shorter Post Title






Your post title should be as shorter as possible. Place the important words first. Don't worry about grammar, search engines don't look your grammar.





  • Must Include A Picture






A picture speaks a thousand worlds and give your post a fresh look. Moreover it also optimizes your post by appearing in Google Images. Try to place picture on the top left side of your article like me.





  • Nofollow External Links






Nofollow is a big matter for you. It could be the reason in your PR drop. You should read:








  • Page Loading Speed






This is what every blogger/webmaster needs. Page Loading is a big factor for your traffic lost because most of the visitors don't wait if the page is loading slow, the just close your site and check for any other site. So take it as a serious problem and follow the following tricks:






The most important step to reduce load time is that you should remove the broken javascript src links from your blog code/template. Below is an example of broken javascript source link:




<script src="http://url.yourbrokenurl.com/javascript-src-code">



If there is any broken javascript link in your template, it can reduce your page loading time more than 80%. Check your whole template manually for broken javascript sources. Just press Ctrl + F and search for <script src=" and manually check all your javascripts.



If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

All photos that you upload via blogger are stored in Picasa

1) Have you made any changes to Picasa Settings/Permissions?

2) Did you upload the photos yourself or did someone else upload them?

3) When was the last time that the images displayed correctly?

4) Did you remove them from Picasa?

5) Have you made any changes to any of your Google/Blogger accounts?

6) Have you used/removed them from Google+

7) If you go to your Picasa Albums (https://picasaweb.google.com/home) Do you see the photos?

8) Have your deleted them from your Phone/Tablet?











Removing images from any of these will result in the Blog Images being deleted. You can try to ask in the Picasa Forum to see if they have an "Undelete" feature but last time I checked they did not.


You can access the Picasa Forums here Picasa



If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments

How to check your Backlinks?













Google Webmaster Tools


To use this method first you will have to add a sitemap to your site and verify it. After doing this head over to Google Webmaster Tools
and click on the link of your blog. You will get a tabbed interface.
Click on the Statistics tab. Then click on Index stats link in the
sidebar. You will get a table of Samples of your pages in Google.
Click on the Result link. Example :




link:AdeelMushtaq.blogspot.com













  • Google Method




This is the same method as the above but you
need not go through Google Webmasters Tools. Instead enter this directly
in the address bar of your browser and press Enter :





http://www.google.com/search?q=link:YOURBLOGNAME.blogspot.com&hl=en

Instead
of YOURBLOGNAME enter the actual name of your blog. The actual name of
your blog is 'YOURBLOGNAME' in the link to your blog which is :
http://YOURBLOGNAME.blogspot.com. You will get the number of backlinks
in the blue bar at the top of the page :



Web Results 1 - 10 of about xxxx linking to AdeelMushtaq.blogspot.com. (0.39 seconds)



XXXX shows the number of backlinks to your blog.










  • Technorati Method




Technorati is a search engine specializing in Blogs.

First claim your blog at Technorati.
Then copy and paste your blog url in the Search For box at the top.
In the adjoining box click the down arrow and choose Blog Posts. Then
click the Search button. You can also paste this directly in address
bar of your browser and press Enter :








http://technorati.com/search/YOURBLOGNAME.blogspot.com



Instead
of YOURBLOGNAME enter the actual name of your blog. The actual name of
your blog is 'YOURBLOFNAME' in the link to your blog which is :
http://YOURBLOGNAME.blogspot.com. You will get your Technorati Rank and
the number of links and the number of blogs linking to you.










  • OTHER SEARCH ENGINES




For Yahoo, AOL, Excite and WiseNut Backlinks enter this in search box of that search engine and press Enter :




link:http://YOURBLOGNAME.blogspot.com



For MSN SEARCH and Overture enter this in search box of that search engine and press Enter :




linkdomain:http://YOURBLOGNAME.blogspot.com



For the Open directory Project simply enter the URL of your blog in the search box provided and press Enter.










  • QUALITY OF BACKLINKS






Your PageRank increases with the quality of your backlinks. Higher quality backlinks are :



1. Backlinks from Higher PageRank sites.



2. One-way backlinks are rated higher than reciprocal exchanged links.



3.
Backlinks from sites with relevant content. If yoursite is on cars a
backlink from a wildlife site is considered lower in quality than one
from a car manufacturer site.



4. A backlink where the anchor text is the keyword (keyphrase) that you are trying to optimize for.



5.
Too many links from one URL is considered spamming and low quality.
Beware of firms trying to sell you backlinks from "link farms".



6. Getting a lot of links in a short time span is suspicious and low quality.



7. Links from Article Directories. Hence submit articles to them and put in a link to your blog at the bottom.







If You Enjoyed This Post Please Take 5 Seconds To Share and Leave your Comments


Make Auto Poster Blogspot














Asslam-o-Alaikum ►i am week in English Because my Language is Urdu but I am Trying ful To teach you to Making Automatic blog let start











  • Select >Your Secret Word

  • Tick on >Publish Email Immediately

  • and press Save








  • Now Go to Your Gmail Account  

  •  Then > Settings







  • Press > Forwading and POP/IMAO

  • > Add a forwarding address










  • Enter Your Blogger Email Address Just like this Adeeelmushtaq.testblog4@blogger.com

  • Pess Next





 









  •  Press Proceed





 





  •  After Proceed Go to Your Blogger Home Page jus like this 

  • AdeelMushtaq-Testblog-4.blogspot.com

  • Click on Subscription mail link  Arrow 1

  • then Copy your Code just like highlighted in Below Imaged Arrow 2





  • Come Back Again Gmail paste The Copied Code 

  • press Verify







  • Now select on > Forwad a copy incoming mail to

















  •  The final Step 



    •  Subscribe Websites / Blog

    •  By Created blogger email (my created Email is :adeeelmushtaq.testblog4@blogger.com)

    •  Remmeber Subscribe only which Site/Blog who is Similar to your Blog Title or key words















  • And confirm Subsrciption by Your Blogger Homepage after Conferming Subscription your can Delete Subscription  post from Your Blogger Home Page

  • When You Subscribed any Blog/website Every new Post of these Blog/Website are Automatically Published on Your Blogspot

  • I hope it hope like this Article

  • Please take Share it to 5 Second 



Follow by Email

Blogger Templates

Join us On Facebook

Online Visitors


 
Support : Creating Website | Johny Template | Maskolis | Johny Portal | Johny Magazine | Johny News | John y Demosite
Copyright © 2011. Islamic Researched Blog - All Rights Reserved
Template Modify by Creating Website Inspired Wordpress Hack
Proudly powered by Blogger