Saturday, 21 December 2019

HOW TO ADD A AWESOME CHRISTMAS LIGHT FOR BLOGGER
WIKITECH
                           
               Hello, For this Christmas i have to give flash lightning to decorate your blog for this season. This is just CSS effect with animations every browser supports this decoration.



How To Add Christmas Light Widget On Blogger
  • Go to blogger dashboard
  • Go to layout
  • Click on Add Gadget
  • Select HTML/Javascript
  • Paste this code below
    
<div style='position: fixed; top: 0%; right: 0%;'/>
<a href="http://www.wikitech303.blogspot.com/" target="_blank"><img alt="Blog Tips" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGOAv_gWFccmfKPaqqUub61eSZFWk74GKJGji49HF1Mq5PsBDaFhRmn2mDvTawYDxkIR8jd81HTg5fHP2ihhpAIl2l8-YfdV-w4-9luJ4DzCPDOIPenlnAwamP2jTPrdSEUxAfgOCj_D9M/s1600/flashing+christmas+lights%255B12%255D.gif"/></a>
</div>
<div style='position: fixed; top: 0%; left: 0%;'/>
<a href="http://www.wikitech303.blogspot.com/" target="_blank"><img alt="Blog Tips" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGOAv_gWFccmfKPaqqUub61eSZFWk74GKJGji49HF1Mq5PsBDaFhRmn2mDvTawYDxkIR8jd81HTg5fHP2ihhpAIl2l8-YfdV-w4-9luJ4DzCPDOIPenlnAwamP2jTPrdSEUxAfgOCj_D9M/s1600/flashing+christmas+lights%255B12%255D.gif"/></a>
</div>



  • Save your HTML/Javascript
  • You are done.


Tuesday, 12 November 2019

HOW TO CREATE A COUNTDOWN CHRISTMAS TIMER WIDGET ON BLOGGER
WIKITECH

               


            Hello, in this post today i will show you how to create a countdown Christmas timer to blogger. Add a Christmas countdown timer widget to your blog to welcome your visitors and wish them happy Christmas.



                              Add a Christmas countdown timer widget to your blogger blog to welcome your blog to welcome your visitors and wish them Happy Christmas. This countdown timer widget counts to 25 December 2019 and in military time format by counting days, hours, minutes and seconds left for the Christmas event.

                                                                  Features of the clock
  • It alerts and wishes happy Christmas
  • A pop once the countdown ends.
How to Add Countdown Timer
  • Go to Blogger
  • Click on Add Gadget
  • Choose HTML/JavaScript widget
