Make widget bigger
# 🤝help
m
Okay honestly I just dont understand how to make the round chatbot widget bigger. I found a tutorial but it helps me nothing because i dont seem to make it right. Anyone that´s up to fix me a stylesheet link with this pic as the avatar and widget pic:

https://imgtr.ee/images/2024/03/18/6acc1eff7a4678714ba799a6ec1c3938.png

If so, you´d be the best person in the world. I want the design to look like the uploaded pic but with the chat space to be a little higher than on the pic.
f
Hey there Olle👋 Do you want to increase the size of just the avatar or is it the whole header?
I made it all a bit bigger, just to test, but the quality is bad.
Adjusted the height and color of the container .bpw-header-container { margin: 10px; background: #1c1c1c; border-radius: 10px; position: relative; overflow: hidden; border: 1px; border-radius: 10px; color: #ffffff; height: 60px; }
The avatar had a weird black color behind it, when it got bigger so I set the background-color to be transparent .bpw-bot-avatar { background-color: transparent; }
And here I just adjusted the width and height of the avatar .bpw-bot-avatar img, .bpw-bot-avatar svg { border: 3px solid #fff; width: 50px; height: auto; }
All in your stylesheet
m
thanks so much bro! You are a lifesaver to me and Isak ngl 🙂 I have a customer that uses our chatbot. He want to make the icon you push to open up everything to be bigger. Can i send you some info and maybe you can show me? For a coffée or two this time aswell 🙂
@fresh-fireman-491
f
You are very welcome! I can't speak right now, but it should be pretty easy to do. Do you have a specific size that you want it to be?
f
Alrighty. Will get back to you today about this
m
Thanks bro!
f
Hey there, In your CSS on you website:
Copy code
html
<style>
        #bp-web-widget {
            width: 120px !important;
            height: 120px !important;
        }  
</style>
That increases the height and with of the iframe, which allows us to increase the height and width of the button that opens the webchat. Then you can adjust the height and width the button in the stylesheet under
bpw-widget-btn
Copy code
css
.bpw-widget-btn{
  border-radius: 50%;
  background:#6675fa;
  height: 100px;
  width: 100px;
}
m
love you
5 Views