How to Register the Adobe Photoshop CC Program?

How to Register the Adobe Photoshop CC Program?

How to Register the Adobe Photoshop CC Program?
Welcome to Asif Kamboh.com blog, On this occasion, I will provide easy links to download Adobe Photoshop CC program and free permanent activation method.

So now I am going to tell you how to install Adobe Photoshop, how to prevent it in firewall after installation, and how to register by cracking, if you want to register your adobe program for free then here are the steps.

How to Make Youtube Videos Responsive in Blogger?

How to Make Youtube Videos Responsive in Blogger?

How to Make Youtube Videos Responsive in Blogger?

Welcome to Asif Kamboh.com blog, At this point I will explain to you how you can make YouTube, Vimeo or Dailymotion videos responsive on your blog.

So if you are interested in this method or you want to make your Blogspot Blog videos responsive then follow these steps.


What's the Difference Between Responsive and Unresponsive Video?

If the width and height of the video inside the frame is exactly the width and height of the video, and when you increase or decrease the body of the frame, the height and width of the video will be more or less according to the video and the video will look clear. it means this video is responsive.

If the video within the frame of the video player is viewed more than the width of the video or more than the height of the video, then the video is not responsive.

How to Make Youtube Videos Responsive in Blogger?

Open Blogger Dashboard > Themes Menu > Click on the Three Dots and click the Edit HTML option, and then add the following CSS code before the </head>.

<style type='text/css'>
/* Asif Kamboh - www.asifkamboh.com */
.iframeWrapper{position:relative;padding-bottom:56.25%;padding-top:25px;height:0;}
.iframeWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:4px;}
</style>

When you add the above CSS code to your Blogger theme, click the "Save Theme" button in the top right corner to save the changes into your blog theme.

Then go to the post where you want to add the YouTube video, then change the tab to "HTML View" and add the below code.

<div class='iframeWrapper'>
<iframe width="640" height="360" src="//www.youtube.com/embed/uZV9T37JEbc" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

Replace the Highlighted Video ID uZV9T37JEbc in the above code with your YouTube Video ID before adding the code to your post.

Demo Link of the Responsive Youtube Video.

I hope this post "How to Make Youtube Videos Responsive in Blogger" has been useful and valuable to you.
How to Install and Use Font Awesome Icons in Blogger?

How to Install and Use Font Awesome Icons in Blogger?

How to Install and Use Font Awesome Icons in Blogger?
Welcome! to AsifKamboh.com blog, In this article, I will explain what is the Font Awesome icons and how we can install it in Blogger Blogspot themes, and how we can use them in blog posts.

If you want to install Font Awesome Icon in your blog using the CDN server or you want to learn how to use it in posts, follow these steps.


What Is the Font Awesome?
Fontawesome is a font used to create icons and symbols using a special CSS or HTML calling code for an icon on a website or blog. It was created by Dave Gandy using Bootstrap and later added to the Bootstrap CDN.

Font Awesome is free to use for anyone's needs, and the installation process is easy, and no additional JavaScript code or account verification is required. It's easy to use, add an icon name to the HTML class, or add a unique icon code of a particular font awesome to the CSS content.

How to Install Font Awesome in Blogger Blogs?

  1. Go to the Blogger Dashboard and select your blog in which you want to install the Font Awesome.
  2. Go to the Themes menu, click the drop-down icon, and then click the Edit HTML option.
  3. Click anywhere in the theme code and then press the "CTRL + F" button on your computer keyboard. Blogger will display a search box at the top of the theme editing box.
  4. Type the <head> code in the search box and press Enter.
  5. When you get the <head> code for your blog theme, Then add the following font awesome code below the <head> and click the Save Theme button.

<link href='//stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'/>

Make sure you add the code between <head> and </head>.


How to Use Font Awesome Icons in Blogger?

There are two ways to use Font Awesome Icons in blog post and themes after installation, the first is HTML tag and the second is CSS in Unicode format.

