Adding a floating button with custom link on any blog using code injection

Paste the following code into the Code Injection > Header section of your site to add a floating button.

<a href="enter link address" class="floating-button" target="_blank">Button Text</a>

“enter link address” : Add website Link that user goes to on click
“Button Text” : Button Name

To style the button use the following code after the above

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  z-index: 1000;
}

@media (max-width: 768px) {
  .floating-button {
    bottom: 10px;
    right: 10px;
    font-size: 14px;
  }
}

background-color: #007bff; & color: #fff; change to any color you wish