Feedback-widget.mp4

Step 1: Register your Qualli account

Create a new Qualli account if you haven’t already signed up. You can get started for free!

Learn here how to setup Qualli for your website:

How to set it up on your website

Step 2: Create your survey

survey.gif

Head over to our Survey builder and create your Feedback Survey.

Step 3: Website HTML code

Now let’s add some basic HTML and CSS code to your website.

First place this at the end of your Head:


<style>
#feedback-button {
    position: fixed;
    top: 50%;
    right: -25px;
    width: 100px;
    height: 40px;
    background-color: #5F4BE9;
    color: white;
    z-index: 99;
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px; /* Assuming a default border-radius */
    cursor: pointer;
    transition: transform 0.3s ease;
}

#feedback-button:hover {
    transform: rotate(90deg) scale(1.1);
}

#feedback-button p {
    margin: 0;
    font-size: 0.875rem; /* Equivalent to text-sm */
    font-weight: bold;
    pointer-events: none;
}
</style>

And place this at the beginning of your Body

<div id="feedback-button">
    <p>Feedback</p>
</div>