How can I create a single rendered line of multiple fields within a template? There always seems to be a return after every field when the page renders. For example,
<ol class="results">
{exp:channel:entries channel="block-schedule" paginate="bottom" limit="3"}
<li class="testionials">
{title}{rank}
6/27:{day-1}
6/28:{day-2}
6/29:{day-3}
6/30:{day-4}
7/01:{day-5}
</li>
{paginate}
Page {current_page} of {total_pages} pages {pagination_links}
{/paginate}
{/exp:channel:entries}
</ol>produces..
ETA-Late
Smith, John
CA2
6/27:
ETA-Late
6/28:
ETA-Late
6/29:
6/30:
ETA-D
7/01:
when I want it to produce…
ETA-Late
Smith, John CA2
6/27: ETA-Late
6/28: ETA-Late
6/29:
6/30: ETA-D
7/01: ETA-D