Opening chat box in unique page area

Is it possible to have chat box open on my landing page in a unique area of the webpage.

I want to duplicate this…

Thank You,

Anthony

Hi @BuyAntivirus ,

Do you want the chat widget to only show on a specific website page?

creat a new property and chose embed. then the chat will be embed to the website like you want.

On my landing page i want the chat box displayed but I want the original chat widget to display at the bottom right of the page on all other pages

Hi,

To confirm, would you like the chat widget in your landing area to be fully displayed, or do you want it maximized in your landing area while it stays closed on other pages?

1 Like

Thanks, this helped tremendously. One more thing please… How do I make this box responsive for mobile?

Thank in advanced,

Anthony

Hi,

May I know what exactly you are trying to achieve it on mobile?

I think it is already responsive for mobile. but you can try to apply CSS styles that adjust its positioning and size based on the screen width. To make the Tawk.to chat widget full-screen on mobile you can apply the following CSS:

css
@media (max-width: 768px) { /* Targets mobile devices */
  #tawk_60c30be97f4b000ac037075f {
    width: 100vw;  /* Full width */
    height: 100vh; /* Full height */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; /* Ensures it's on top */
    background: white; /* Optional: Prevents transparency issues */
  }
}