Showing posts with label Blogging. Show all posts
Showing posts with label Blogging. Show all posts

How to Add Google Web Fonts to Blogger

How to Add Google Web Fonts to Blogger

Posted in
No comments
By Unknown



First go at google fonts and choose your font.

Step 1: After finding this font click on “Quick use”.
Qickly getting Web font code
Step 2: You will be redirected to the next page where you have to choose the options for the font.
  1. Choose the styles you want - Most of the time “Normal” works best and you need not to choose any other font styles (if not required) as to reduce the page load time and as also it can be done through CSS.
  2. Choose the character sets you want - Don’t select anything here as I will come to this later.
  3. Add this code to your website - Copy the code that you need to add to your template.
    Google web font code
Step 3: Login to Blogger, go to Template tab and click “Edit HTML”.
Step 4: Find <head> and below it add the copied code as told in step 2.3 but here you have to also add a trailing slash (/) as shown below.
<link href='http://fonts.googleapis.com/css?family=Merienda' rel='stylesheet' type='text/css' />
If the slash is not added at the end then you will get XML error while saving your template.
Step 5: Now you have to integrate the font through CSS by adding it just before ]]></b:skin>. For example, if you want the web font for the whole page then add:
body {
  font-family: 'Merienda', sans-serif;
}
Now suppose you want to integrate the web font for your post headings only then the code will be:
h3.post-title {
  font-family: 'Merienda', sans-serif;
}
Or suppose you want this for the blockquotes only then it will be:
.post blockquote {
  font-family: 'Merienda', sans-serif;
}
And if you want the web font to be italic then add the CSS property font-style: italic; to the definition.
Step 6: If it’s done then save your template.
Important notes:
  • You can add multiple web fonts to Blogger by selecting the fonts you want and again follow the steps from 1 to 6.
  • In step 2.2, for most of the time, “Latin” does the job and you don’t need to select any other character sets as it will increase the page load time. But if you need it no matter what then you can choose to have multiple character sets. In that case you also need to encode “&” sign (or ampersand) so that Blogger doesn’t give any XML errors while saving the template. It would be like:
    <link href='http://fonts.googleapis.com/css?family=Merienda&amp;subset=latin,latin-ext' rel='stylesheet' type='text/css' />
