GalaBid Logo Fundraising Online

Fundraising Help Center

How can we help?
Help Centerarrow greyCampaign Set Uparrow grey

Text Edits CSS Snippets

Last updated:
October 12, 2023

Text Edits

Check out this article first if you haven't already to see how to apply these snippets to your campaign, click here

Message at the top of the auction

/* Message at the top of the auction*/

gb-item-list::before {
    content: "Your message here";
    margin-bottom: 20px;
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
    white-space: pre-wrap;
}

Update the colour of menu font

/* Update the colour of menu font */

mat-sidenav .gb-sidenav-content .gb-sidenav-item {
    color: white !important;
}

Hide donation amount collected

/* Hide donation amount collected */

gb-list-donation-item-info div p:first-child,

gb-donation-item-info table tr:first-child {
    display: none !important;
}

Hide raffle max tickets per person

/* Hide raffle max tickets per person */

gb-raffle-item-info .tickets-remaining span:nth-child(2)  {
    display: none;
}

Hide raffle tickets remaining

/* Hide raffle tickets remaining */

gb-list-raffle-item-info .list-item-remaining,

gb-raffle-item-info tr:nth-child(2) {
    display: none;
}

Hide “Buy tickets individually” option for all raffle items

/* Hide "Buy tickets individually" option for all raffle items */


mat-option.raffle-other-option {
    display: none;
}

Hide auction close countdown

/* Hide auction close countdown */

gb-auction-end-timer, gb-item-detail .timer-container {
  display: none;
}

Hide total raised and "Donation" text in list item

/* Hide total raised and "Donation" text in list item */

gb-list-item[id="d8664e04-89b5-445d-aff8-d636c8a1bf6b"] gb-list-donation-item-info {
    display: none;
}

Hide list item codes

/* Hide list item codes */
gb-list-item[id="d8664e04-89b5-445d-aff8-d636c8a1bf6b"] .gb-list-item-alias {
    display: none;
}

Change link colours

/* Change link colours */

.link {
    color: green !important;
}

POPULAR ARTICLES