richardscarrott / jquery-ui-carousel

jQuery RS Carousel is a responsive and touch-enabled carousel written on top of jQuery and the jQuery UI Widget Factory providing a full and familiar API in less than 2.6kB minified and gzipped.
http://richardscarrott.github.io/jquery-ui-carousel/
192 stars 56 forks source link

Extra dot after creating carousel? #21

Closed antisquark closed 12 years ago

antisquark commented 12 years ago

I'm seeing a dot associated with a div I have placed inside the li items--it's taking its color from the css for "html, body". Is this generated by the carousel code? Do I need to remove the Div to fix the issue?

jacobdubail commented 12 years ago

Could you share a link to your project for us to look at?

richardscarrott commented 12 years ago

My initial assumption is that it would be the bullet points from the list, try adding:

<style type="text/css">
    ul {
        list-style: none;
    }
</style>

If that's not the case then, as jacob mentioned, can you provide a link?

antisquark commented 12 years ago

Your initial assumption is correct Richard--that definitely cleared them out! @Jacob, I'm sorry, but the project is still internal. I know it makes diagnosing bugs much harder, but I appreciate the help.