06/06/2014 at 9:38 am
#293145
Keymaster
@ ACDC
By default, they are block level so they will show on new lines. from the screenshot, it appears that something is settings the name as an inline element. The usual culprit is the CSS from the theme is overriding the the template’s CSS.
From a screenshot, near impossible to give a working solution, but here’s my best guess. Add the following to the theme’s custom CSS area or to the end of its styles.css file:
#cn-tile-plus .cn-entry .fn {
display: block !important;
}
I’m assuming the screen show is Tile Plus with the CSS…
Let me know if that does the trick. If it does not, If you can share a link to the directory page, I’ll take a look.