Embedding Survey in PageBuilder

Options

I'm trying to embed an entire survey into a pagebuilder page, but when I try to embed it, I'm only allowed to choose certain parts of the survey (ie the title, first question, a random question from the survey etc.) Is there a way to embed the entire thing?

Thanks!

Tagged:

Comments

  • To actually embed the survey, you will want to select it as a component > survey withiin an html component instead of the 'survey' option in the editor.  Reply if that doesn't make sense.

    mb

  • Mark Becker:

    To actually embed the survey, you will want to select it as a component > survey withiin an html component instead of the 'survey' option in the editor.  Reply if that doesn't make sense.

    mb

    Is there a way to constrain the width of the embedded survey?  Right now it expands to whatever width is necessary.

  • Alan Bolds:

    Is there a way to constrain the width of the embedded survey?  Right now it expands to whatever width is necessary.

    Alan,

    You can do so fairly easily with CSS. The embedded Survey has an id of survey_1234, where 1234 is the survey's ID. So you could add something like the following in the HTML Content of the PageBuilder page:

    <style type="text/css">

    #survey_1234{

    width: 500px;

    }

    </style>

  • Noah Cooper:

    Alan,

    You can do so fairly easily with CSS. The embedded Survey has an id of survey_1234, where 1234 is the survey's ID. So you could add something like the following in the HTML Content of the PageBuilder page:

    <style type="text/css">

    #survey_1234{

    width: 500px;

    }

    </style>

    Noah, a belated note of appreciation.  The tip worked!

Categories