‏إظهار الرسائل ذات التسميات Blogging Tips. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات Blogging Tips. إظهار كافة الرسائل

الجمعة، 12 سبتمبر 2014

How to Create Responsive Website or Blogger Template


As the time goes, browsing websites from desktop computers decreasing and using Laptops, Tablets and Mobile devices increasing day by day. So why not to create our website design custom for each types of devices, that fits and looks more attractive for those devices to acquire the visitors entered from those devices.

Responsive web design is the approach that suggests in which design and development should respond user behavior and environment based on the size of the browser screen, platform and orientation.

Responsive web design includes the use of flexible layouts, images and intelligent use of media queries. You can make your blogger template responsive by using special tags in CSS. Media queries (@media) are such tags, which helps to make your CSS for every device screen size. You can make many media queries on CSS that matches for each screen size and you can put custom CSS codes for each media queries.

Here I have explained some steps for creating your blog responsive.



Step1: Add meta tags for responsiveness



Add the following meta tags on your blogger template using the following steps.
  1.  Go to blogger dashboard and click on template
  2. Backup your template for the risk while editing template codes.
  3. Paste the following codes between and <head> and </head> tags.
  4. Save your blogger template.
For website also, paste the following codes between <head> and </head> tags.

Add the following codes to size the contents of blog equal to the device width.

  <meta name="viewport" content="width=device-width/">

Add the following codes to size the contents of blog equal to the device width and device height.

  <meta name="viewport" content="width=device-width, height=device-height/">

Add the following codes to size the contents of blog equal to the device width and initial zoom size.

  <meta name="viewport" content="width=device-width, initial-scale=2"/>

Add the following codes to size the contents of blog equal to the device width, initial zoom size and maximum zoom size.

  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1/">

Instead or writing meta tags, you can do the same with the following codes in CSS.

@-moz-viewport {
                           width: device-width;
}

@-moz-viewport {
                           width: device-width;
                           height:device-height;
}

@-moz-viewport {
                           width: device-width;
                           initial-scale:2;
}

@-moz-viewport {
                           width: device-width;
                           initial-scale:1;
                           maximum-scale:1;
}


This works only for Mozilla browser, for other browsers you can use -o-, -webkit- and -ms- as prefixed properties.


Step2:Add media queries for each screen size



Add the following media queries  between <![CDATA[*/ and ]]> tags.


@media screen and (max-width:320px){
/*For Small Screen Moblies*/
}

@media screen and (max-width:480px){
/*For Smart Phones and iPhones*/
}

@media screen and (max-width:768px){
/*For Small Tables*/
}

@media screen and (max-width:1024px){
/*For Notebooks*/
}

You can add more media queries according to your need for different screen sizes and orientations and can also use min-width: to specify minimum width of screen.

To specify the screen orientations landscape or portrait use

@media screen and (max-width:480px) and (orientation:landscape) {  }



Step3: Write custom CSS code for media queries



Now, you have to add custom CSS codes for each media queries. The default CSS properties written are replaced by the properties written within these media queries. Here is the sample CSS code written for mobile devices, you can add these codes for media screen with max-width 320 and 480 px.

#wrapper {
  width:85%;
 }
 

#content{
 
width:100%;
}
 

#sidebar-left{
 
width:100%;
clear:both;
}
 

#sidebar-right{
 
width: 100%;
clear:both;



Alternate method for adding CSS code with media queries



For the alternate method, you can write media queries with custom CSS codes on a single .css file and link it on header part of  your blog or website as below.

<link rel="stylesheet" media="screen" href="screen.css"/>

You have to give the full path for "screen.css", where the file is placed.

You can also link different style sheet files for different screen sizes as below.

<link rel="stylesheet" media="screen and (max-width:1280px)" href="large.css"/>

<link rel="stylesheet" media="screen and (max-width:480px)" href="small.css"/>



