Sponsoring gives events unique styling throughout the calendar and a prominent spot on your homepage in Trending events list. Below are some ideas and inspiration to really make these events pop!
Underneath each example, you'll find the appropriate CSS to apply these styles to your platform. Here's how: Admin Dash > Settings > Platform Settings > Edit Settings > Custom CSS.
Click here to find instructions on where to edit this for your Localist platform - How to Customize Your Sponsored Event Tag - Concept3D Help Center
1. Drop Shadow
1. .em-card.sponsored{
box-shadow: 0 10px 20px 5px #HEXCODE;
}
2. .em-card.sponsored{
box-shadow: 10px 10px #HEXCODE;
}
2. Border
1. .em-card.sponsored{
border: 2px solid #HEXCODE;
}
2. .em-card.sponsored{
border-top: 5px solid #HEXCODE;
}
3. Title Highlight
1. .em-card.sponsored h3.em-card_title{
text-shadow: 1px 1px 10px #HEXCODE;
}
2. .em-card.sponsored h3.em-card_title{
border-bottom: 2px solid;
border-bottom-color: #HEXCODE;
}
4. Card Fill
1. .em-card.sponsored div.em-card_text{
background: #HEXCODE;
}