Home › Forums › Automattic › Forefront › Remove all widgets
-
AuthorPosts
-
castley1988MemberHow to remove all widgets from pages and how to make testimonials show on testimonial page/
The blog I need help with is jandjroofingandbuilding.wordpress.comAugust 11, 2016 at 2:24 pm #163877
SiobhanHi there,
How to remove all widgets from pages
If you don’t wish to include widgets in the sidebar of a page, then you can assign the Full Width Page template. Page templates can be set under the editor’s Page Options module.
how to make testimonials show on testimonial page
All of your Testimonials will appear on the /testimonial page here:
https://jandjroofingandbuilding.wordpress.com/testimonial/
To add a link to that page to your menu, you’ll need to create a custom menu and add a custom link.
Let me know if that information helps out! I’ll be happy to assist with any extra questions, too.
August 12, 2016 at 6:55 am #163878
castley1988MemberHi there,
Thanks for your help. One more thing:
Reduce footer box size (height
August 12, 2016 at 8:08 am #163880
SiobhanSure thing! You can reduce the size of the footer by adding the following custom CSS to the CSS panel of the WordPress.com Customizer:
.footer-widget-area {
padding-top: 30px;
}.footer-widget-area .widget {
margin-bottom: 30px;
}Increase/decrease the value of padding-top and margin-bottom to your liking.
Hope that’s helpful!
August 12, 2016 at 10:01 am #163885
castley1988MemberOk sorry… last question I promise! How can I adjust the size of the box that has the page title in it. I want the height to be smaller… THANK YOU!
August 12, 2016 at 12:34 pm #163886
castley1988MemberOk sorry… last question I promise! How can I adjust the size of the box that has the page title in it (height smaller) and I need to adjust the gap between the footer and the bottom of the page.
August 12, 2016 at 12:34 pm #163887
castley1988MemberOk sorry… last question I promise! How can I adjust the size of the box that has the page title in it (height smaller) and I need to adjust the gap between the footer and the bottom of the page.
August 12, 2016 at 3:24 pm #163888
SiobhanThe height of the box surrounding the title can be reduced with the following CSS:
@media screen and (min-width: 750px) {
.hero>div>div>div {
padding-top: 20px;
padding-bottom: 20px;
}
}Similar to before, Increase/decrease the value of padding-top and padding-bottom to your liking.
The padding between the footer and the bottom of the page can then be reduced with the following:
.site-footer {
padding-bottom: 20px;
}Let me know how you get on with that or if any extra questions come up.
August 21, 2016 at 10:57 pm #163893
emarketcraftMemberGreat answers! While on the topic of testimonials on the home page.. Is there CSS to hide the testimonials block on just the home page template?
Thanks in advance!
August 22, 2016 at 1:40 pm #163894
Kathryn P.Happiness EngineerbonFire-PR – this CSS should hide testimonials on the homepage:
.home .testimonials { display: none; }
If you need further help, could you please start a new thread instead of continuing here? That way the original poster won’t receive email notifications for it, and it also helps people find answers in the forum more easily in the future. Thanks!
https://theme-support.wordpress.com/forum/automattic/forefront/#new-topic-0
August 22, 2016 at 6:16 pm #163895
emarketcraftMemberPerfect, thanks!.. Will do
-
AuthorPosts
You must be logged in to reply to this topic.