Related Posts:





    الثلاثاء، 9 سبتمبر 2014

    How to Create Simple Blogger Template Easily?


    To create successful blog, it needs to create blogger template more attractive and looks more professional. Even you can buy professional blogger template on the web, you may want to create blogger template by yourself for your blog. Creating a professional blogger template is more challenging task, but if you have some knowledge on HTML, XML, CSS and JavaScript, it is possible to create professional blogger template easily by yourself. In this series of tutorial, I am going to teach you basic to advanced steps to create blogger template. Today I am telling you "steps for creating a simple blogger template" with describing basic elements and along with its corresponding style sheet codes.


    Step1: Preparing demo blog for creating blogger template



    To test blogger template you have created, at first you need to set up a blogger blog and have to add some posts on the blog. To create a blog, go to blogger home page, log in using your Google user name and password and then click on create a blog link to get started. Write posts for a blog by clicking on create a new post button from the blogger dashboard.


    Step2: Creating basic elements for blogger template


    Open Notepad file write the codes according to the following format and save it as .xml extension.

    # Creating XML Part


    At first, add the following codes for  Document Type Deceleration(DTD) on XML part.

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1 -strict.dtd">
    <html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>

    # Creating Header Part


    After that, add the following header elements like head and title of the blog.

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

    # Creating CSS Part


    Add custom css codes for your template in the following format. The css codes must be placed inside <![CDATA[*/ and ]]>
    tag.

    body{
    font:normal normal 14px Verdana,Geneva,sans-serif;
    color:#000;padding:0 40px 40px 40px;
    background:#fff;
    font-size:14px;
    }
    #outer-wrapper{
    CSS for outer-wrapper
    }
    #header-wrapper{
    CSS for header-wrapper
    }
    #titlewrapper{
    CSS for titlewrapper
    }
    #descriptionwrapper{
    CSS for descriptionwrapper
    }
    #menuwrapper{
    CSS for menuwrapper
    }
    #contentwrapper{
    CSS for contentwrapper
    }
    #mainwrapper{
    CSS for mainwrapper
    }

    # Creating a Menu 


    To create menu for a blog, add the code in the following format. Replace URL and name of the tabs. 

    <div id='menuwrapper'>
    <ul class='FirstLevel'>
    <li><a href='http://www.homepage.com/' target='_self'>Home
    </a></li>
    <li><a href='http://www.homepage.com/menu1.html' target='_self'>Menu1
    </a></li>
    <li><a href='http://www.homepage.com/menu2.html' target='_self'>Menu2
    </a></li>
    <li><a href='http://www.homepage.com/menu3.html' target='_self'>Menu3
    </a></li>
    </ul></div>

    # Creating blog content

    To add main blog content part, add these codes to create a widget named Blog1.

    <div id='outer-wrapper'>
    <div id='header-wrapper'>
    <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
    <b:widget id='HTML1' locked='true' title='Header' type='HTML'>
    </b:widget>
    </b:section>
    </div>
    <div id='content-wrapper'>
    <div id='main-wrapper'>
    <b:section class='main' id='main' showaddelement='no'>
    <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>
    </b:widget>
    </b:section>
    </div>
    </div>
    </div>



    Step3: Creating gadgets on sidebar and footer.


    To create sidebar and footer and to add widgets  for them add these code, which allows you to add widgets on sidebar and footer.

    <div id='sidebar-wrapper'>
    <b:section class='sidebar' id='sidebar' showaddelement='yes'>
    </b:section>
    </div>

    <div id='footer-wrapper'>
    <b:section class='footer' id='footer' showaddelement='yes'>
    </b:section>
    </div>


    Step4: Installing blogger template on required blog.


    After creating a code file on Notepad in XML format, test it on demo blog. To install prepared template, click on backup and restore button from template option on blogger dashboard. Click on download full template, the xml file will be downloaded. Then go to the required blog then go to Template  ›  Backup / Restore option and browse and upload that xml file. The template will be applied on your blog.




    Related Posts:





    السبت، 19 أكتوبر 2013

    Factors That Influence Your Websites Rankings


    Factors That Influence Your Websites Rankings
    Your websites rankings in the search engine affect the visibility of your site in search results. Higher ranked websites are always appeared on the top of search results, those sites have greater chances of being clicked. As a result those websites can get high volumes of traffic, those visitors which are obtained from search engines are not only visitors for numbers but also highly targeted visitors. There are so many factors that influence your website rankings, some of the most important factors I have described here, may help you to increase your websites rankings and visibility on search engines by implementing those tips for your website.




    Factors That Influence Your Websites Rankings



    # 1. Textual content on your website


    If the webpage does not have text content or have little text content, search engine could not find anything to index or may be ignored by the search engine. The little or no text content webpage does not appear on the search results.

    To be more visible to the search engine, the webpage must have text content related to your website. To get good rankings for your website on the search result, you have to add more text content to the webpage.





    # 2. Bot permission on robot.txt


    The effective implementation of robot.txt file affects the indexing and ranking of web page in the search engines. If the robots.txt file of your website does not allow any bot to index the page or the robots meta tag of the web page does not allow the particular bot or particular page to index the page, the search engines don't show that page in the search results.

    To be indexed all the pages or the pages you wanted to be indexed by the search engines, you have to change the robot.txt file of your website, so that search engine index the page.



    # 3. Click depth of page from root directory


    It is better to make flat file system than creating deep directory structure. The less distance from the root directory increase the web pages importance and rankings. So the web pages that can be reached with the few clicks from your home page, search engines gives higher rankings and the search engines give lower rankings to the page that require a lot of clicks from home page.



    # 4. Uniqueness of the page content


    Having duplicate contents on the website is not good for search engines. If you have placed same web page twice or more on your website, it may have negative effects on the search engines positions. So do not submit duplicate page on the website as far as possible.

    Along with avoiding duplicate web page, you should also avoid from duplicate paragraphs. Those web pages having duplicate contents may be ignored by the search engines. So you have to remove duplicate paragraphs from the page.



    # 5. Method used for page redirection


    Method of the redirection you have used also affects your websites rankings. If you wanted to redirect the visitors of old URL into new URL, you need to redirect the visitors of old site into new site. A 302 redirect tells the search engines that redirect temporarily and 301 redirect tells the search engines that redirect permanently. So 301 redirection method used in your website increases your websites rankings than 302 redirection method used.



    # 6. Number of links on a page


    Linking your text on another related website or the pages on the same website is a good idea for making your page more resourceful and also to increase the ranking of your page. But too many links on the web page negatively impacts for rankings of your web page.

    If a page contains too many links, search engines might think that the page itself does not contain enough content and does not show pages that have just links to other websites. So try to decrease the outgoing links as far as possible and it is better if number of internal links are greater than number of external links. The total number of link should be less than 200 and it is better if it goes to less than 100. Google prefers less than 100 links on a single page.



    # 7. Uses of meta description tag


    Effective uses of meta description tag helps to increase the search engine rankings for your webpage. It you don't use meta description tag, search engine do not display your webpage on the search result. So add a unique and descriptive meta description tag on a page.

    The too short and too long meta description tag also interrupts negatively by the search engine. So meta description tag should have at least 50 characters and it should not have less than 160 character. The meta description tag also needs to be relevant to the webpage or business and it should not be duplicate.



    # 8. Size of web page


    Web page loading time is also a factor in search engines ranking factors. If the size of website is very big, it takes longer time to load. The search engine crawlers can not index the web page which takes longer time to load. If your webpage is very big, you have to split your page into smaller pages.



    # 9. Tile of the page


    Using appropriate title for a web page is also very important for search engine rankings. The title of page should represent the content of the whole page. While creating title for a web page, should use meaningful keywords related to your content and it should not be too long and too short. A short title may not sufficiently describe the page and long title will shorten when displaying in search results. For better rankings, always use short but more descriptive and keyword rich title and also do not use duplicate title tag.



    # 10. Format of URL


    Format of URL also affects the ranking of a web page. The URL of web page should not use the characters which are not allowed in URL.

    The URL should not be too long and should not use too many parameters. Search engine might not look for rankings information for the web pages having long URLs. Along with high ranked by search engines, a short and descriptive URL also shared on social networking sites.



    Related Articles

    السبت، 14 سبتمبر 2013

    Top 40 SEO Tips for Small Business Website: Part- 2


    Top 40 SEO Tips for Small Business Website

    SEO Tip-21: Submit Articles on Article Submission Sites


    It is known that building links to your site is importance in achieving high search engine rankings, especially in major search engines can be the best idea for creating one way links, which lead to page one results. Article marketing not only provide one way links, it also gave potential information about your website to the customers. You can submit on the top article submission sites like Ezine Article, Article City, Go Articles etc.


    SEO Tip- 22: Insert Keywords on Article Title and the body.


    By inserting keywords on article title and the body your can make your website more visible to the search engine. But extreme use of keywords unnaturally may harm. Normally using keywords less then 5% on the article is better. So only use keywords on the appropriate places.
    Top 40 SEO Tips for Small Business Website
    Top 40 SEO Tips for Small Business Website (Photo credit: Wikipedia)


    SEO Tip- 23: Register Your Domain More Than One Year


    The age and the expiration time of the domain also impact your sites visibility on the search engines. search engines gives priority for the older and having long time expiration date domains in the search result. So it is better to register your domain more than one year.


    SEO Tip- 24: Use Free as well as Paid SEO Tools


    You can use free as well as paid seo tools for optimizing your website for search engines effectively. The most important seo tools that can be used are keyword suggestion or keyword research tool, back-link checker tool, website analyzer tool, keyword density checker tool etc.


    SEO Tip- 25: Submit Press Releases for Link Building


    Submitting press releases on press release site is another way for building one way links to your website. You can use a press release to build links and increase search engine rankings effectively along with placing links on the body of press releases you can create deep linking to your website.

    For Press Release Submission Sites Visit: Top 10 Press Release Submission Sites




    SEO Tip- 26: Use "robots.txt" Effectively


    Robots.txt file tells search engine whether they can access the specific pages of your website. You can access the specific pages of your website. You can also restrict the whole directory also. By using robots.txt, you can restrict the search engines from crawling if they are not useful for the user. This file must be named "robots.txt" and must be placed on root directory.

    To generate 'robots.txt' file using a tool visit: Advanced Robots TXT Generator


    SEO Tip- 27: Prepare Mobile Site and Redirect Mobile Users


    Today's world going towards mobile and other small devices for the internet access. Internet users from the mobile increasing day by day. So mobile site is also became necessary for any website to attract the mobile users. So create a mobile version also of your website and submit to search engine for indexing.

    To create mobile version of your site visit: Make Free Mobile Website


    SEO Tip- 28: Use Latest SEO Tips and Techniques


    Search engines may change their algorithm for displaying the search result on time to time. So you have to get updated about that and have to use the tips and techniques that matches to the change. To get notified about the algorithm changed by the search engines and the tips needs to use to overcome that. You can follow the major seo sites and forums.

    For more information about top SEO sites visit: Best 10 SEO Sites for SEO Tools and Tips


    SEO Tip- 29: Create videos and share them


    Sharing useful and informative videos may be more effective for attracting more visitor towards your website. So give some time to create promotional videos about the services and products provided by your website and share them on video sharing sites like YouTube. Once you have posted video on YouTube, you can post it on your site and YouTube will pick up the link to your site.



    SEO Tip- 30: Declare Language Attribute for Your Website


    Declaring language attribute for your website is most important for country and language targeting. Which can be done by using any of the methods below.

    # Declaring language attribute in the HTML element.

    i.e. <html lang="en">

    # Adding country level domain or sub domain

    i.e. www.mysite.com/np/ or www.mysite.com.np

    # Using alternate language for content in <HEAD>

    i.e. <link rel="alternate" hreflang="en" href="http://example.com/en" />


    SEO Tip- 31: Use "nofollow" tag for external links


    External links on your website passes your websites reputation to the linked website, to stop the follow of reputation you can use "nofollow" tag. Setting the value of "rel" attribute of a link to "nofollow" will tell Google that certain links on your site shouldn't be followed page's reputation to the page linked to. "nofollow" tag mainly useful for linking sponsored links and links on comments. It can be implemented as <a href="www.mysite.com" rel="nofollow"> Mysite </a>


    SEO Tip- 32: Use canonicalization for duplicate URL


    Your single page may have more than one versions of URL representations. For example you may have the following types of duplicate URLs.

    http://www.example.com

    http://example.com

    http://www.example.com/index.html

    http://example.com/index.html

    So canonicalization is the process of converting data in a standard representation. It helps if you want to avoid duplicate page on your site. Canonicalization can be done by using "canonical" in rel attribute on the link tag. It can be implemented as: <link href="http://www.example.com/" rel="canonical" />


    SEO Tip- 33: Find competitor's back-links and try to use them


    Creating high quality backlinks from targeted websites helps to grow your page rank and number of website visitors. To stay in competition with your competitors you have to use the quality backlinks made by your competitors. You can gate your competitors backlinks by using alexa backlinks information or by using any of the backlink checker tools.


    SEO Tip- 34: Use social bookmarking sites to create back-links


    Social bookmarking sites are used for bookmarking your favorite, and useful links from the web and sharing them on public. You can use these services to bookmark your sites important links on public. While using these services, do not submit your links only on aggressively, they may band your account for such works. So it is better to share important links only and share other link from the web also.

    For the list of social bookmarking sites visit: The list of social bookmarking sites


    SEO Tip- 35: Share your links through social networking sites


    Now a days social networking sites are most popular, most of the internet users uses social networking sites like Facebook, Twitter, Google+etc. for sharing their status, photos, videos, files and links. So promoting your site through these sites may be most advantageous to their users. You can share to your friends and subscribers from your own accounts and you can also asked the visitors to share by placing social sharing button on your site.


    SEO Tip- 36: Use Google alerts for link building

     

    You can set up Google alerts for tracking the search results in any search terms. This tool will monitor Google results with predefined search terms and then email to you on the daily basis. You can find out high quality websites from Google alerts in the search terms related to your website and can request for link or can do guest posting or can submit comments on them.


    SEO Tip- 37: Use Google+ authorship for Google search results


    Adding Google+ authorship to your website can increase your websites rank on Google search results. You can add Google+ authorship by linking your content to your Google+ profile i.e. <a href="[profile url]" rel="author"> Google </a> and linking back to your site from contributor section of your Google+ profile.

    For more detail visit: Link your Google+ profile to the content you create


    SEO Tip- 38: Do forum posting on related topics


    Forum posting can also help to build links to other site. You can search for related terms or the questions asked by others about your topic and answer that by signing up on them. So find some forums that mainly focus related on your website. You can find out the forum posting and threads by using any forum search engines.

    For the the list of Top forums visit: List of Top Forms


    SEO Tip- 39: Write guest post on related top blogs


    Guest posting on the top blog related to your websites topic is another method of promoting your website. You can post articles by writing yourself or can ask the blog owner to write a sponsored post. It not only increase the reputation, also helps to create quality back-links. You can find out list of top blog related to your term by using any of the blog search engines.


    SEO Tip- 40: Optimize for local search results


    While optimizing your website for the search engines, you don't have to forget about local search rankings. Local search results are very important for national competition. So specialize your contents for specific city, area or country. Also write reviews about your business location in your city on Google map. Anyone can find out about your business on the local search results.


    الخميس، 5 سبتمبر 2013

    Best 10 SEO Sites for SEO Tools and Tips


    English: seo block
    English: seo block (Photo credit: Wikipedia)
    Almost all of the website traffic came from search engines. Any website can be succeeded only when it is appeared on top of search result of major search engines like Google, Bing, Yahoo etc. SEO is the most important for optimizing any website or blog. SEO helps your site or blog to be appear on the top of search result for their keywords. For its successful implementation, it is necessary to understand about best search engine optimization tips and tools. I have listed here some websites which are on the top list for providing SEO Tools, Tips and Training.



    Best 10 SEO Sites for SEO Tools and Tips


    # Majestic seo.com:


    Majesticseo.com is one of the Top 10 SEO leading site. It provides lots of tools and plugins for effective optimization of any website and to establish them as a leader for their keywords. The 'site explorer' tool explores the url or domain in a way to find out great detail about that url. Keyword checker is another great tool provided by the site, which searches the keywords for their frequency and search volume on the internet. Its comparetor tool can compare up to five sites with great detail. It also provides best plugins for Chrome and Firefox to directly find out visited site from the browser.


    # Link assistant.com:


    It provides a complete set of all in one full set software application for free as well as pro services. It may be the worlds no. 1 SEO software with full power of Google and other major search engines top ranking. The different applications provided by link assistant are 'Rank Tracker' for keyword research and rank tracking, 'Website Auditor' for structure and content optimization, 'SEO SpyGlass' for finding out your competitors back-link and 'Link Assistant' for all link management task like creating link directory, establishing link etc. It also provides another powerful tool for social medial management called 'BuzzBundle' which can find out demands for any topic and keyword on different social media sites, forums and blogs.


    # Moz.com:


    It is the topmost site for SEO Tools and and services, which was established on 2004 as the name of seomoz.org and came into this stage by improving and introducing new tools and techniques as the time goes. Moz provides different types of free and paid tools for better and effective SEO. Get listed tool, Follower-wonk tool, Open Site Explorer, Mozbar and Mozcast are the free tools and Mentions tool, Search Engine Ranking Tool, Keyword Optimization tool and Keyword Difficulty tool are the paid tools provided by Moz. The free SEO tools provides basic services and paid tools provides advanced and complicated services.



    # reventools.com:


    It is also the best SEO site among the other sites. It provides lots of tools for the complete and most effective SEO. The tools provided by reventools are Site Auditor Tool, Keyword Ranking Tool, Link Management Tool, Keyword Manager Tool, Backlink Explorer and many more. It integrates data collecting from Moz , MajesticSEO and Google Adword and also provides your keyword ranking on Google and Bing. The Backlink Tool creates valuable links and manages them effectively. The keyword and competitor manager tool manages your and competitors keyword. A free 30 day trial option also available, where you can find out great detail about it and can use the tools on free during the trial period.


    # Semrush.com:


    It is also another great tool for SEO and advertising research. You can check the position of your site for organic search and also for the advertising research, your position changes and about your competitors. You can also check your websites back-links by domain and sub-domain. It is also best for keyword analysis, you can get advanced report about your websites organic keywords, ads keywords, competitors in organic search, competitors in ads and also about publisher and advertisers. You can use almost all the tool even in the free version with limitations.


    # Webceo.com:


    It was founded on 1992 as the name of Radiocom and when it becomes a top international leader on SEO, changed to Webceo in 2000. Mainly it provides two platform, one is cloud - based software, which can be accessed on browser and another is windows - based software, where you can use the tools on the limit. The different tools that can be used as a free user are site auditor tool - to examine your site, keyword tool - to find out the more related keywords for a given keyword, back-link checker tool, submission tool, rank checker tool, buzz tracker tool and so more.



    # Smallseotools.com:


    Smallseotools.com is better for free online SEO tools. It is the newest and fastest growing site for seo tools. It provides different types of tools to optimize your website effectively. The tools provided by it are page rank checker, back-link checker, keyword density checker, keyword position checker, search engine pingler and many more.


    # Seobook.com:


    It is one of the Top 10 site for SEO Tips, Training and Tools. It is specially best for great SEO Tips and Training and also provides lots of free tools. The tools provided by seobook are SEO Toolbar for Firefox, Keyword suggestion tool, Rank checker tool and other premium SEO Tools. You can sign up here for free and can receive hundreds of tools and training on free.


    # Seochat.com:



    It is the must popular and useful site for discussions about search engine optimization. It is very helpful for the beginners and also for professionals for improving their SEO knowledge. You can join on this forum with free for charge to view the discussions and to ask any question relating to SEO. The most popular terms discussing on this forums are Google Search Optimization, Bing Search Optimization, Social Media, Google Page Rank and many more. Lots of of seo tools are available here, you can use them on free. Google back-link checker tool, Google keyword suggestion tool, Page speed test tool etc. are the most important tools provided by seochat.


    # Seo.com:



    It is also the best 10 seo site for better seo tools and tips. It gives different services like keyword research, competitive analysis of your site, link building, local seo, mobile seo, video seo and so on. It also provides free and instant report of your website. But it does not provide direct tools for simple seo as well as site analysis, link checking and keyword research. It is better for professional services.

    الجمعة، 30 أغسطس 2013

    How To Set Up Facebook Like Button in a Blogger?

    Facebook Like Button

    In this tutorial you can get simple steps for How to set up a Facebook Like Button on your bloggers blog. By adding this on your blog you get more likes for your Facebook Fan Page from the visitors of your blog. It can help to get more likes and to share your post updates to your subscribers. You can pull your Facebook Page subscribers to your blog and can increase your blogs page views, as a result you can be more benefited from your blog.

    If you want to place Facebook Like Box / Fan Box instead of like button you can visit: How To Set Up Facebook Like Box in a Blog?

    By adding Facebook Like Button your blog readers can
    • See how many users already liked your Facebook Page.
    • Directly like your Page without going to the Page.
    • See some faces of the friends who already liked your blog if you activated that.



    Steps to be followed To Set Up Facebook Like Box in a Blog


    1. Get your Facebook Page URL at first.

    facebook-page-url

    • Visit Facebook and go to your page
    • Copy the URL from the Address bar on the clipboard.

    2. Configure the setting for your Like Box.

    facebook-like-box-config

    • At first go to Facebook Developers Page.
    • Paste the copied URL on the Facebook Page URL Text box.
    • Change width,  layout style, font, color scheme as you like or as matches to your blog.
    • Check or Uncheck on the Send button check box to show or hide Send button.
    • Check or Uncheck on the Show faces check box to show or hide the faces.
    • At last click on Get code button. You can see the code like below from HTML 5 tab.
    facebook-like-box-code


    3. Add Code on the Blogger widget.


    add gadget on blog


    • At first go to your blogger dashboard Layout option.
    • Click on Add Gadget option.
    • Choose HTML/JavaScript option.
    • Paste HTML code and click on save and view your blog.

    الخميس، 29 أغسطس 2013

    How To Set Up Facebook Like Box in a Blog?


    In this tutorial you can get know about How to set up a Facebook Like Box or Fan Box on your blog. By adding this on your blog you share your Facebook Fan Page to get more likes and to share your post updates to your subscribers. You can pull your Facebook Page subscribers to your blog and can increase your blogs page views, as a result you can be more benefited from your blog.

    If you want to set up Facebook like Button instead of like Box you can visit: How To Set Up Facebook Like Button in a Blogger?


    By adding Facebook Like Box or Fan Box your blog readers can
    • See how many users already liked your Facebook Page.
    • Directly like your Page without going to the Page.
    • See some faces of the friends who already liked your blog if you activated that.
    • See recent post on your page if your activated that.


    Steps to be followed To Set Up Facebook Like Box in a Blog


    1. Get your Facebook Page URL at first.


    Facebook page URL


    • Visit Facebook and go to your page
    • Copy the URL from the Address bar on the clipboard.

    2. Configure the setting for your Like Box.


    Facebook page configuration


    • At first go to Facebook Developers Page.
    • Paste the copied URL on the Facebook Page URL Text box.
    • Change width, height, and color schema as you like or as matches to your blog.
    • Check or Uncheck on the Show header check box to show or hide the header.
    • Check or Uncheck on the Show faces check box to show or hide the faces.
    • Check or Uncheck on the Show stream check box to show or hide the recent post on the page.
    • Check or Uncheck on the Show border check box to show or hide the border of the box.
    • At last click on Get code button. You can see the code like below from HTML 5 tab.
    Facebook like box code


    3. Add Code on the Blogger widget.


    add gadget on blog


    • At first go to your blogger dashboard Layout option.
    • Click on Add Gadget option.
    • Choose HTML/JavaScript option.
    • Paste HTML code and click on save and view your blog.

    السبت، 18 مايو 2013

    How to Optimize Images for Web Using Photoshop and ImageReady?

    Image Optimization
    Using optimized images on your website or blog is most necessary thing for both loading speed and quality. The size of optimized images are very small than the original images, so it can decrease the weight of your site drastically. 

    There are lots of free as well as paid websites for providing service of image optimization on online. You can also use some special applications for optimizing images by downloading from web. But today, I am going to tell about a best offline method using well known applications Adobe Photoshop and ImageReady. 

    To Optimize Images Using Adobe Photoshop 


    It is well known that Adobe Photoshop is the most popular Photo editing Software. Along with editing you can save images as optimize for web by using the following steps. 

    1. At first open an image using Adobe Photoshop program and redesign or edit that using appropriate tools. 

    2. After that go to file menu and click on save for web option. 

    3. In the new window select Optimized or 2-up or 4-up tab to preview optimized images. Select the image having required format and quality and click on save. 

    optimizing image using photoshop

    To Optimize Images Using Adobe ImageReady 


    Adobe ImageReady is the application specially for designing images for web. You can create different size of banners image in the number of formats like '.jpeg', '.gif', '.png' etc. To save your designed image as optimized for web, you can use the following steps. 

    1. At first open an image using Adobe ImageReady program and redesign or edit that using appropriate tools. 

    2. Select the required file format and quality from the palate. 

    3. After that go to file menu and click on save optimized as option. 

    4. Click on save after giving filename. 

    If you have such any other tips for optimizing images for web and if you have any comments about this post you can mention this on the comment session of this blog. I will always welcome to you

    Best Blog Post Optimization Tips for Blogger

    boggger tips
    You can optimize your blog post or whole your blog by following the some very simple steps which may not know most of the bloggers. Today I am going to tell you very simple and easy tips but which are very important for fulfillment of your dream of creating quality blog. These tips also help for making your blog more visible on search engines.
     

    Tip-1: Insert image 'alt' and 'title' attribute in your blog post?


    It is necessary to insert image 'alt' and 'title' attribute in your blog post for better search engine optimization (SEO) and blogs quality. If you placed 'alt' and 'title' attribute in your post images, it will increases the visibility of your image on search engines. If your blogs image appeared on the 'image search result', user also goes to your blog which can directly increase your blogs traffic. Here I have explained the easiest methods to insert 'alt' and 'title' attribute of image in the blog post.

    Steps for Inserting image 'alt' and 'title' attribute


    # Place the cursor on the required place in a new post, where you want to insert image. Then click on image     icon, browse the desired image and click on Add.


    # After inserting image on the post, single click over the image and click on the properties option.


    # Then a pop up window will appear. Write desired 'alt' text and 'title' on the respective input boxes.

    Tip-2: Deactivate Showcase Images with Light box


    When you clicked on your images on your posts, your images will open in an overlay on top of your blog. If your post has multiple images, they will appear as thumbnails along the bottom. If you activated this feature, if visitor of your blog clicked on the image, it will appear on light box with appearing your blog on the background; it may bring bad user experience. So you can deactivate this feature by using the following easy steps.

     # At first click on the setting tab from the dashboard of the blog and click on Posts and comments option.

    # Go to Showcase images with Lightbox option and choose the option 'No' from the drop down menu.

    # Click on save setting button.

    If you have such any other tips for optimizing the blog and its post and if you have any comments about this post you can mention this on the comment session of this blog. I will always welcome to you.

    You may also wanted to view the following related posts

    Tags: Link Building  creating quality backlinks  keyword research tools Blogging Tips

    الجمعة، 17 مايو 2013

    How to add Feedburner's icon and e-mail subscription box?


    google feedburner
    After registering and setting up feedburner's account you can place email-subscription box to help your blog readers to subscribe your blog post and to update instantly and reader icon to subscribe for different readers like My Yahoo, Newsgator Bloglines etc. You can make easier to subscribe your blog post for your users by placing HTML codes provided by feedburner.

    How to place feedburner email subscription box on your blog



    # At first login to your feedburner account. And go to publicize tab.

    # And then click on Email Subscriptions option as shown in image below.

    feedburner email activation


    # Click on on Activate button. 

    # Copy the given code under subscription management option shown as in the image below and place this on the required place on your blog. OR  You can place it directly by selecting your blog service provider and clicking on Go button.

    feedburner email subscription



    How to place feedburner reader icon on your blog


    # At first login to your feedburner account. And go to publicize tab.

    # And then click on Chicklet Chooser option as shown in image below.

    feedburner chicklet chooser


    # And then Click on subscribe on reader option.

    # Copy the given code and place this on the required place on your blog. 


    You may also wanted to view the following related posts

    Tags: Link Building  creating quality backlinks  keyword research tools .edu forums or sites

    How To Setup Google Feedburner Feed To Your Blog ?


    Setup Google Feedburner Feed
    Google Feedburner is the best and free to use service to subscribe your blog posts by your blog users. It is the best option for marketing your blog post and informing about your latest post on the blog. It makes easy to update content updates My Yahoo, News-gator  Bloglines and other more. Your content was delivered automatically via web portal, news reader, e-mail etc. It is also possible for site content can be packaged into widgets, gadgets, mobile device, postcard and other news headlines.


    How to Setup Google Feed burner Feed to Your Blog? 



    Here are the steps to Setup Google Feed burner Feed to your blog.


    # At first register to Google Feed burner.


    You can register on it, by logging on using Google account.

    Click Here To Register To Google Feed burner

    Click on the Claim your feeds now button shown in image below.

    Feed-burner Feed


    On the next page you can move your feed burner feed if you are already using feed burner by log in into it, using feed burner's user and password or you can skip this step if you don't want.

    Type blog or feed address on the box and click on next. If your blog have both Atom and Rss feed, you can select any one of them on the next screen. Edit your feed title and address if you want.


    # Optimize your Feed using different services.



    You can optimize more your feed using different services like Smart Cast, Smart Feed and Feed flare. Smart Cast service link to MP3s, videos, images, and other digital media in your site content and creates enclosures for them automatically. Smart Feed translates your feed on-the-fly into a format (RSS or Atom) compatible with your visitors' feed reader application. Feed Flare places a simple footer at the bottom of each content item, helping you to distribute, inform and create a community around your content. You can link the feed of flicker or Buzznet photos feed on it.


    # Publicize your Feed to your or others site or blog.



    You can publicize your Feed by using different services like Headline Animator, Buzz bust, Email Subscription, Ping Shot, Feed Count etc. By using Headline Animator you can animate your posts headline on your blog or other blog or site by placing the HTML code. Buzz bust helps you to promote your post by publishing your feeds by placing HTML code on other places. Ping Shot automatically checks for updates from your blog on its own time. You can also place Email subscription box on your blog by acquiring codes from here and Feed count graphic to show your subscribed users. Additionally you can publish your blog posts on social media like Twitter by linking your Twitter account and activating it, by using Socialize tab. You can also place your favorite icon to help users easily subscribe to your feed by using Chicklet Chooser.


    You may also visit 

    # Redirect your default feed to the Feedburner Feed. 


    After successfully setting up your Feed you can redirect your default feeds to the Feed burner Feed.


    How to redirect blogger's default feed to the Feedburner Feed?



      1. At first go to your blogger account dashboard and click on settings tab.
      2. Paste your feed burners URL on  post feed redirect  URL box under the other tab.