Is there a way to block a Survey Title from being seen?

Options

A code or something to plug in as html like you can to block the skip and cancel buttons? Thanks!

Tagged:

Comments

  • There are two possible solutions:

    1) Insert the Survey in a PageBuilder page using the WYSIWYG Component. When a Survey is included in this way, the title is not included.

    2) Use the following style:



    <style type="text/css">
    h3.ObjTitle{
    display:none;
    }
    </style>

    You can either put this style in a Caption question on an individual Survey level, or, add it to your page wrapper like so to apply it to all Surveys:



    ]x::
    <style type="text/css">
    h3.ObjTitle{
    display:none;
    }
    </style>
    ::]]
  • Noah Cooper:

    There are two possible solutions:

    1) Insert the Survey in a PageBuilder page using the WYSIWYG Component. When a Survey is included in this way, the title is not included.

    2) Use the following style:



    <style type="text/css">
    h3.ObjTitle{
    display:none;
    }
    </style>

    You can either put this style in a Caption question on an individual Survey level, or, add it to your page wrapper like so to apply it to all Surveys:



    ]x::
    <style type="text/css">
    h3.ObjTitle{
    display:none;
    }
    </style>
    ::]]

    Noah.. thank you SOOO much! Worked like a charm.

Categories