Skip to content

Commit

Permalink
Merge pull request #45 from AmanWebDev2/main
Browse files Browse the repository at this point in the history
 Fixed #42 Logo is not displaying on chat window
  • Loading branch information
dmotts authored Oct 19, 2024
2 parents bac2e0c + 258cb39 commit 43f0780
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions assets/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,7 @@
padding: 14px;
color: white;
transition: background 0.3s;
}

#chatbot_toggle:hover {
background: rgba(219, 226, 0, .05);
cursor: pointer;
}

/* Header Styles */
Expand All @@ -85,7 +82,7 @@
margin-left: 8px;
}

.main-title svg {
.main-title img {
height: 24px;
}

Expand Down
2 changes: 1 addition & 1 deletion assets/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<!-- Chatbot header -->
<div class="main-title">
<div>
<img src="/assets/images/logo.png" alt="" />
<img src="<?php echo esc_url(plugin_dir_url(__FILE__) . '/images/logo-white.png'); ?>" alt="Logo" />
</div>
<!-- Display the assistant's name from the settings -->
<span><?php echo esc_html(get_option('vacw_assistant_name', 'Customer Support Assistant')); ?></span>
Expand Down

0 comments on commit 43f0780

Please sign in to comment.