I have the code like this
<div>
<span>This is text</span>
<span>
<dl>
<dt><a href="#"><span>Please select category</span></a></dt>
<dd>
<ul>
<li><a href="#">Brazil<span class="value">Cat1</span></a></li>
<li><a href="#">France<span class="value">Cat2</span></a></li>
</ul>
</dd>
</dl>
</span>
</div>
The output I want is in one line like this.
This is text {Please Select Category dropdownbox}
Currently, the problem i got is, it became two line.
How can i get it into one line ? Please kindly help me with it. Thanks.