Blogger
Photo of author

Best Button Styles For Blogger Widget

Best Button Styles For Blogger

Blogger

Blogger is best platform for newbie who want to start a free website for earning money.

Blogger will be best choice for everyone who don’t have custom domain and want to monetize website

  • Features of blogger
  • Not required any custom domain
  • Easy Adsense Approval
  • Not Required Hosting
  • Easy Interface
  • Not required Lots Of Knowledge

So Here is the some basic button styles for the blogger

Latest Post Widget For Blogger : Click Here

Installation

  • Go to blogger dashboard
  • Select your website
  • Go to layout
  • Click on add a gadget
  • Select html/JavaScript
  • Copy paste the code which you want

Don’t Forget to update links

1. Basic Button:


This is a simple button with a background color and hover effect.

Click Me

<a href="#" class="btn">Click Me</a>
<style>
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}
</style>

2. Outlined Button:


This is a button with an outlined border and a hover effect.

Click Me

<a href="#" class="btn-outline">Click Me</a>
<style>
.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}
</style>

3. Rounded Button:


This is a rounded button with a background color and hover effect.

Click Me

<a href="#" class="btn-rounded">Click Me</a>
<style>
.btn-rounded {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.btn-rounded:hover {
    background-color: #0056b3;
}
</style>

4. Large Button:


This is a larger button with a background color and hover effect.

Click Me

<a href="#" class="btn-large">Click Me</a>
<style>
.btn-large {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #0056b3;
}
</style>

Certainly! Here are a few more button styles that you can use in your Blogger layout:

5. Gradient Button:


A button with a gradient background and hover effect.

Click Me

Download The Code For Personal Use

Download

6. Pill-shaped Button:


A button with a pill-shaped design and hover effect.

Click Me

<a href="#" class="btn-pill">Click Me</a>
<style>
.btn-pill {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.btn-pill:hover {
    background-color: #0056b3;
}
</style>

7. Borderless Button:


A button with no border, just text, and a hover effect.

Click Me

<a href="#" class="btn-borderless">Click Me</a>
<style>
.btn-borderless {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-borderless:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}
</style>

8. Icon Button:


A button with an icon and text.

Like

Download The Code For Personal Use

Download

Make sure to customize these styles as per your Blogger layout and design preferences. You can add these buttons by placing the HTML code in an HTML/JavaScript gadget in your Blogger layout.

Conclusion

You can add these code snippets to your Blogger layout by going to your Blogger dashboard, accessing the “Layout” section, and adding an HTML/JavaScript gadget where you want the button to appear. Paste the HTML code into the gadget’s content, and customize it as needed. You can also adjust the button text and styling to match your blog’s design.

Leave a Comment