-
|
Hi, the new changes to BuildOp look pretty cool and interesting. I used the migration guide and got most things successfully working except for inline elements. Right now I have some text that get interrupted by a user avatar icon image that looks like this (O) right in the middle of the text. So for example: With the old way it was working perfectly with this bit of code: Now migrating to the new way I first did: But the result comes out as: So I tried But it is the same problem with output of: Even if I just make it do It will still break it up into 3 lines Any idea or help on how to correct this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Ok never mind. It looks like the new version much more accurately renders html/css, as this was all inside a div its placing it into a new line (never did that before, but it is properly doing that). I just added a stylesheet and made my div render as an Awesome!! |
Beta Was this translation helpful? Give feedback.
Ok never mind. It looks like the new version much more accurately renders html/css, as this was all inside a div its placing it into a new line (never did that before, but it is properly doing that). I just added a stylesheet and made my div render as an
display:inline-blockand its all solved now.Awesome!!