Got some question about widget & CFA

Hi @nasir623,

Thank you for your questions.

Let’s resolve your call for action button issue on your following separate topic created for it.

https://colorlibsupport.com/t/have-a-problem-with-cfa-button/

And my second problem is, I would like to have total three home page widgets, but for the first homepage widget, I want to full width of the content area in one row, second and third widgets just fine with 50% of width in same row. So is there any wany to change the existing homepage widgets in dazzling theme, and how it would be done?

You can try achieving this by adding the three widgets in the three home page widget areas respectively and then add the following CSS code in the Custom CSS option of your theme on the below path.

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

.home-widget-area.row .home-widget:nth-child(1) {
  width: 100%;
}

.home-widget-area.row .home-widget:nth-child(2),
.home-widget-area.row .home-widget:nth-child(3) {
  width: 50%;
}

Best Regards,
Movin