If you want to use the font awesome icon in your blog, you need to know the HTML tag name and CSS Unicode code of this icon.

Go to this URL address https://fontawesome.com/v4.7.0/icons/ or this page to know all the lists of Font Awesome HTML tags and CSS Unicode.

Once you've browsed the above URL address in your browser, find the icon you want to add or use to your blog, and click the icon.

Font Awesome search screen looks like this.

Clicking on the icon will take you to a new page. To the right of the icon's name is the Unicode used in the CSS language. While below is the HTML code, this is the code you have to write on your blog. So take note of this code.

Find icon HTML and Unicode in Font Awesome website.

We now have our respective icon HTML tags and CSS Unicode. I explain it one by one, so let's discuss how we can use it on our blog

1. HTML Tag Method.

The best way to write an font awesome icon in a blog post via HTML is to type in an inline type tag like <i> and <span>. The vast majority prefer to use <i>, as it was exemplified using <i> on its official website, so we also use the <i> tag to write an icon on our blog.

For example, I write an address book icon on this post using HTML <i> tag, and in the code where the class starts with fa, instead of the class name you can also use fas for font awesome solid icons and fab for font awesome brand icons.

<i class="fa fa-address-book-o" aria-hidden="true"></i>

Font Awesome HTML tag code description is.

Name Meaning
i It's an HTML tag.
fa It's mean Font Awesome.
address-book-o It's the name of the icon.
aria-hidden It's used to hide purely used icons for decoration.


So I wrote a class called "fa" of the Address Book icon in HTML Tag <i> and the result of this address book icon code would look something like this.

Now we're going to increase the size of the address book icon as we need it, we need to add another class name to increase the size, and that's the name of this class and its size.

Class Size
fa-xs .75em
fa-sm .875em
fa-lg 1.33em
fa-2x 2em
fa-3x 3em
fa-4x 4em
fa-5x 5em
fa-6x 6em
fa-7x 7em
fa-8x 8em
fa-9x 9em
fa-10x 10em


The code will look like this when you add the increased size class name to the Font Awesome icon code.

<i class="fa fa-address-book-o fa-sm" aria-hidden="true"></i>
<i class="fa fa-address-book-o fa-lg" aria-hidden="true"></i>
<i class="fa fa-address-book-o fa-2x" aria-hidden="true"></i>
<i class="fa fa-address-book-o fa-3x" aria-hidden="true"></i>
<i class="fa fa-address-book-o fa-4x" aria-hidden="true"></i>


And after increasing the size of the font awesome icon, the result of the icon will be something like this.



You can also change the size and color of icons in HTML tags using inline CSS code. And when you the increased size of the Font Awesome icon using inline CSS, the code will look like this.

<i class="fa fa-address-book-o" aria-hidden="true" style="font-size:20px;color:#2e87e7;"></i>

And the result of the icon will be like this.

2. CSS Unicode Method.

The CSS Unicode method for displaying the Font Awesome icon is through the CSS pseudo-elements placed on it ::before or ::after. For example, if you have an HTML tag with an iconunicode in the class name, the code would look something like this:

.iconunicode::after {
content: "\f2ba";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #000;
font-size: 18px;
padding-left: 0.5em;
position: absolute;
}

And the result of the CSS Unicode icon will be something like this.

The family font name in the CSS code must be "FontAwesome" and be sure to include a slash \ in front of the Unicode content. And if you want to increase or decrease the size of the icon, you can see the size in the table above.

I hope you find this "How to Install and Use Font Awesome Icons in Blogger?" post very useful and helpful.
How to Fix Adsense ads.txt File Issue in Blogger?

How to Fix Adsense ads.txt File Issue in Blogger?

How to Fix Adsense ads.txt File Issue in Blogger?
Welcome! to AsifKamboh.com blog, In this post, I'll explain what an ads.txt file is and how we can create it manually, and how we can submit it to Blogspot blogs.

