@ James
Apologies my and my entire family has been ill so I have been running a little behind. No excuse but it the reason.
The reason the shortcode did not work is because you did not have the addon yet. I installed it and now the shortcode works.
There is a CSS conflict with the them though. Well, not as much as a conflict than the theme is doing something poorly. The HTML span elements are inline elements. The theme is settings them as inline-blocks, globally. The only way to I can think of fixing this is to add this to the theme’s custom CSS area:
span {
display: inline;
}
But doing this could break some of the theme’s layout because any spans within the them that is relying on spans being inline-blocks will no longer be correct. Ideally the theme author should fix this and adjust the theme accordingly.
Hope this helps!
