I seem to get varied rendered HTML in my webpage, specifically extra “” elements using what seem as similar EE tags. For the EE template code below:
{exp:query sql="SELECT…}
<h3><a title="View details" href="{path='group/index/{url}'}">{title}</a></h3>
{/exp:query}The html correctly renders:
<h3>
<a href="http://mysite.com/index.php/S/group/entry_url" title="View details">Entry Title</a>
</h3>But for similar EE template code:
{exp:channel:entries}
Phone:+44 {phone1}
{/exp:channel:entries}Renders the “phone1” tag as a new “” element as so:
Phone:+44
21340171
Giving me the tag content in an unwanted new line, I just want on one line “Phone:+44 21340171”. The containing div has a large enough width to hold the contents of “phone1”