There is no option to upload ads.txt on the Blogspot site, as Blogger offers a monetization option in Blogger's settings, where we add ads.txt file information.


What Is an ads.txt File?
The ads.txt (Authorized Digital Sellers) file is an IAB initiative to improve the transparency in-program advertising. You can create your own ads.txt files to identify who is authorized to sell your inventory. These files are publicly available and crawled by Exchange, Supply Side Platforms (SSPs), and other buyers and third-party vendors.

You can use your AdSense account to create an ads.txt file to identify who is authorized to sell your inventory. And the use of ads.txt is not mandatory but is highly recommended. This can help protect your brand from counterfeit inventory that has been deliberately started from a specific domain, app, or video. Announcing authorized sellers can help you recover advertising costs that may lead to counterfeit inventory.

How to Create Adsense ads.txt File for Blogger?

Open your AdSense account and then go to the Account > Settings > Account Information option, there you will find your AdSense account publisher ID, note the identity of the publisher of your account in the text note, and continue to the next step.

Google AdSense Account Publisher ID.


OK, now copy the code below and replace the pub-0000000000000000 ID in the code with your AdSense Publisher ID. When you do, your account's Ads.txt file is ready to be added to your blog.

google.com, pub-0000000000000000, DIRECT, f08c47fec0942fa0


How to Add Adsense ads.txt File to Blogger Blogspot Blog?

Go to your Blogger Dashboard > Settings > Monetization > Enable custom ads.txt menu, and click on the Custom ads.txt option, and paste the ads.txt file code of your AdSense account into this box, and then click the "Save" button.

How to Add ads.txt File in Blogger?


Once you've saved your ads.txt file code to your blog, go to your domain URL like this example.blogspot.com/ads.txt and check if the ad file is working on your domain.

Ads.txt file URL address.


After visiting your domain ads.txt file URL address, you see your Adsense ads.txt file code on that URL, that means your Adsense ads.txt file code has been submitted and is working fine.

It may take a few days for AdSense to automatically crawl and verify your ads.txt file. Please wait at least a few days for your ads.txt status to update. If your site does not request multiple ads, this may take up to a month.


If you encounter an error "Earnings at risk - You need to fix some ads.txt file issues to avoid severe impact to your revenue." a month or two after the submission. and then check out your blog's robot.txt file.

User-agent: *
Disallow: /ads

User-agent: *
Disallow: /ads/

User-agent: *
Allow: /ads.txt
Disallow: /ads

If one of the above three codes is present in your blog robots.txt file then your ads.txt file will not be verified. You must then allow the robot to crawl the ads.txt and /ads file.

I hope you find this "How to Fix Adsense ads.txt File Issue in Blogger?" tutorial very useful and helpful, Thank You.
How to Submit a Sitemap in Google Search Console?

How to Submit a Sitemap in Google Search Console?

How to Submit a Sitemap in Google Search Console?
Welcome! to AsifKamboh.com blog, At this point, I will explain what Blogger Blogspot Sitemap is and how we can submit it in Google Search Console.

There is no option to upload a sitemap to the Blogspot site, as the Blogger automatically generates and provides sitemap.xml for each blog site.

The good news is that for Blogger Blogspot users, when a user creates a blog site on Blogger, the sitemap is automatically generated, and that's why the user's blog automatically appears in Google's search engines.


What Is a Sitemap?

A sitemap is an XML file where the website owner provides information about the pages, videos, and other files on their site and the relationships between them.

Search engines like Google Search Console read this file to crawl the site more intelligently. A sitemap.xml file tells Google Search Console which pages and files are essential to your site and also provides valuable information about those files.

For example, for pages, when the page was last updated, how many times the page was changed, and an alternate language version of a page.

How to Submit a Sitemap in Google Search Console?

Open the Google Search Console Web > select Domain Properties > and go to the "Sitemaps" option > Fill in the text below the "Add a new sitemap" menu and click the Submit button.

