3 Column Homepage Widget for Dazzling WordPress theme

Need help removing a “Homepage Widget” I originally had them set up to look like 3 columns underneath of the slider. Now I would like only two - and I can’t seem to remember how to do this. The website addy isTheAnnapolisCarShow.com

Thanks in advance.

You can enable and disable Homepage Widgets via WordPress Dashboard >> Appearance >> Widgets >> Homepage Widgets 1-3.

If you want to use only two widget areas and make them 50% of the content area width each then let me know and will provide you a solution for that.

Would you be so kind as to tell me how to do the two widgets at 50%.

Thanks in advance!

You can get this done by adding this simple CSS to Appearance >> Theme Options >> Other >> Custom CSS.

@media (min-width: 992px) {
  .col-sm-6.col-md-4.home-widget {
    width: 50%;
  }
}

Let me know if this is what you were looking for.