Too many <br> tags on the entry HTML mark up?
Posted: Wed Nov 09, 2005 8:40 am
Hi all,
First thing first thanx for the software and let us enjoy the use of blogging.
I just found an annoying issue (not sure if it is a problem) - when my blog entry text is stored as HTML in the mysql table such as :
But when it is displayed when browsing the entries in the browser, it seems the HTML entry body is marked up as:
Virtually putting <br> tags every single line/tag. While this doesnt do anything bad in Internet Explorer (i.e. the br doest add any new spaces), on Firefox, it seems that the br tags are basically doubling the spaces between every 2 lines of text (or in the above case, each line bullet point) and making the appearance full of spaces and ugly in Firefox.
I tried to look up the source but doesnt seem like any particular code is adding <br> tags but my wild guess is something to do with Smarty?
So my question is where I can change the code from adding these <br> tags?
Any help is deeply appreciated. Thanx.
First thing first thanx for the software and let us enjoy the use of blogging.
I just found an annoying issue (not sure if it is a problem) - when my blog entry text is stored as HTML in the mysql table such as :
Code: Select all
<ul>
<li>Point 1 blah blah</li>
<li>Point 2 blah blah</li>
<li>Point 3 blah blah</li>
</ul>
Code: Select all
<ul><br>
<li>Point 1 blah blah</li><br>
<li>Point 2 blah blah</li><br>
<li>Point 3 blah blah</li><br>
</ul><br>
I tried to look up the source but doesnt seem like any particular code is adding <br> tags but my wild guess is something to do with Smarty?
So my question is where I can change the code from adding these <br> tags?
Any help is deeply appreciated. Thanx.