https://example.blogspot.com/sitemap.xml

https://example.blogspot.com/sitemap-pages.xml

Before adding the sitemap URL to your Google Search Console domain property, replace "example.blogspot.com" with your blog's URL address.

How to Submit a Sitemap in Google Search Console?

Now that your blog sitemap has been submitted to the Google Search Console, Google crawlers automatically detect your new post from your blog and index it in the Google search engine.

Additional sitemap settings in Google Search Console.

In the additional settings, you'll learn how to render another sitemap URL address in Google Search Console. Yes, if you have more than 150 posts on your Blogger blog, you need to add a new sitemap, because the sitemap on Blogger is divided into 150 items per page.

For example, the asifkamboh.com blog has more than 170 posts, then the sitemap is sent to the Google Search Console in 2 pieces, namely sitemap.xml?page=1 and sitemap.xml?page=2.

This means that if you have 978 posts on your blog, you will submit the sitemap in 7 pieces, and similarly, you will continue to submit the sitemap by counting your blog posts using the multiplication of 150.

This image shows multiple sitemaps on Google Search Console.

Additional sitemap settings are optional. If you only submit sitemap.xml and sitemap-pages.xml in Google Search Console, the Google search engine crawler automatically detects the sitemap. When there are more than 150 posts on your blog, as shown in the picture above.

I hope you find this "Blogger Sitemap" tutorial very useful and helpful, Thank You!
How to Remove Spam Links from Blogger Comment?

How to Remove Spam Links from Blogger Comment?

How to Remove Spam Links from Blogger Comments?

Welcome! to my AsifKamboh.com blog, At this point, I will explain, disable the active link and convert it to straight text, Just replace the comment link with a custom text, And Convert all text of spam-linked comments to plain text.

There are a few different ways to remove or disable links from comment contents, yes users can do this using CSS, JavaScript, and JQuery code. Blog website users can remove comments links on their blog from the following aspects.


What Are Spam Links?

Spam links in the posting of out-of-context links on blogs, discussion forums, blog comments, guestbooks, or any other online location that displays user comments. Spam links are also called spam comment links, blog spam, or wiki spam. And the Spammers usually don’t leave comments of any value along with their links.

This is an example of an active spam link in a Blogger blogspot comment.

Image of a spam link comment.


How to Disable Comment Links and Convert Them to Plain Text?

Add one of these three (CSS, JavaScript and JQuery) codes in your blog theme. I suggest you use the CSS method to disable the active link in the comments.

1. CSS Method.

Open Blogger Dashboard > Themes Menu > Click on the Three Dots and click the Edit HTML option, and then add the following CSS code before the </head>.

<style type='text/css'>
/* Asif Kamboh - www.asifkamboh.com */
.comment-content a{pointer-events:none;cursor:default;text-decoration:none;color:black}
</style>


When you have successfully added the CSS code to your Blogger theme, then click the Save Theme button and see the result on your blog.

2. JavaScript Method.

If you want to use the JavaScript method to disable active links in the comments section, add the JavaScript code below to your blog theme before "</body>".

<script> //<![CDATA[
/* Asif Kamboh - www.asifkamboh.com */
content = document.getElementById('comments').getElementsByTagName('p');
for (var i = 0; i < content.length; i++) {
 if (content[i].innerHTML.indexOf('</a>') !== -1) {
 content[i].innerHTML = content[i].innerHTML.replace(/<a[^>]*>|<\/a>/g, "");
 }
}
//]]> </script>


After adding the above JavaScript code to your Blogger theme, then click the Save Theme button and see the result on your blog.

3. JQuery Method.

If you want to use the JQuery method to disable active links in comment content, add the JQuery code below to your blog theme before "</body>".

<script> //<![CDATA[
/* Asif Kamboh - www.asifkamboh.com */
$(function(){$('#comments p').find('a').contents().unwrap();});
//]]> </script>


After adding the above JQuery code to your Blogger theme, then click on the Save Theme button and see the result on your blog.

