How to remove/hide the 4th footer widget and the image from testimonials?

I’m having a couple of issues with the theme since the update, most notably the two I am looking for a bit of help with.

How do I got about removing the 4th widget area and the testimonial image? My site is www.stylegurultd.com.

Hi,

Go to Appearance -> Customize -> Additional CSS and add this CSS Snippet in it,

.testimonial-image img {
    display: none !important;
}

Let us know,

Thanks,
laranz.

That worked perfectly for the image laranz, thank you very much! Do you have any answer on how to remove the 4th widget spot in the footer bar at all though?

Hi,

  1. Don’t add any widgets to the Footer Widget 4, http://take.ms/TD8jr
  2. Or you can use this CSS to hide it,

Go to Appearance -> Customize -> Additional CSS and add this CSS Snippet in it,

#footer .col-md-3:last-child { display: none; }
#footer .col-md-3 { width: 33%;}

The first line used to hide it, the second line used to make the footer 3 column by adjusting the width.

Let us know,

Thanks,
laranz.