Loading Google Web Fonts Asynchronously
If you are an advance user and developer then you can use the Google JavaScript library instead of stylesheet link, also known as “WebFont Loader”, to load web fonts asynchronously. Find <head> within your Blogger template and simply add the below script.
<script type="text/javascript">
  WebFontConfig = {
    google: { families: [ 'Merienda::latin' ] }
  };
  (function() {
    var wf = document.createElement('script');
    wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
      '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })(); </script>
It is also possible to call and add multiple web fonts. See the example below:
WebFontConfig = {
  google: { families: [ 'Merienda', 'Droid+Sans' ] }
};
After this add the CSS as told in step 5 to style your texts.

Add Featured Posts Slider Sidebar Widget In Blogger Blog

Add Featured Posts Slider Sidebar Widget In Blogger Blog

Posted in
No comments
By Unknown


All we know that getting more traffic on our blogs using another popular blog is very easy. All of us would have more than one blog. We have to get more traffic on each of them. This widget will help you to get good traffic on your all the blogs. This widget shows the recently added posts automatically. It showing the posts in slider form. If you don't have more than one blog, you can use this widget for your own blog. It may help you to have less bounce rate with more pageviews. Blogging is the technical way of making money with our blogs through monetization. It needs more pageviews. 

This automated recent post slider widget updated automatically when you posted on your blogs. You can use it for only one blog. You have to place your blog url from which blog, the posts will be shown. You have to choose sidebar portion to place this widget. It is the right place to use it effectively. It is amazing, it updated automatically the featured posts of your blog.

Let me explain how to add this featured posts slider sidebar widget to blogger blog.

503 Service Unavailable in Blogger

503 Service Unavailable in Blogger

Posted in
No comments
By Unknown







Are you getting this error message on your blog dashboard, or while you are trying to access your blog?

Read on to find out what this problem is all about and how to help blogger to solve it.


What does 503 mean?


503 “Service Unavailable” is a “response code” like 404 “Page not found”. The 503 response code is a bit more complicated as it is not a page that is missing it is a server problem. Usually this happens when a server cannot cope or deliver its hosted content to web users, in other words blogger servers have been overloaded.

Background


Back in March Google engineers introduced Auto Pagination which basically reduces and summarizes the amount of posts that a blog displays on the home page, this only affects blogs that show all or most of their full posts on the home page.
This approach to the problem by Blogger has proved ineffective, and Blogger are now having problems in the delivery of certain blogs worldwide.

8 Tips To Get Traffic From Online Forums

8 Tips To Get Traffic From Online Forums

Posted in
No comments
By Unknown


Forums have been around since the earliest days of the Internet, and people have been using them ever since to drive traffic to their websites. While they’re not hip and sexy Web 2.0 darlings like Twitter or Facebook, forums are still a great way to drive targeted traffic to your blog. Below are 8 things you need to keep in mind when using forums as a traffic driving strategy.


1. Pick the right forum

Choosing the right forum(s) to participate in makes a big difference. Hopefully you’re already an active member of a forum or two. If not, hopefully you’re at least aware of some of the popular forums that cater to your niche. If that’s still not the case, Google “YOURNICHE forum”.

If there are multiple forums in your niche, you should focus on being active in just one forum at first. You don’t want to spread yourself too thin, and you want to be sure you become a prominent member of the community. That’s hard to do when you’re trying to post in half a dozen different forums. Once you’ve become established in one, then you can determine whether joining another would be best for you.

Disable Right Click on Blogger

Disable Right Click on Blogger

Posted in
2 comments
By Unknown

I know many Blogger don't like to get there unique content copied by any other blogger.
SO now don't worry about getting your content copied here is a solution.
By this Hack users of your blog cannot right click on your blog and your content remains safe :)

This widget is very simple to install into your blog
Following are the steps

Step 1 > Go to Template -> Page Elements.
Step 2 > Add a Page Element -> then Add a HTML
Step 3 > Now just copy and save the following code into HTML and you are done !




<script language='JavaScript'>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="No Right-Click!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>

How To Change Default Title Tag on Blogger for SEO Labels: Blogger, SEO

How To Change Default Title Tag on Blogger for SEO Labels: Blogger, SEO

Posted in
2 comments
By Unknown


This Tip will change the Blogger's title tag to help amplify relevant keywords to your blog which improve the search engine ranking of your blog.

1. Log in to your dashboard--> layout- -> Edit HTML

2. Scroll down to where you see this:-



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





3. Now Replace above line with below code.



<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> ~ <data:blog.title/></title>
</b:if>




Click on "Save Templates" and you are done.

Keyword Density in Search Engine Ranking

Keyword Density in Search Engine Ranking

Posted in
No comments
By Unknown
What is Keyword Density?

One of the simplest ways to improve your site’s placement in the search engine results is to work on the keyword density on your page, which was what I did.


For my purpose here, I will refer to a “keyword” as a word that the user searches for when using the search engine. Generally speaking, keyword density is the ratio of the word that is being searched for (the keyword) against the total number of words appearing on your web page. If your keyword occurs only (say) once in a page of one thousand words, it has a lower keyword density than a keyword that occurs (say) four times in a page of similar length.

If a particular keyword has a higher density on your web page, then the likelihood of your page obtaining a better search engine ranking increases. Note that not all search engines bother with keyword density and indeed even those that do have their own algorithm for computing the density of a keyword. However, the principles described in this article is general enough to help your page improve its ranking in the engines that take keyword density into account.

Alexa Ranking and Network Marketing Websites

Alexa Ranking and Network Marketing Websites

Posted in
No comments
By Unknown
Imagine that you have three sites that you have found on the internet and you want to know what the respective traffic that each site has in order to determine whether or not to request a link from one or more of the sites. The toolbar is available for Firefox.
Top Sites

When you visit Alexa, you will see a menu bar at the top of the screen. " Under the Top Sites menu there are three sections that show the rankings of the top 500 websites globally (worldwide), by country, and by category. By using Alexa's free tools you can save time and easily find websites to help you improve your SEO For people who are interested in improving their search engine positioning, Alexa is one of the best SEO secrets on the internet.

About me

Samir Drissi 31, Web developer, designer,blogger,passionate by the world of web.

Proudly Powered by Blogger.