When you add one of the above codes to your blogspot blog, the active link in the comment content will be disabled and the comment will look like this.


The image of the spam link comment content whose link has been disabled, and has been converted to plain text.


How to Disable Comment Links and Convert Them to Custom Text?

Go to Blogger Dashboard > Themes Menu > Click on the Three Dots and click the Edit HTML option, and then add the following CSS code before the </head>.

Replace the "Link Removed" highlight text in the code below with your custom message before adding the code to your theme.


<style type='text/css'>
/* Asif Kamboh - www.asifkamboh.com */
.comment-content a{pointer-events:none;cursor:default;text-decoration:none;color:black}
.comment-content a{visibility:hidden;font-size:0}
.comment-content a:after{visibility:visible;content:"Link Removed";color:black;font-size:14px}
</style>


When you have successfully added the above CSS code to your Blogger theme, then click the Save Theme button in the top right corner.

After that, all active links in the comments on all your blog posts will be disabled and the contents of all these links will be replaced with your custom text, and the content of the comments will look like this.

Image of content with spam link comment whose link has been disabled, and the content of that link has been replaced with custom text.


How to Replace All Spam Link Comment Content with a Custom Text?

Go to Blogger Dashboard > Themes Menu > Click on the Three Dots and click the Edit HTML option, and after that add the below JavaScript code to your blogger theme before the "</body>" tag.

Replace the "Oops! You cannot enter comments with active links on this site. All comments, including links, are automatically disabled on this website." highlight text in the code below with your custom message before adding the code to your theme.


<script> //<![CDATA[
/* Asif Kamboh - www.asifkamboh.com */
var content = document.getElementById('comments').getElementsByTagName('p');
for (var i = 0; i < content.length; i++) {
 if (content[i].innerHTML.indexOf('</a>') !== -1) {
  content[i].innerHTML = 'Oops! You cannot enter comments with active links on this site. All comments, including links, are automatically disabled on this website.';
 }
}
//]]> </script>


When you have successfully added the above code to your Blogger theme, then click the Save Theme button in the top right corner.

After that, the contents of all the comments that contain links to all your blog posts will be replaced with your custom text message, and the content of the comments will look like this.

Image of content with spam link comment whose link has been disabled, and the content of that comment has been replaced with a custom text message.

I hope you find this post "How to Remove Spam Link from Blogger Comment?" very useful and respectful.
How to Add a Cookie Notification Bar in Blogger?

How to Add a Cookie Notification Bar in Blogger?

How to Add a Cookie Notification Bar in Blogger?
Welcome! to my AsifKamboh.com blog, On this occasion, I am going to share with you a premium cookies notification bar for Blogger Blogspot Blogs.

If your website/blog has visitors from EU (European Union) countries, then the cookies notification bar is an essential part of your website or blog. According to EU law, if visitors come to your site from their country, you must inform them about your site's cookie policy.

How to Add a Contact Form Page in Blogger?

How to Add a Contact Form Page in Blogger?

How to Add a Contact Form Page in Blogger?
Welcome! to AsifKamboh.com blog, At this point, I'll explain how you can add a Responsive Contact Form page to the Blogger Blogspot blog.

If you are using a custom theme on your blog, you must first remove the CSS code of the contact form from your blog theme, which you can remove using the Blog Edit Theme option.

Once you have removed the existing contact form CSS code from your blog, you can add a beautiful contact form page to your blog by following these steps.
What Is Adfly, and How Can We Make Money from It?

What Is Adfly, and How Can We Make Money from It?

What Is Adfly, and How Can We Make Money from It?

What Is AdFly?

AdFly is a URL shortener website that rewards the publishers of the shortened links by offering 50% of the advertising revenue.

