How can I add my logo in a survey?


You can add your logo via customisation function by following these steps:

1. Make a URL for your image

The customisation requires you to import an image via a URL. If your logo is on your computer, you can create a URL for your logo by pasting it into any question on Conjointly.

2. Add the image

The following code will add the image to the survey, please change the logoURL to the URL of your logo:

<script>
    var logoURL = 'https://conjointly.com/img/logo-black.svg';
    $('#frames').before("<div id='logoImage'><img id='logo' src='"+logoURL+"'></div>");
</script>

<style>
    div#logoImage { width: 100%; }
    img#logo{
        padding-top:10px;
        top: 20px;
        right: 0;
        bottom: 0;
        left: 0;
        height: 30px;
    }
</style>

It will look something like this:

Add logo 2

Finally, your survey will have your logo shown as how you specified:

Add logo 3