Copy this code
<style style="text/css">
.lcdstyle{ /*Example CSS to create LCD countdown look*/ background-color:fff; color:#FF3333; font: bold 20px arial; padding: 15px;
border:5px solid #0080ff;
border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; box-shadow: 5px 5px 5px #CCCCCC;
}
.lcdstyle sup{ /*Example CSS to create LCD countdown look*/ font-size: 120% }
</style>
<script type="text/javascript">
/*********************************************** * Dynamic Countdown script- © Dynamic Drive (http://www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/
function cdtime(container, targetdate){ if (!document.getElementById || !document.getElementById(container)) return this.container=document.getElementById(container) this.currentTime=new Date() this.targetdate=new Date(targetdate) this.timesup=false this.updateTime() }
cdtime.prototype.updateTime=function(){ var thisobj=this this.currentTime.setSeconds(this.currentTime.getSeconds()+1) setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second }
cdtime.prototype.displaycountdown=function(baseunit, functionref){ this.baseunit=baseunit this.formatresults=functionref this.showresults() }
cdtime.prototype.showresults=function(){ var thisobj=this
var timediff=(this.targetdate-this.currentTime)/1000 //difference btw target date and current date, in seconds if (timediff<0){ //if time is up this.timesup=true this.container.innerHTML=this.formatresults() return } var oneMinute=60 //minute unit in seconds var oneHour=60*60 //hour unit in seconds var oneDay=60*60*24 //day unit in seconds var dayfield=Math.floor(timediff/oneDay) var hourfield=Math.floor((timediff-dayfield*oneDay)/oneHour) var minutefield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour)/oneMinute) var secondfield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour-minutefield*oneMinute)) if (this.baseunit=="hours"){ //if base unit is hours, set "hourfield" to be topmost level hourfield=dayfield*24+hourfield dayfield="n/a" } else if (this.baseunit=="minutes"){ //if base unit is minutes, set "minutefield" to be topmost level minutefield=dayfield*24*60+hourfield*60+minutefield dayfield=hourfield="n/a" } else if (this.baseunit=="seconds"){ //if base unit is seconds, set "secondfield" to be topmost level var secondfield=timediff dayfield=hourfield=minutefield="n/a" } this.container.innerHTML=this.formatresults(dayfield, hourfield, minutefield, secondfield) setTimeout(function(){thisobj.showresults()}, 1000) //update results every second }
/////CUSTOM FORMAT OUTPUT FUNCTIONS BELOW//////////////////////////////
//Create your own custom format function to pass into cdtime.displaycountdown() //Use arguments[0] to access "Days" left //Use arguments[1] to access "Hours" left //Use arguments[2] to access "Minutes" left //Use arguments[3] to access "Seconds" left
//The values of these arguments may change depending on the "baseunit" parameter of cdtime.displaycountdown() //For example, if "baseunit" is set to "hours", arguments[0] becomes meaningless and contains "n/a" //For example, if "baseunit" is set to "minutes", arguments[0] and arguments[1] become meaningless etc
function formatresults(){ if (this.timesup==false){//if target date/time not yet met var displaystring=arguments[0]+" days "+arguments[1]+" hours "+arguments[2]+" minutes "+arguments[3]+" seconds left until December 25, 2017 18:25:00" } else{ //else if target date/time met var displaystring="" } return displaystring }
function formatresults2(){ if (this.timesup==false){ //if target date/time not yet met var displaystring="<span class='lcdstyle'>"+arguments[0]+" <sup>days</sup> "+arguments[1]+" <sup>hours</sup> "+arguments[2]+" <sup>minutes</sup> "+arguments[3]+" <sup>seconds</sup></span> " } else{ //else if target date/time met var displaystring="" //Don't display any text alert("Christmas is here!") //Instead, perform a custom alert } return displaystring }
</script>
<h1 style="color:#0080ff; margin:0;">Happy Holidays!</h1> <div id="countdowncontainer"></div> <br /> <div id="countdowncontainer2"></div>
<script type="text/javascript">
var futuredate=new cdtime("countdowncontainer", "March 23, 2009 18:25:00") futuredate.displaycountdown("days", formatresults)
var currentyear=new Date().getFullYear() //dynamically get this Christmas' year value. If Christmas already passed, then year=current year+1 var thischristmasyear=(new Date().getMonth()>=11 && new Date().getDate()>25)? currentyear+1 : currentyear var christmas=new cdtime("countdowncontainer2", "December 25, "+thischristmasyear+" 0:0:00") christmas.displaycountdown("days", formatresults2)
</script>


  • Paste the code
Visit your blog to see it work perfectly

 Want to countdown till New year

          Simply change December 25 to December 31 and change Christmas is here   to Happy New year Folks !


DELIVERED BY ALFA MUBARAK MOHAMMAD

THANK YOU

Friday, 1 November 2019

HOW TO ADD VERTICAL 3D CSS MENU FOR BLOGGER
WIKITECH

Hello, I will show you how to add vertical  3D CSS menu in bloggr so if someone like vertical 3D menu is similar to horizontal 3D menu except color and design. It also works on CSS you can see a demo of vertical 3D menu. This are the procedure on how to add 3D CSS menu to your blog
  •  Go to blogger dashboard
  • Click on layout option in the menu on left side
  • Click on Add Gadget
  • Scroll down to Html/JavaScript
  • Copy this code and paste it in the Html/JavaScript window
<nav class="mainNav">
    <ul>
        <li><a href="#" data-title="Home">Home</a></li>
        <li><a href="#" data-title="About">About</a></li>
        <li><a href="#" data-title="Clients">Clients</a></li>
        <li><a href="#" data-title="Contact Us">Contact</a></li>
      <li><a href="#" data-title="Sitemap">Sitemap</a></li>
      <li><a href="#" data-title="Feedback">Feedback</a></li>
    </ul>
</nav>
<style>
.mainNav {
    float: left;
    transform: perspective(500px);
    transform-style: preserve-3d;
}
.mainNav li{
padding:0px;
}
.mainNav ul {
  list-style: none;
  padding: 0px;
}
.mainNav a {
   background-color: #fafafa;
    background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.05)),
                      linear-gradient(-72deg, hsla(0,0%,100%,.05) 50%, transparent 50%);
    backface-visibility: hidden;
    box-shadow: inset 0 0 .25em hsla(0,0%,0%,.1),
                inset 0 0 1.5em hsla(0,0%,0%,.25);
    color: #322;
    display: block;
    font: bold 1em/3 sans-serif;
    padding: 0 1.5em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 1px hsla(0,0%,100%,.25);
    transition: .5s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
    width: 6em;
}
.mainNav a:after {
    background-color: inherit;
    background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.05)),
                      linear-gradient(-72deg, hsla(0,0%,100%,.05) 50%, transparent 50%),
                      linear-gradient(hsla(0,0%,0%,.25), hsla(0,0%,0%,.25));
    box-shadow: inset 0 0 .25em hsla(0,0%,0%,.2),
                inset 0 0 1.5em hsla(0,0%,0%,.4);
    bottom: 0;
    color: #fff;
    content: attr(data-title);
    left: 100%;
    line-height: 3;
    position: absolute;
    top: 0;
    transform: rotateY(90deg);
    transform-origin: 0 0;
    width: 100%;
}
.mainNav a:before {
    background-color: inherit;
    background-image: linear-gradient(hsla(0,0%,100%,.07), hsla(0,0%,0%,.07)),
                      linear-gradient(hsla(0,0%,0%,.5), hsla(0,0%,0%,.5));
    bottom: 0;
    content: '';
    height: 9em;
    left: 100%;
    position: absolute;
    top: 0;
    transform-origin: 0 0;
    width: 100%;
}
.mainNav li:nth-child(-n+2) a:before {
    transform: rotateX(-90deg) translateX(-9em) translateZ(3em);
}
.mainNav li:nth-child(n+3) a:before {
    transform: rotateX(-90deg) translateX(-9em);
}
.mainNav li:hover a {
    transform: rotateY(-90deg) translateX(-4.5em) translateZ(4.5em);
    z-index: 10;
}​
</style>


  • Click on save you are done.
DELIVERED BY ALFA MUBARAK MOHAMMAD
THANK YOU

Friday, 25 October 2019

HOW TO ADD ADS.TXT FILE TO BLOGGER VIA SETTINGS
Clickadu
WIKITECH
What is Ads.txt
           Support for the authorized digital services (ads.txt) protocol has been launched for blogspot blogs. So you can manually set up the content of the ads.txt file via blogger settings without the need of uploading any to blogger's root directory.

How to set up an ads.txt on blogger
  • Sign in to blogger
  • Click on settings
  • Under settings click on Search Preferences
  • Under monetization, Find custom ads.txt and click on edit
  • Click on YES
  • Copy the settings from your third- party monetization provider and paste them in the text box
  • Click n save settings
Blogger's Ads.txt file set up for adsense
                If you want to  set up your blogger ads.txt file to publicly declare that Google is authorized to sell your ad inventory, copy and paste the code below in the ads.txt box

              google.com,pub-0000000000000000,DIRECT,f08c47fec0942fa0

Replace these pub 00000 with your id

How to find Adsense Publisher ID
            Your publisher's ID  is the unique identifier for your Adsense account and below is how to find it.

  • Sign in to your Adsense account
  • Click on settings
  •  Click on account 
  • Then click on Account Information
Alternatively, you can find your publisher in number within your Adsense adcode.

google_ad_client="pub-xxxxxxxxxxxxxxxx

How to check content of ads.txt file on blogger to check the content of your ads.txt file, go to http://www.yourblogurl.com/ads.txt

DELIVERED BY ALFA MUBARAK MOHAMMAD

THANK YOU

Sunday, 29 September 2019

HOW TO ADD SOCIAL SHARE BUTTONS WITH COUNTER ON BLOGGER
WIKITECH


Hello friends, in this post today i will show you the tutorials on how to add social share buttons to blogger with counters this widget will also help you count the number of shares.

How to add social share buttons on blogger

  • Sign in to your blogger dashboard
  • Click layout
  • Click on Add gadget
  • A new window will appear from this window select HTML/JAVASCRIPT widget
  • In the next page you will see an input text box
  • Paste the following code
<!-- Go to www.addthis.com/dashboard to customize your tools --> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-58b645969a648712"></script> 

Press the save button and done

That's all check it out


DELIVERED BY ALFA MUBARAK MOHAMMAD

THANK YOU

Tuesday, 10 September 2019

HOW TO ADD SNOWFALLING EFFECT ON BLOGGER
WIKITECH

Hi guys, in this post i will show you the tutorial on how to add snow falling effect to your blogger blog to make your blog more stylish.

How to add a snow falling effect to your blogger blog

  • Go to your blogger account and log in
  • Select where you want to add the effect
  • Click on the layout option
  • From the sidebar click on the add gadget link
  • A new window will appear from this window
  • Select JavaScript/HTML widget
  • In the next page leave the title area, and paste this following code
<script src="https://cdnjs.cloudflare.com/ajax/libs/Snowstorm/20131208/snowstorm-min.js"></script>

  • Then press save button, visit your blog and see the beautiful snow fall widget.
                                               Next method
You can also add the snow falling effect by editing your template with this method it will display on all of your blog pages.

  • Log in to your blogger account
  • Click on Theme or Template
  • Click on edit HTML
  • Click anywhere on the code and search for </head> by pressing CTRL+F
  • After finding paste the following script just before </head> and click on save changes.
<script src="https://cdnjs.cloudflare.com/ajax/libs/Snowstorm/20131208/snowstorm-min.js"></script>

That is it 

Well done

If you need futher explanations drop your email address at the comment bar i will explain it to you

DELIVERED BY ALFA MUBARAK MOHAMMAD
THANK YOU 



Saturday, 1 June 2019

HOW TO ADD FREE DOMAIN TO BLOGGER SUCH AS TK,ML, GA,GQ FREE DOMAIN
Image result for picture of free domains tk
WIKITECH

Hello, are you looking for a free domain to add to blogger such as tk, ml, ga, gq extension domain name and link  to blogger immediately.

       You do not need to spend any money to get this domain tk, ml,ga, gq its just free if you are managing a blogger blog then its been suggested to get free domain.

If you want this things below you can still get the domain and blogspot
  • Blog traffic
  • Blog earnings
But before i will give the update on the tutorials on will en light you the advantage and the disadvantage this free domains tk,ml,ga, gq etc

                                                                 ADVANTAGES
  • Free domains such as tk, ml , ga, gq etc are very search engine friendly
  • They can include ads and they manipulate anything on their products

                                                                 DISADVANTAGES
  • This domains tk, ml, ga, gq etc you need to workhard to get your search engine rank
  • Its  less customizable

                             This are the free domains that don't need any money
tk    e.g domainname.tk
ml   e.g domainname.ml
ga    e.g domainname.ga
cf     e.g domainname.cf
gq     e.g domainname.gq

                                 This are the guides on how to add the free domains
Steps to get .tk domain:
  •  To get free domain for blogger, first, you need to visit, Click Here  website.
  • Open the given URL, and enter your favorite domain name with extension .tk in search box
  • E.g. domainnamesfree.tk

  • Kindly enter unregistered domain name with .tk extension.
  •  Now click on “Get it now!” button beside of .tk domain
Checkout option
WIKITECH

  • And proceed with “Checkout” option.
  •  After checkout the .tk domain you will navigate the to domain plans selection page.
  • Here under “Period” column, you will be asked to select your .tk domain name plan.
.tk domain selection plans
WIKITECH

  • Select 12 Months @FREE option and click on “Continue” option.
  •  After clicking on Continue button, you will be navigate to “Review & Checkout” page.
  • Here it will show you the plan cost, basically you need to pay zero USD to get .tk domain for 12 months period.
  • Now scroll down the page, and verify your email address for successful transaction.

Review and checkout option
WIKITECh

You will receive an email from freenom.com, so click on it, it will ask your personal details for registration,
Fill all the details and complete your order by submitting the details to own the .tk domain name.
That’s it, you are done with owning .tk free domain name.
These are the complete details to buy free .tk domain extension name for your blogger blogs.
You can get free domain for blogger as many as you want.
Now, you need to link this .tk free domain name to your blogger blogs for better visibility on search engines.
  • Steps to link .tk domain to Blogger blogs:
  •  To link .tk domain to blogger blogs, First, you need to log in your existing blogger site.
  • Link to Log into Blogger
  • Now from the Blogger home page’s left navigation panel, Click on “Settings->Basic” option
Basic blogger settings option
WIKITECH

  •  After clicking on the Basic option, The right side you will see website configurations.
setup third party domain option
WIKITECH
Here you need to click on + Set up a third-party URL for your blog” URL.
  •  Here you need to fill your .tk domain name details, which you set up earlier.
  • Enter “www.domainnamesfree.tk” with ‘www’, otherwise, it won’t accept.

  • After entering the domain name, just click on “Save” button.
  • Immediately you would be shown an error.
Blogger CNAME error
WIKITECH

Take a deep breath, and I’m going to show you how to resolve the issue.
REFERENCES:



















Steps to resolve .tk domain name issue to link blogger
  •  Now immediately navigate to your freenom.com home page.
  • Here Select “Services->My domains” option.
My domain names option
WIKITECH

  • After clicked on above drop-down values, you will be shown all registered .tk or .ml free domain name accounts.
  •  Here you need to click on “Manage Domain” settings option beside of your registered domain.
Manage domain
WIKITECH

After clicking on it, you will be shown domain settings options
Here you need to select “Manage Freenom DNS” option
Manage DNS option
WIKITECH
  • Here you will be shown records for domain name configuration.
  • You need to exactly copy the code from blogger where you showed “DestinationTarget or Points To” error (Below box details).

Blogger CNAME error
WIKITECH
  • Now fill the details carefully as I describe.
  • Name Field: Enter “NameLabel or Host field” under name in the blogger
  • Type: Select Type as “CNAME”.
  • TTL: TTL should be integer and it should be 14440
  • Target: In target field copy the code under “DestinationTarget or Points To field” in blogger Basic area.
  • Now click on “More Record” and add another CNAME which is shown in blogger.

CNAME details
WIKITECH
  • After filling both records click on “Save Changes” button to save all the settings for your .tk free domain name.
  • Now you are one step closer to link free domain to your blogger blog.
  •  Here you just need to add few more records belong to server configuration
  • But make sure this time you need to add IP address to your records
  • Google provide Few IP address, you need to add them one after another for the configuration.
  • Google IP Address is:

  • 216.239.32.21
  • 216.239.34.21
  • 216.239.36.21
  • 216.239.38.21
  • The above-mentioned IP address you need to add the records
  • Now pay attention to Type, TTL, Target columns and it should be
  • Type: A
  • TTL: 300
  • Target: 216.239.32.21
Google IP
WIKITECH
  • The same way you need to add 4 records with different Target type.
  • After filling all the above IP address, you need to click on “Save changes” button to save your settings.
  • Step-5) After saving the changes, you would see the below similar configurations records on your DNS dashboard.

CNAME details config
WIKITECH
  •  Now navigate to bloggers blog, and click on “Save” button.
  • Yep, you are done with the all steps, and you have successfully linked your .tk domain to blogger.
  • This is the overall process to get free domain name and link to blogger blog in just a few minutes.
This is the video tutorial on how to install the free domains





READ MORE ABOUT COINCELLER



DELIVERED BY ALFA MUBARAK MOHAMMAD
IF YOU HAVE ANY QUESTIONS YOU CAN I WILL GUIDE YOU THROUGH

THANK YOU