Embeds: more control over layout and field width #4131
Replies: 2 comments 5 replies
-
There is no current way to do that without putting a spacing field in (name and content being zero width spaces) Embed styling is more of a loose suggestion, the client will always build it differently depending on screensize. But, mobile tends to just treat every field like I've peronally resorted to using the spacing field trick or figuring out what content would look good alone So, for example |
Beta Was this translation helpful? Give feedback.
-
Sounds like a duplicate of #3233 |
Beta Was this translation helpful? Give feedback.
-
I've been trying to make a two column layout for the past 3 days and it always looks weird.
Yes, you can use
BUT, it will still render an empty space either after or below.
Here we're trying to make a two column layout and A, B, C, D set to
inline: true
Here's what it'll look like
Space field
inline: true
AAA BBB ___
CCCC DDDD
Space field
inline: false
AAAA BBBB
CCCC DDDD
What I want
AAAA BBBB
CCCC DDDD
Currently it does not seem possible to achieve, except for maybe faking having two rows like so:
AAAA BBBB
AAAA BBBB
but you'd have to start counting lines since to make sure 2nd row is aligned and it just seems so unnecessary.
If there is a way to do it with the current API, I'd be very interested in learning how.
Beta Was this translation helpful? Give feedback.
All reactions