Is there a way to have “Justify” type of text alignment?
You can use CSS to do it.
1 Like
Thanks! Interesting solution! Do you know CSS, and how to integreate it into the Bubble-made app?
Hi @another
Its very simple. Just assign an ID to your text element.
Than place a HTML element in your editor and write this:
<style>
#my_text {
text-align: justify !important;
}
</style>
Should work!
1 Like