Is there a way, put the Title Inline List in the middle ?
You can use some CSS tricks from this thread: https://community.glideapps.com/t/beautiful-design-app
Just scan the thread, im sure you’ll find what you need)
Please try this in a rich text component.
<pre><span><style>
[data-test="app-vertical-list"] .tile-title {
text-align: center;
}
thank you sir.
Hi @ThinhDinh
Will it be possible to align to center align a single tile? I have filtered out other possible tiles to display a single one and increased the number of tiles to reduce the size of the circle but the tile aligns left so wondering if it will be possible to do some CSS magic to align to center. Thanks
Please try this.
<pre><span><style>
[data-test="tile-item"] .tile-inner .tile-image-area >div {
height: 150px;
width: 150px;
border-radius: 50%;
margin: 20px calc(50% - 70px);
}
Works like a charm.
Thanks a million