Share feedback, ideas and get community help

Updated 5 months ago

Buttons to the middle of the screen

At a glance

The community members are discussing how to move the Typebot buttons to the middle of the screen instead of the right side. One community member suggests finding the ID of the block by inspecting the HTML, and then using the CSS rule [data-blockid="<block_id>"] .justify-end { justify-content: center } to center the buttons.

What is the Custom code / CSS code to be used to move the Typebot buttons to the middle of the screen instead of it being on the right side?
B
4 comments
You'd have to find the ID of the block by inspecting the HTML.
Once you have it, the CSS rule can look like this:

Plain Text
[data-blockid="<BLOCK_ID>"] .justify-end {
  justify-content: center
}
Add a reply
Sign up and join the conversation on Discord