How do you remove the widgets from all pages? The are defaulting to recent posts, and categories. I have made the widgets inactive in the widget menu, but they are still showing. I am actually more interested in using the text widget, however it will not allow me to pull it over. So I will then just opt to delete it. None of the widgets fit the needs of my site. Thanks
Go to the Appearance > Widgets Drag text widgets and add paragraph tag and drop them in the first, second, and third widget area. For example Code: <p></p> Sending image for reference
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer { display: none; }
I have already removed the footer widgets. I need to remove the ones on the right hand side that is on all the pages except for the home page.
Paste the following code in your custom css Appearance -> theme options -> styling options -> custom css Code: .sidebar { display: none; } This will solve your issue. Thanks.