WPIntell

Source evidence

Styling the plugin

Show Eventbrite Events – Event Feed for Eventbrite · support · 2022-05-24T06:49:00+00:00

mixedsentiment
highseverity
0.95relevance
6replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 27 rows with source links

14.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

23 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
melanie71 resolved
Hello! Great plugin 🙂 I’m wondering if it’s possible to change the color and size of the fonts for the events? Perhaps with Custom CSS? Thank you Melanie The page I need help with: [ log in to see the link] Hi Melanie, Thank you! 🙂 Yes, a custom CSS would be a way to do that. Check this article in our documentation for all possible CSS selectors. For example, if you want to style the event description the same way as the other body text on your website, the custom CSS would be like this: .event-feed-for-eventbrite-app-id-3481 .eventbrite-feed .eventbrite-item-description { font-size: 16px; color: #515151; } With the help of developer tools in your browser (for getting the correct CSS selector for the element you want to customize), you can style all the aspects of the event feed. Still, it can be a bit challenging if you are not a developer. If you are unsure how to use developer tools, I recommend asking a web developer to help you with this. For him, it should be an easy task. Let me know if you need any more help with this 🙂 This reply was modified 4 years ago by Jan Pencik . Reason: code edit Thank you Jan! That is most helpful. I have managed to change all the different content sections, however can’t get the buttons to change. Any ideas what I’m doing wrong? .event-feed-for-eventbrite-app-id-3481 .eventbrite-feed .eventbrite-item-buttons { font-size: 14px !important; letter-spacing: 0.7px !important; border-radius: 2px !important; text-transform: uppercase !important; padding: 14px 30px 14px 30px !important; } Also wondering if it’s possible to adjust the date format? My WordPress settings are set to day-month-year, however the Eventbrite feed is displaying month-day-year. I can’t see any settings to adjust this in either Eventbrite or your plugin. Thank you Melanie Hi Melanie, great job! With the button, you were almost there. Just target the button element that is descendant to your selector. So the code will be: .event-feed-for-eventbrite-app-id-3481 .eventbrite-feed .eventbrite-item-buttons button { font-size: 14px !important; letter-spacing: 0.7px !important; border-radius: 2px !important; text-transform: uppercase !important; padding: 14px 30px 14px 30px !important; } Or if you want to style Buy button and View details button differently, replace the button selector with either .eventbrite-item-checkout or .eventbrite-item-details class. Fantastic! Thanks Jan. Any ideas about the date formatting issue I mentioned above? Regards Melanie Hi Melanie, the plugin has its own settings for date formatting. You can find it in Eventbrite Events → Settings and then click on the Date & address tab on top. You can also find more information about this in our documentation . Best Regards Jan Thank you! Not sure how I missed that one … Regards Melanie

Comments

6 shown
Jan Pencik 2022-05-24T10:59:00+00:00

Hi Melanie, Thank you! 🙂 Yes, a custom CSS would be a way to do that. Check this article in our documentation for all possible CSS selectors. For example, if you want to style the event description the same way as the other body text on your website, the custom CSS would be like this: .event-feed-for-eventbrite-app-id-3481 .eventbrite-feed .eventbrite-item-description { font-size: 16px; color: #515151; } With the help of developer tools in your browser (for getting the correct CSS selector for the element you want to customize), you can style all the aspects of the event feed. Still, it can be a bit challenging if you are not a developer. If you are unsure how to use developer tools, I recommend asking a web developer to help you with this. For him, it should be an easy task. Let me know if you need any more help with this 🙂 This reply was modified 4 years ago by Jan Pencik . Reason: code edit

melanie71 2022-05-26T05:59:00+00:00

Thank you Jan! That is most helpful. I have managed to change all the different content sections, however can’t get the buttons to change. Any ideas what I’m doing wrong? .event-feed-for-eventbrite-app-id-3481 .eventbrite-feed .eventbrite-item-buttons { font-size: 14px !important; letter-spacing: 0.7px !important; border-radius: 2px !important; text-transform: uppercase !important; padding: 14px 30px 14px 30px !important; } Also wondering if it’s possible to adjust the date format? My WordPress settings are set to day-month-year, however the Eventbrite feed is displaying month-day-year. I can’t see any settings to adjust this in either Eventbrite or your plugin. Thank you Melanie

Jan Pencik 2022-05-26T21:40:00+00:00

Hi Melanie, great job! With the button, you were almost there. Just target the button element that is descendant to your selector. So the code will be: .event-feed-for-eventbrite-app-id-3481 .eventbrite-feed .eventbrite-item-buttons button { font-size: 14px !important; letter-spacing: 0.7px !important; border-radius: 2px !important; text-transform: uppercase !important; padding: 14px 30px 14px 30px !important; } Or if you want to style Buy button and View details button differently, replace the button selector with either .eventbrite-item-checkout or .eventbrite-item-details class.

melanie71 2022-05-27T03:33:00+00:00

Fantastic! Thanks Jan. Any ideas about the date formatting issue I mentioned above? Regards Melanie

Jan Pencik 2022-05-27T07:17:00+00:00

Hi Melanie, the plugin has its own settings for date formatting. You can find it in Eventbrite Events → Settings and then click on the Date & address tab on top. You can also find more information about this in our documentation . Best Regards Jan

melanie71 2022-05-28T05:03:00+00:00

Thank you! Not sure how I missed that one … Regards Melanie