Tagged: x
-
AuthorPosts
-
January 11, 2017 at 11:03 pm #1326739
NoellemenaParticipantHey! Have not asked a question for while! 🙂
Ok, so on my client’s site http://danielledonaldson.com/ I want to hide all of the footer widgets (leaving the footer itself though) on all pages except the Blog and Blog Posts. (archives too etc)I have CSS to remove per page, post ID but will drive me crazy. I want to go the opposite and just ONLY show on the Blog and Blog posts.
This would be perfect 🙂
Thanks!
NoelleJanuary 12, 2017 at 12:30 am #1326824
LelyModeratorHello Noelle,
Please use the following CSS:
.x-colophon.top { display:none; /*Hide footer widget for the entire site*/ } .blog .x-colophon.top, .single-post .x-colophon.top { display:none; /* Override above CSS and display this footer widgets on blog index page and single post page*/ }Hope this helps.
January 12, 2017 at 8:49 pm #1328183
NoellemenaParticipantThank you so much, it works for hiding site-wide, but I cannot get it to show on blog posts.
http://danielledonaldson.com/e-excellent-starts-exciting-book-projects/Thoughts??
THANKS! NoelleJanuary 12, 2017 at 11:39 pm #1328332
Paul RModeratorHi Noelle,
Kindly replace the code with this.
.x-colophon.top { display:none; /*Hide footer widget for the entire site*/ } .blog .x-colophon.top, .single-post .x-colophon.top { display:block; /* Override above CSS and display this footer widgets on blog index page and single post page*/ }Hope that helps.
January 12, 2017 at 11:48 pm #1328340
RupokMemberHi Noelle,
Thanks for writing back. There was a small glitch on the suggested code as the second block should say
display: block;. Kindly update the code to following :.x-colophon.top { display:none; /*Hide footer widget for the entire site*/ } .blog .x-colophon.top, .single-post .x-colophon.top { display:block; /* Override above CSS and display this footer widgets on blog index page and single post page*/ }Cheers!
January 14, 2017 at 4:12 pm #1330179
NoellemenaParticipantExcellent, Thank you, this did it 🙂
January 15, 2017 at 12:34 am #1330524
ChristopherModeratorYou’re welcome.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1326739 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
