This is being done with a simple HTML block. It is actually quite easy to implement and customize. It originally was a login box but we re-purposed it for all sorts of things in the meantime. Feel free to use this code yourself:
<div class="html"><div class="box login-box">
<h3>Not finding what you're looking for?</h3>
<p class="login-context">Don't be shy and let us know about your challenge.</p>
<a href="https://community.insided.com/topic/new" class="btn--cta">Ask your question here!</a>
</div>
<style>
.login-box{
margin-top: 40px;
margin-bottom: 32px;
border: 1px solid #d3d3d3;
padding: 24px;
border-radius: 8px;
}
.login-box.hidden{
display: none;
}
.login-box a.btn--cta, .login-box a.btn--toggle{
width: 100%;
margin-top:5px;
border-radius: 100px;
}
.login-box a.btn--toggle{
background-color: #fff;
color: #00ddc7;
border-color: #00ddc7;
font-size: 16px;
}
.login-box a.btn--toggle:hover{
background-color: #fff;
color: #00ddc7;
box-shadow: inset 0 0 0 1px #07c;
}
.login-box .login-context{
margin-top: 8px;
}
</style></div>
Maybe I can even add a small link underneath the button to point here, so that more people can enjoy it. :)