Need help coding storefront

How do I remove all of the dots/circles in between the lines of text on ‘scrolling text’ block on theme Concept 3.1.0?

Hi @bens3 ,

Thank you for reaching out to the Shopify community. I’d be glad to assist you. Could you kindly share your store URL and
password (if it’s password-protected) so I can review it and provide you with an update?

Im also looking to make my slideshow picture on my homepage fill 100% of the page width. Thanks!

ain’t there a checkbox to control this?

If not, you can add a code like this to the Custom CSS setting of this section:

.marquee .scrolling-text__item:before {
  display: none !important;
}

To make your slides full-width, use CSS like this in relevant section:

.slideshow .banner {
  max-width:  100% !important;
}

In both cases, I believe you may omit the " !important" part if you use it in Custom CSS setting.