Removing the Search Box?
Hi, everyone,
I'm wondering if anyone here know how to remove the search box from their TR page. I was told I could always hide it with a "CSS class call-out on the page, but I unfortunately have no idea what that is or how to accomplish it. Any suggestions?
Comments
-
Hi Courtney,
I would recommend checking out Firebug in the Firefox browser. You can use it to explore the code on a live page and discover what CSS is controlling areas on your page. If you'll share a link to your event I'll look up the CSS for you.
Kent
0 -
Kent Gilliam:
Hi Courtney,
I would recommend checking out Firebug in the Firefox browser. You can use it to explore the code on a live page and discover what CSS is controlling areas on your page. If you'll share a link to your event I'll look up the CSS for you.
Kent
OK! Thanks for the information/suggestion. Here's the link.
http://chr18.convio.net/site/TR?fr_id=1130&pg=entry
Thanks for any/all suggestions you might have!!
0 -
Courtney Sebold:
OK! Thanks for the information/suggestion. Here's the link.
http://chr18.convio.net/site/TR?fr_id=1130&pg=entry
Thanks for any/all suggestions you might have!!
Just to confirm, you want to remove the "Find a Participant" element, right? If so, the code looks like this:
<div id="donate_link_container" class="entry-option-info-container">
<h3 class="menu-title">Find a Participant or Team:</h3>
<div id="search_part_team" class=" ui-tabs ui-widget ui-widget-content ui-corner-all">
</div>So in your homepage code view at the top you can enter:
<style>
#donate_link_container {
display: none;
}
</style>This will hide it there. Let me know if I didn't understand you correctly.
Kent
0 -
Kent Gilliam:
Just to confirm, you want to remove the "Find a Participant" element, right? If so, the code looks like this:
<div id="donate_link_container" class="entry-option-info-container">
<h3 class="menu-title">Find a Participant or Team:</h3>
<div id="search_part_team" class=" ui-tabs ui-widget ui-widget-content ui-corner-all">
</div>So in your homepage code view at the top you can enter:
<style>
#donate_link_container {
display: none;
}
</style>This will hide it there. Let me know if I didn't understand you correctly.
Kent
Thanks so much, Kent! This is unbelievably helpful; it is just a shame that I know so little about this type of thing. So, I guess that i need to create a new style sheet for this particular page, right? That's tripping me up a little bit.
0 -
Courtney Sebold:
Thanks so much, Kent! This is unbelievably helpful; it is just a shame that I know so little about this type of thing. So, I guess that i need to create a new style sheet for this particular page, right? That's tripping me up a little bit.
Trust me, we all learn as we go. I know just enough code to be dangerous but I did your job when I was with an org. It will come in time. If you every want to chat about things you can do to boost your skillset just let me know. I'm happy to help.
As for this question, is your TR homepage built in the Greeting page under your TR event? If so, you can just go into that editor and open it in HTML view and paste my code at the top of it. No need to build a new sheet for that.
0 -
Kent Gilliam:
Trust me, we all learn as we go. I know just enough code to be dangerous but I did your job when I was with an org. It will come in time. If you every want to chat about things you can do to boost your skillset just let me know. I'm happy to help.
As for this question, is your TR homepage built in the Greeting page under your TR event? If so, you can just go into that editor and open it in HTML view and paste my code at the top of it. No need to build a new sheet for that.
I most definitely will ping you to ask for what you did to boost your skills! Maybe next week once we've got this campaign launched and I have a few moments to think!
In the meantime, though, yes, the TR homepage is in the greeting page. I went into that editor and pasted the code you included, but no love. The "Search for a Participant Box" is still there. I am sure I'm doing something wrong.0 -
Courtney Sebold:
I most definitely will ping you to ask for what you did to boost your skills! Maybe next week once we've got this campaign launched and I have a few moments to think!
In the meantime, though, yes, the TR homepage is in the greeting page. I went into that editor and pasted the code you included, but no love. The "Search for a Participant Box" is still there. I am sure I'm doing something wrong.Try removing the period at the front of the CSS. I'm about done with my webinar stuff and can jump into your site to take a look if you'd like.
0 -
Kent Gilliam:
Try removing the period at the front of the CSS. I'm about done with my webinar stuff and can jump into your site to take a look if you'd like.
I'm in your site and trying to figure out where that right-column is even coming from. I'll holler at you in a bit.
0 -
Kent Gilliam:
I'm in your site and trying to figure out where that right-column is even coming from. I'll holler at you in a bit.
Wow!! Thank you for going above and beyond, Kent! Any insights you might have are very welcome!
0 -
Courtney Sebold:
Wow!! Thank you for going above and beyond, Kent! Any insights you might have are very welcome!
Ok. I figured out what the problem was. That's a default element that you can add with the responsive design layout. I went into your wrapper and created a new version and added this:
<style>
#donate_link_container {
display: none;
}
</style>That removed it. Please check around in your pages and make sure that didn't mess anything else up. It shouldn't have but I just want to make sure.
Kent
0 -
Kent Gilliam:
Ok. I figured out what the problem was. That's a default element that you can add with the responsive design layout. I went into your wrapper and created a new version and added this:
<style>
#donate_link_container {
display: none;
}
</style>That removed it. Please check around in your pages and make sure that didn't mess anything else up. It shouldn't have but I just want to make sure.
Kent
Oh! YES!! This is EXACTLY what I am looking for! The only problem is that this removed the box for all the other TR events...Is it possible to just have it removed on the one I linked earlier? I was thinking I could just create a new wrapper with that element removed, and then use that for this particular event, but I just couldn't figure out how to take it out of the wrapper...
Seriously, thank you for going so far out of your way. I will definitely need to pick your brain on how you went from my level of experience/understanding of webby stuff to being able to answer these kinds of questions!0 -
Courtney Sebold:
Oh! YES!! This is EXACTLY what I am looking for! The only problem is that this removed the box for all the other TR events...Is it possible to just have it removed on the one I linked earlier? I was thinking I could just create a new wrapper with that element removed, and then use that for this particular event, but I just couldn't figure out how to take it out of the wrapper...
Seriously, thank you for going so far out of your way. I will definitely need to pick your brain on how you went from my level of experience/understanding of webby stuff to being able to answer these kinds of questions!Ok. Try your other events now. I had to create a test for your event ID to only hide that on the 1130 event. I did it with this:
[[?x[[S334:fr_id]]x::1130::
<style>
#donate_link_container {
display: none;
}
</style>::]]Let me know if everything looks good.
0 -
Kent Gilliam:
Ok. Try your other events now. I had to create a test for your event ID to only hide that on the 1130 event. I did it with this:
[[?x[[S334:fr_id]]x::1130::
<style>
#donate_link_container {
display: none;
}
</style>::]]Let me know if everything looks good.
This is perfection! Thank you so much for your investigation and work! It is so very much appreciated. I had not been able to figure it out. It seemed so simple but yet proved to be so complex. I'll be pinging you with some questions about how you got to where you are, if you don't mind!
Again, MANY MANY THANKS!
0 -
Courtney Sebold:
This is perfection! Thank you so much for your investigation and work! It is so very much appreciated. I had not been able to figure it out. It seemed so simple but yet proved to be so complex. I'll be pinging you with some questions about how you got to where you are, if you don't mind!
Again, MANY MANY THANKS!
Glad to help. Honestly it was something I didn't know and had to ask around so I had some mates here that helped. But definitely let me know when you'd like to chat on the phone about things you can do to improve your knowledge and skills. I've been working here for 7 years and with Luminate for almost 10. I'm happy to share what I've learned.
Kent
0 -
I know this was a number of years ago now, and I believe Blackbaud removed a lot of the editing features found in the "Customize Pages > TeamRaiser Pages" area. When I try this code there now it doesn't seem to work.
Does anyone know of a similar code that will remove the Participant Search from the current system?
Thanks!
Lindsay0 -
#participantSearch
{
display: none;
}
Looks like that id did change and this is the new id.
Thanks,
Phil0
Categories
- All Categories
- Shannon parent
- shannon 2
- shannon 1
- 21 Advocacy DC Users Group
- 14 BBCRM PAG Discussions
- 89 High Education Program Advisory Group (HE PAG)
- 28 Luminate CRM DC Users Group
- 8 DC Luminate CRM Users Group
- Luminate PAG
- 5.9K Blackbaud Altru®
- 58 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 409 bbcon®
- 2K Blackbaud CRM™ and Blackbaud Internet Solutions™
- donorCentrics®
- 1.1K Blackbaud eTapestry®
- 2.8K Blackbaud Financial Edge NXT®
- 1.1K Blackbaud Grantmaking™
- 527 Education Management Solutions for Higher Education
- 21 Blackbaud Impact Edge™
- 1 JustGiving® from Blackbaud®
- 4.6K Education Management Solutions for K-12 Schools
- Blackbaud Luminate Online & Blackbaud TeamRaiser
- 16.4K Blackbaud Raiser's Edge NXT®
- 4.1K SKY Developer
- 547 ResearchPoint™
- 151 Blackbaud Tuition Management™
- 1 YourCause® from Blackbaud®
- 61 everydayhero
- 3 Campaign Ideas
- 58 General Discussion
- 115 Blackbaud ID
- 87 K-12 Blackbaud ID
- 6 Admin Console
- 949 Organizational Best Practices
- 353 The Tap (Just for Fun)
- 235 Blackbaud Community Feedback Forum
- 124 Ninja Secret Society
- 32 Blackbaud Raiser's Edge NXT® Receipting EAP
- 55 Admissions Event Management EAP
- 18 MobilePay Terminal + BBID Canada EAP
- 36 EAP for New Email Campaigns Experience in Blackbaud Luminate Online®
- 109 EAP for 360 Student Profile in Blackbaud Student Information System
- 41 EAP for Assessment Builder in Blackbaud Learning Management System™
- 9 Technical Preview for SKY API for Blackbaud CRM™ and Blackbaud Altru®
- 55 Community Advisory Group
- 46 Blackbaud Community Ideas
- 26 Blackbaud Community Challenges
- 7 Security Testing Forum
- 1.1K ARCHIVED FORUMS | Inactive and/or Completed EAPs
- 3 Blackbaud Staff Discussions
- 7.7K ARCHIVED FORUM CATEGORY [ID 304]
- 1 Blackbaud Partners Discussions
- 1 Blackbaud Giving Search™
- 35 EAP Student Assignment Details and Assignment Center
- 39 EAP Core - Roles and Tasks
- 59 Blackbaud Community All-Stars Discussions
- 20 Blackbaud Raiser's Edge NXT® Online Giving EAP
- Diocesan Blackbaud Raiser’s Edge NXT® User’s Group
- 2 Blackbaud Consultant’s Community
- 43 End of Term Grade Entry EAP
- 92 EAP for Query in Blackbaud Raiser's Edge NXT®
- 38 Standard Reports for Blackbaud Raiser's Edge NXT® EAP
- 12 Payments Assistant for Blackbaud Financial Edge NXT® EAP
- 6 Ask an All Star (Austen Brown)
- 8 Ask an All-Star Alex Wong (Blackbaud Raiser's Edge NXT®)
- 1 Ask an All-Star Alex Wong (Blackbaud Financial Edge NXT®)
- 6 Ask an All-Star (Christine Robertson)
- 21 Ask an Expert (Anthony Gallo)
- Blackbaud Francophone Group
- 22 Ask an Expert (David Springer)
- 4 Raiser's Edge NXT PowerUp Challenge #1 (Query)
- 6 Ask an All-Star Sunshine Reinken Watson and Carlene Johnson
- 4 Raiser's Edge NXT PowerUp Challenge: Events
- 14 Ask an All-Star (Elizabeth Johnson)
- 7 Ask an Expert (Stephen Churchill)
- 2025 ARCHIVED FORUM POSTS
- 322 ARCHIVED | Financial Edge® Tips and Tricks
- 164 ARCHIVED | Raiser's Edge® Blog
- 300 ARCHIVED | Raiser's Edge® Blog
- 441 ARCHIVED | Blackbaud Altru® Tips and Tricks
- 66 ARCHIVED | Blackbaud NetCommunity™ Blog
- 211 ARCHIVED | Blackbaud Target Analytics® Tips and Tricks
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- Luminate CRM DC Users Group
- 225 ARCHIVED | Blackbaud eTapestry® Tips and Tricks
- 1 Blackbaud eTapestry® Know How Blog
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
- 1 Blackbaud K-12 Education Solutions™ Blog
- 280 ARCHIVED | Mixed Community Announcements
- 3 ARCHIVED | Blackbaud Corporations™ & Blackbaud Foundations™ Hosting Status
- 1 npEngage
- 24 ARCHIVED | K-12 Announcements
- 15 ARCHIVED | FIMS Host*Net Hosting Status
- 23 ARCHIVED | Blackbaud Outcomes & Online Applications (IGAM) Hosting Status
- 22 ARCHIVED | Blackbaud DonorCentral Hosting Status
- 14 ARCHIVED | Blackbaud Grantmaking™ UK Hosting Status
- 117 ARCHIVED | Blackbaud CRM™ and Blackbaud Internet Solutions™ Announcements
- 50 Blackbaud NetCommunity™ Blog
- 169 ARCHIVED | Blackbaud Grantmaking™ Tips and Tricks
- Advocacy DC Users Group
- 718 Community News
- Blackbaud Altru® Hosting Status
- 104 ARCHIVED | Member Spotlight
- 145 ARCHIVED | Hosting Blog
- 149 JustGiving® from Blackbaud® Blog
- 97 ARCHIVED | bbcon® Blogs
- 19 ARCHIVED | Blackbaud Luminate CRM™ Announcements
- 161 Luminate Advocacy News
- 187 Organizational Best Practices Blog
- 67 everydayhero Blog
- 52 Blackbaud SKY® Reporting Announcements
- 17 ARCHIVED | Blackbaud SKY® Reporting for K-12 Announcements
- 3 Luminate Online Product Advisory Group (LO PAG)
- 81 ARCHIVED | JustGiving® from Blackbaud® Tips and Tricks
- 1 ARCHIVED | K-12 Conference Blog
- Blackbaud Church Management™ Announcements
- ARCHIVED | Blackbaud Award Management™ and Blackbaud Stewardship Management™ Announcements
- 1 Blackbaud Peer-to-Peer Fundraising™, Powered by JustGiving® Blogs
- 39 Tips, Tricks, and Timesavers!
- 56 Blackbaud Church Management™ Resources
- 154 Blackbaud Church Management™ Announcements
- 1 ARCHIVED | Blackbaud Church Management™ Tips and Tricks
- 11 ARCHIVED | Blackbaud Higher Education Solutions™ Announcements
- 7 ARCHIVED | Blackbaud Guided Fundraising™ Blog
- 2 Blackbaud Fundraiser Performance Management™ Blog
- 9 Foundations Events and Content
- 14 ARCHIVED | Blog Posts
- 2 ARCHIVED | Blackbaud FIMS™ Announcement and Tips
- 59 Blackbaud Partner Announcements
- 10 ARCHIVED | Blackbaud Impact Edge™ EAP Blogs
- 1 Community Help Blogs
- Diocesan Blackbaud Raiser’s Edge NXT® Users' Group
- Blackbaud Consultant’s Community
- Blackbaud Francophone Group
- 1 BLOG ARCHIVE CATEGORY
- Blackbaud Community™ Discussions
- 8.3K Blackbaud Luminate Online® & Blackbaud TeamRaiser® Discussions
- 5.7K Jobs Board