Bullet Points in Widget

I have placed the widget in a sidebar on my site, and each item is appearing with a bullet point next to it.

How do I remove this bullet point?

It may be a theme issue. You need to override CSS. Can you give URL of your site?

Hi Ritesh

The site can be found at http://dev.awety.com

Please note that it is still under heavy development.

Many Thanks

Use this css code in your theme’s CSS file to hide the bullet.

.rt-media-tab-panel ul li.rtmedia-list-item {  
      background: none;  
}

Thanks, the css code resolved the problem.