Embed to web page "engine"

I have a table with buttons that link to urls.

I want to embed that table within a website, and the user not know it’s a coda document, simply see the table and press the buttons.

Can this be done?
(please!)

This css rule may do the trick:

#coda-body header {
  display: none;
}

Hi Dalmo, have you managed to make this work?

I didn’t really try…

Actually due to CORS that might not work.

One thing you could do is use viewMode=gallery&hideSections=true to hide most of the interface. See

Then to hide the text controls, add some negative margins:

<iframe src="https://coda.io/embed/x2JhhVEU25?viewMode=gallery&hideSections=true" 
  width=900 height=500 
  style="max-width: 100%; margin:-8px; margin-top:-58px;" 
  allow="fullscreen ">
</iframe>
3 Likes

Hi Dalmo,

This seems to do the trick. Thank you for taking the time to respond and put this sample together.

2 Likes