White bar at bottom of all pages related to Kudobuzz

Hi, I have a white bar at the bottom of every page of my site. When I inspect it it is an element related to the Kudobuzz (review service app) widget that appears floating on the left side of the page. I want to keep that floating review button on the left side, but I would like the white bar at the bottom gone. I’m no developer so any help would be appreciated!

Hey @bradleymatthews

I’m unable to see that white bar on my screen, did you remove it? or is it disabled? Let me know.

Best,
Moeed

Hi Moeed, thanks for looking into this. I haven’t removed it no. I just cleared cookies and refreshed and it’s still there for me it. It takes a second to load along with the rest of the review app elements, then if I keep scrolling down it can be seen.

Hey @bradleymatthews

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
div#kudobuzz_neptune_widget {
    position: absolute !important;
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

@bradleymatthews

You can likely remove that white bar with a small CSS tweak, without affecting the floating Kudobuzz review widget.

Here’s what to try:

1. From your Shopify Admin, go to:

*Online Store > Themes > … > Edit Code*

2. Open your *theme.css* or *base.css* (depending on your theme).

3. Scroll to the bottom and add this code:

```css

/* Hide white bar from Kudobuzz widget */

.kb_main_float_bottom {

display: none !important;

}

```

4. Click *Save*, then refresh your site to check.

-–

:white_check_mark: This will hide the bottom bar without removing the floating review tab.

If it doesn’t work or the class name is slightly different, you can share a screenshot of the inspected element and I’ll adjust it.