Hello! I need some help using a css to make the buttons appear next to one another rather than on top of each other, I was unsuccessful with my attempts.
This is the code I have in a single code block:
`<div align=”left”>PARTICIPATION</div><div align=”left”>RESULTS</div>
Thank you!
Hey peanuttario,
Add this to your div’s:
style="display: inline-block;"
Regards,
Rikard
I’m not sure where to put it. I’ve tried adding it into the code block, between the divs and with it’s own divs but I can’t get it to work. Can you tell me exactly how and where to insert that line?
Try it like this:
<div style="display: inline-block;">PARTICIPATION</div><div style="display: inline-block;">RESULTS</div>
Best regards,
Josue
got it to work. Thanks guys :)