That functionality was removed in favor of using CSS. What are you trying to do?
I want to put a space between each event like a ‘br’ or ‘<p>’ so that the events are not listed so close to each other.
Any help you can throw my way would be greatly appreciated!
.fergcorp_countdownTimer_event_li{
margin: 2em;
}
You can tweak the 2em to make the spacing bigger or smaller.
Hi. I want to do the same thing, but I can’t figure out where to put the code. Does it just go in style.css, or another file?
@tspack:
It doesn’t matter where it goes as long as it goes somewhere appropriate. Putting it in style.css works, however you may lose the change if you ever update the theme.
You may consider using a plugin, such as Header-Footer (http://wordpress.org/extend/plugins/header-footer/). In that case, you would be need to add the CSS as a Style element:
<style type="text/css">
.fergcorp_countdownTimer_event_li{
margin: 2em;
}
</style>