Homepage widget

Hello,

I’m using the Dazzling theme on passportandplates.com

Is there a way to use a homepage widget (rather than a sidebar widget) in conjunction with using the recent posts as my homepage?

Alternatively, if I use the static homepage, is there a way to remove one of the homepage widgets (I only want 2 on there) and adjust the size accordingly?

Thanks in advance.

Hi @salpal2008,

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

Is there a way to use a homepage widget (rather than a sidebar widget) in conjunction with using the recent posts as my homepage?

Do you mean only on the home page you want to display the widgets set in the home page widgets area in place of sidebar widget?

Alternatively, if I use the static homepage, is there a way to remove one of the homepage widgets (I only want 2 on there) and adjust the size accordingly?

Yes you can achieve this by adding the two widgets in the footer widget areas “Footer Widget 1” and “Footer Widget 2” respectively leaving the “Footer Widget 3” empty and then adjust the size of it 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 .span4 {
  width: 555px;
  max-width: 100%;
}
div#footer_three {
  display: none;
}

Best Regards,
Movin