Here's a quick one.
The Problem: When inserting a table into the descriptions field inside the admin area of a Magento store the output creates line spaces - resulting in 'br' tags on your page.
The solution: you need to take the spaces out of your code
for example you may have
<tr>
<td>hello</td>
</tr>
<tr>
<td>world</td>
</tr>
you'll need to change this to
<tr><td>hello</td></tr><tr><td>world</td></tr>
Then you will not have any spaces in the output. Just a very confusing view of spaghetti code to work though in descriptions tho.
4 comments:
Hey thanks! Ive been tearing my hair out trying to solve this and stumbled upon your post... it worked!
Hi,
Thanks very much. Been looking at this for an hour. Works great.
Its always simple when you know how!!
You sir are a GOD! Thanks so much for this information :D
You sir are a GOD! Thanks so much for this advice :D
Post a Comment