Adfly members fall into the two different categories, publishers and advertisers.

  • Publishers

  • A publisher will earn money through AdFly by placing short links on their website, blog, Facebook, Twitter, etc. Each time when any of their visitors clicks on an AdFly link, they will first view a full-page advertisement for 5 seconds before being able to click the Skip Ad button and continue to their intended destination. The AdFly website shares this revenue with the Publisher of the link.

  • Advertisers

  • Advertisers pay to AdFly for visitors to their website or affiliate URL. They can target a country, set a campaign budget, and buy visitors sent by AdFly publishers.

    How Can You Make Money from Adfly?

    To make money from AdFly, follow these simple instructions:

    1. Go to the https://adf.ly/ website.
    2. Signup and login to your Adfly account.
    3. Enter the website URL (such as http://www.asifkamboh.com) in the blank white box and click on the 'Shrink!' button.
    4. Copy and share the AdFly shortened link on your website post, into a forum or blog post, Facebook status, Twitter post, WhatsApp groups, etc.
    5. You will earn money every time when someone clicks on this link.
    6. When you post or share valuable information on the Internet, share your information, article, and download URL by shortening it with an AdFly link.

    How to Increase Your AdFly Revenue?

    Here are four easy steps to increase your AdFly revenue.

    • Pop Ads
    • Push Ads
    • Referral Program
    • Random Domains

    1. What Are Pop Ads on AdFly? & How Can You Use Them?

    In addition to making money from your AdFly short links, you can try out a new way to advertise on AdFly-Pop ads. If you already use AdFly 'Full Page Script' or 'Website Entry Script' on your website and the installation is very easy then this popup can get you extra revenue, just add the following variables:

    var popunder = true;

    The amount of money you can earn on your JavaScript code depends on the volume of traffic to your website. Or if you want to make money, when a visitor easily enters your site without clicking on the AdFly link, Just add the AdFly pop ad script below to your blog.

    <script type="text/javascript">
        var adfly_id = 9260019;
        var popunder_frequency_delay = 0;
        var adfly_google_compliant = false;
    </script>
    <script src="https://cdn.adf.ly/js/display.js"></script>

    Before adding the above script to your blog, change this AdFly ID "9260019" with your AdFly account ID, you can get your AdFly account ID from this URL address https://adf.ly/publisher/tools#tools-popads.


    This ad does not affect your AdFly link anyway, it will continue as usual, so this is nothing but extra money!

    2. What Are Push Ads on AdFly? & How Do They Work?

    AdFly has added a new advertising format that will increase the revenue from your existing AdFly links. The way it works is effortless. After your users click on the 'Skip Ad' button, they will need permission to push notifications to continue to the desired URL. When this happens, they will be sent a small number of targeted ads after leaving the site, and you will be paid whenever they see these ads.

    You will generate revenue from visitors to your blog or website for weeks to come, regardless of whether they return to your site or not. The AdFly team recommend that you to enable this feature for at least a week to view revenue. It takes time to build users, but as long as you use it, the more revenue is generated. And the AdFly statistics are updated every 24 hours and will be displayed on your primary publisher's homepage once enabled.

    3. Do You Have an AdFly Referral Program? & How Much Does It Pay?

    Yes, AdFly does. For each of Publisher referrals, AdFly will pay 20% of what they earn through advertising. This 20% comes out of the AdF.ly revenue share, and your referral will always receive 100% of their earnings. If you refer advertisers to AdF.ly, you will earn a 5% commission on any completed campaigns. To find your referral link log in to your AdFly account and go to this link:

    https://adf.ly/account/referrals

    4. What Are the Random Domains?

    The random domain is a feature that creates new domains to use permanently with your short links. Now in addition to AdFly public domains:

  • adf.ly
  • j.gs
  • q.gs

  • You can use random domains that are automatically selected by the AdFly system. You don't need to do anything else but choose the option from the 'Domains' dropdown list. They are a perfect alternative to sharing your contacts on Facebook and Twitter and around the world. You can always return at any time by selecting our public domain from the list.

    I hope you find this post "What Is Adfly?" very useful and respectful. Thank You!