Padding on Slideshow and Copyright Info

Hello,

  1. I need to know how to remove the padding on the top of the slideshow in the main page www.miamisalsadance.com. I’m using Slider WD not carousel.

  2. I also need to remove the copyrights information for Unite and Wordpress. I plan on creating a credits page that will give credit to everyone including images, etc. We just don’t want it on the bottom.

  3. There is weird padding underneath the footer that needs to be removed. How do I do that. Or is that for the widgets? If it’s for widgets, how can I make the widgets be above the footer and not beneath it? Is there a way to change that background color on the bottom of the page?

Thanks.

Add this code as it is to Theme Options - Other - Custom CSS. It will fix all your mentioned things.

.navbar.navbar-default { /* This removes margin between slider and menu  */
    margin-bottom: 0;
}
.copyright { /* This code will remove copyrights */
  display: none;
}
 /* Remove margin below page */
.hentry {
	margin-bottom: 0;
}
#colophon {
	margin-top: 0;
}

Homepage widgets by default are below content are and right above footer copyright are.

Thank you very much.