Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Please see http://www.nltkd.com/
 The Upcoming Events has the numbering on a line higher than the event text, plus I cannot seem to set the font size of the event title. It apparently takes the formatting from the theme??? Any help before I go back to the event calender plugin authors for solution.
Hi
Please give the following a try under Appearance > Custom CSS to resolve:
.widget_tribe-events-list-widget ol { list-style: none; margin-left: 0; } .widget_tribe-events-list-widget ol li { margin-left: 0; }that removed the numbering.
A little better than having the numbers all alone but not the ideal soluton. (it is not a critial issue for my site)
The theme’s CSS is taking priority here. Here are the other selectors you could edit:
.entry-content .widget_tribe-events-list-widget a { color: #1e73be; } .entry-content .widget_tribe-events-list-widget a:hover { color: #f47e3c; } .entry-content .widget_tribe-events-list-widget h4 { font-size: 1.4em; }thanks, i have had a fiddle and even aligned the text to the right. I am content for now. Thanks again
For sure. Glad that mostly helped. All the best.
Hi Biodun,
Can you share the code that helped you to right-align the events? I’d like to try it out and see if it looks better. Thanks.
I simply added
to the above
.widget_tribe-events-list-widget ol { list-style: none; margin-left: 0; text-align: right; } .widget_tribe-events-list-widget ol li { margin-left: 0; text-align: right; } .entry-content .widget_tribe-events-list-widget a { color: #299bff; } .entry-content .widget_tribe-events-list-widget a:hover { color: #f47e3c; } .entry-content .widget_tribe-events-list-widget h4 { font-size: 1.1em; }