How to customize Rozz chatbot for your site using attributes?

Direct Answer

Detailed Explanation

WordPress Shortcode Users

Button Attributes

    <rozz-searchbox data-button-background="linear-gradient(90deg, #ff0000, #00ff00)"></rozz-searchbox>
    

    <rozz-searchbox data-button-text="Ask Now"></rozz-searchbox>
    

    <rozz-searchbox data-button-animation="true"></rozz-searchbox>
    

    <rozz-searchbox data-button-top-position="70vh"></rozz-searchbox>
    

    <rozz-searchbox data-button-right-position="10vw"></rozz-searchbox>
    

    <rozz-searchbox data-button-positioning-method="absolute"></rozz-searchbox>
    

Searchbox Attributes

    <rozz-searchbox data-max-width="50%"></rozz-searchbox>
    

    <rozz-searchbox data-max-height="600px"></rozz-searchbox>
    

    <rozz-searchbox data-font-family="'Courier New', monospace"></rozz-searchbox>
    

    <rozz-searchbox data-initial-status="open"></rozz-searchbox>
    

    <rozz-searchbox data-theme-color="blue"></rozz-searchbox>
    

    <rozz-searchbox data-query-background="pink"></rozz-searchbox>
    

    <rozz-searchbox data-query-text-color="red"></rozz-searchbox>
    

    <rozz-searchbox data-result-text-color="purple"></rozz-searchbox>
    

Technical Details

Example of Integrating Rozz

Here's an example of integrating Rozz to your website with custom settings. Note that you only need to include in your code the attributes that you wish to customize, the others will fall back to defaults if they are not present.

<rozz-searchbox
  data-button-background="pink"
  data-button-text="hello world"
  data-button-animation="true"
  data-button-top-position="50vh"
  data-button-right-position="5vw"
  data-button-positioning-method="fixed"
  data-max-width="900px"
  data-max-height="75%vh"
  data-font-family="courier"
  data-initial-status="closed"
  data-theme-color="blue"
  data-query-background="pink"
  data-result-text-color="purple"
  data-query-text-color="red">
</rozz-searchbox>

By using these data-* attributes, you can easily customize Rozz to fit seamlessly into your website's design and functionality!

Research Foundation

Author