How to make full width footer widget ?

How to make a full width footer widget such that any text or image inserted is of full width.

Hi @namaskar59,

I hope you are well today and thank you for your question.

Do you mean displaying footer widget text / image full width to the container widget or do you want to display the footer widget area full width to the browser window?

Please advise.

Kind Regards,
Movin

I simple mean to make a full width widget as shown in this wesbite - http://btechlife.com/
It is having a slider at top similarly the full width image I want to paste in footer in a separate widget for footer.

Hi @namaskar59,

Thank you for your reply.

You can make the footer widgets full width by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

#footer-area .row {
  margin: 0;
}
#footer-area .container.footer-inner,
.footer-widget-area .footer-widget {
  width: 100%;
  margin: 0;
  padding: 0;
}

Best Regards,
Movin

Will it made all footer full width ?

I need to have a full width footer widget separately.

Hi @namaskar59,

The shared CSS code solution will make all footer widgets full width along with the footer area that contains them.

Regards,
Movin