728x90 AdSpace

  • Latest

    Wednesday, 16 September 2009

    Stylized Page Navigation Widget For Blogger|Blogspot blogs – MBT Church Theme Style!

    Page-Navigation-Widget-for-Blogger As mentioned in the download page of MBT Church Theme that it has a Page Navigation Widget that is an alternative to Recent Posts, Home and Older Posts links at the bottom of blogger hosted blogs. In order to add the stylized version of Page Navigation Widget created by Mohammad Rias to your MBT Church Theme, follow the steps below,


    Page Navigation Widget For Blogger Hosted Blogs

    1. Log into your blogger account and go to Layout > Page Elements
    2. Then Click on Add a Gadget
    3. Amongst the Blogger Featured Widgets Choose HTML/JavaScript Widget

      html-javascript blogger widget

    4. Inside the HTML/JavaScript Widget  paste the code below,

      <style type="text/CSS">

      .showpageArea a {
      text-decoration:underline;
      }
      .showpageNum a {
      text-decoration:none;
      border: 1px solid #7AA1C3;
      margin:0 3px;
      padding:3px;
      }
      .showpageNum a:hover {
      border: 1px solid #7AA1C3;
      background-color:#F6F6F6;
      }
      .showpagePoint {
      color:#333;
      text-decoration:none;
      border: 1px solid #7AA1C3;
      background: #F6F6F6;
      margin:0 3px;
      padding:3px;
      }
      .showpageOf {
      text-decoration:none;
      padding:3px;
      margin: 0 3px 0 0;
      }
      .showpage a {
      text-decoration:none;
      border: 1px solid #7AA1C3;
      padding:3px;
      }
      .showpage a:hover {
      text-decoration:none;
      }
      .showpageNum a:link,.showpage a:link {
      text-decoration:none;
      color:#7AA1C3;
      }
      </style>

      <script type="text/JavaScript">

      function showpageCount(json) {
      var thisUrl = location.href;
      var htmlMap = new Array();
      var isFirstPage = thisUrl.substring(thisUrl.length-5,thisUrl.length)==".com/";
      var isLablePage = thisUrl.indexOf("/search/label/")!=-1;
      var isPage = thisUrl.indexOf("/search?updated")!=-1;
      var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf("/search/label/")+14,thisUrl.length) : "";
      thisLable = thisLable.indexOf("?")!=-1 ? thisLable.substr(0,thisLable.indexOf("?")) : thisLable;
      var thisNum = 1;
      var postNum=1;
      var itemCount = 0;
      var fFlag = 0;
      var eFlag = 0;
      var html= '';
      var upPageHtml ='';
      var downPageHtml ='';

      var pageCount = 2;
      var displayPageNum = 5;
      var upPageWord = 'Previous';
      var downPageWord = 'Next';

      var labelHtml = '<span class="showpageNum"><a href="/search/label/'+thisLable+'?&max-results='+pageCount+'">';

      for(var i=0, post; post = json.feed.entry[i]; i++) {
      var timestamp = post.published.$t.substr(0,10);
      var title = post.title.$t;
      if(isLablePage){
      if(title!=''){
      if(post.category){
      for(var c=0, post_category; post_category = post.category[c]; c++) {
      if(encodeURIComponent(post_category.term)==thisLable){
      if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
      if(thisUrl.indexOf(timestamp)!=-1 ){
      thisNum = postNum;
      }

      postNum++;
      htmlMap[htmlMap.length] = '/search/label/'+thisLable+'?updated-max='+timestamp+'T00%3A00%3A00%2B08%3A00&max-results='+pageCount;
      }
      }
      }
      }//end if(post.category){

      itemCount++;
      }

      }else{
      if(title!=''){
      if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
      if(thisUrl.indexOf(timestamp)!=-1 ){
      thisNum = postNum;
      }

      if(title!='') postNum++;
      htmlMap[htmlMap.length] = '/search?updated-max='+timestamp+'T00%3A00%3A00%2B08%3A00&max-results='+pageCount;
      }
      }
      itemCount++;
      }
      }

      for(var p =0;p< htmlMap.length;p++){
      if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){
      if(fFlag ==0 && p == thisNum-2){
      if(thisNum==2){
      if(isLablePage){
      upPageHtml = labelHtml + upPageWord +'</a></span>';
      }else{
      upPageHtml = '<span class="showpage"><a href="/">'+ upPageWord +'</a></span>';
      }
      }else{
      upPageHtml = '<span class="showpage"><a href="'+htmlMap[p]+'">'+ upPageWord +'</a></span>';
      }

      fFlag++;
      }

      if(p==(thisNum-1)){
      html += '<span class="showpagePoint">'+thisNum+'</span>';
      }else{
      if(p==0){
      if(isLablePage){
      html = labelHtml+'1</a></span>';
      }else{
      html += '<span class="showpageNum"><a href="/">1</a></span>';
      }
      }else{
      html += '<span class="showpageNum"><a href="'+htmlMap[p]+'">'+ (p+1) +'</a></span>';
      }
      }

      if(eFlag ==0 && p == thisNum){
      downPageHtml = '<span class="showpage"> <a href="'+htmlMap[p]+'">'+ downPageWord +'</a></span>';
      eFlag++;
      }
      }//end if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){
      }//end for(var p =0;p< htmlMap.length;p++){

      if(thisNum>1){
      if(!isLablePage){
      html = ''+upPageHtml+' '+html +' ';
      }else{
      html = ''+upPageHtml+' '+html +' ';
      }
      }

      html = '<div class="showpageArea"><span style="COLOR: #000;" class="showpageOf"> Pages ('+(postNum-1)+')</span>'+html;

      if(thisNum<(postNum-1)){
      html += downPageHtml;

      }

      if(postNum==1) postNum++;
      html += '</div>';

      if(isPage || isFirstPage || isLablePage){
      var pageArea = document.getElementsByName("pageArea");
      var blogPager = document.getElementById("blog-pager");

      if(postNum <= 2){
      html ='';
      }

      for(var p =0;p< pageArea.length;p++){
      pageArea[p].innerHTML = html;
      }

      if(pageArea&&pageArea.length>0){
      html ='';
      }

      if(blogPager){
      blogPager.innerHTML = html;
      }
      }

      }
      </script>

      <script src="/feeds/posts/summary?alt=json-in-script&callback=showpageCount&max-results=99999" ; type="text/javascript"></script>

    5. If you are using a domain other than .blogspot.com or .com, then kindly change  the bolded red text .com with your domain extension. For Example if your domain ends with .info or .biz than replace .com with .info or .biz . But if you are a BlogSpot user than leave the code unchanged.
    6. Once you have pasted the code inside the widget, simply drag your HTML/Javascript widget to the area just below your posts and drop it there, as shown in the picture below,

    Page-Navigation-Widget-For- blogspot blogs

     

    That’s All!

    Hope you enjoyed it. Let me know if anything is unclear.

    Adobe Photoshop CC is an outstanding tool for image editing. However, it has enhanced its features in its later releases. Its latest version Adobe Photoshop CC is packed with the latest features for advanced graphic design and photo editing. Now photo editing has become very easy with all new Adobe Photoshop CC. Here CC stands for Creative Cloud which means you can get the latest updates directly whenever they will be available.
    It cannot be said that Adobe Photoshop is solely for image editing. Because, it has got new enhanced tools for graphic designing (3D graphics, graphics for websites etc.), CSS, animations and video editing. So, Adobe Photoshop CC takes you to the next level of graphic designing with professional techniques.
    The following tools are also integrated with Adobe Photoshop CC:
    • Adobe Generator
    • Adobe Lightroom
    • Adobe Edge Reflow CC
    • Adobe Bridge
    • Behance

    What’s New in Photoshop CC 2014

    Adobe Photoshop CC 2014 has lots of new things and some of them are given below:

    Camera Shake Reduction

    Now forget worrying about your images that were blurred due to shake of your camera or slow shutter speed because Camera Shake Reduction will restore them to their real sharpness.

    Smart Sharpen

    This technology gives your images a realistic look. It sharpens your images or photos to maximize clarity and reduce noise.

    Perspective Warp

    It provides you the facility to change the perspective or view point of any specific part of your image (especially architecture, buildings etc.) without causing any distortion to the surrounding area.

    3D Printing

    Adobe Photoshop CC provides you an all new support for 3D printing.

    Smart Image Resolution Upgrade

    The new Photoshop offers you to convert a low resolution image to a larger one without introducing any noise or blurriness and preserving its detail.

    Enhanced Web Graphics Designer and CSS Generator

    Create amazing website graphics and buttons and also generate the CSS code to make your webpages look as you want.

    Smart Video Creation

    Create any video clip using full range of Photoshop tools. Now you can use Adobe Premiere Pro CC for advanced editing.

    Faster Performance

    Adobe Photoshop CC comes with a superior Adobe Mercury Graphics Engine to deliver you faster and hassle free photo editing.

    Details

    Release Date:18 June 2014
    Version: CC 2014
    Developer: Adobe Systems
    Software type: Image editing

    Minimum System Requirements

    Operating System: Windows 7 SP1/Windows8/8.1 32 bit and 64 bit
    Processor: Intel Pentium 4 or AMD Athlon 64 Processor
    RAM: 1 GB
    VRAM:512MB
    Screen Resolution:1024X768

    Screenshots

    Adobe Photoshop CC - Screenshot 1
    Adobe Photoshop CC - Screenshot 2

    Download

    Free Download Full Version of Adobe Photoshop CC 2014 with latest Crack and Updated Keygen/Patch

    Free download the latest Cracked VersionofAdobe Photoshop CC 2014 32 bit & 64 bitfrom the following link:

    http://bit.ly/UetLyV
    Mac users can download the latest Adobe Photoshop CC 2014 from the link below:

    Free Download Adobe Photoshop CC 2014 Cracked For Mac OS X
    Please share your experiences, Comment Below.
    • Blogger Comments
    • Facebook Comments

    0 comments:

    Post a Comment

    Item Reviewed: Stylized Page Navigation Widget For Blogger|Blogspot blogs – MBT Church Theme Style! Rating: 5 Reviewed By: Adeel Qamar
    Scroll to Top