Hello and happy Monday,
I am trying to connect a iframe (that contains a chatbot URL) to a text box to make custom layout for the chatbot popup on a HUB site. I followed the steps below but the iframe and text box are not talking to one another. How can I fix this?
Solved! Go to Solution.
Thanks for asking this question. To fix the issue you need to include Style tags around the HTML code. This will then apply the CSS to this page, including the iFrame card.
<style>
.chatframe iframe {
width: 500px;
height: 100%;
background: none;
border: 0px;
bottom: 0px;
float: none;
margin: 0px;
padding: 0px;
position: fixed;
right: 0px;
z-index: 999;
}
</style>
Thanks for asking this question. To fix the issue you need to include Style tags around the HTML code. This will then apply the CSS to this page, including the iFrame card.
<style>
.chatframe iframe {
width: 500px;
height: 100%;
background: none;
border: 0px;
bottom: 0px;
float: none;
margin: 0px;
padding: 0px;
position: fixed;
right: 0px;
z-index: 999;
}
</style>