I have just installed this very nice mod but have a problem with the black line at the end of the description overwriting the text.
To see what I mean, here is the test site:
http://snow.byethost8.com/snowshop2/...&products_id=6
I have Image Handler 2 and Fual Slimbox installed so I had to hack my html_header.php to make them all work together.
The hack was simple, I just added the following lines before the //DEBUG: section at the end so the page brought in the tpp .css and .js files.
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
Ok, back to my problem.....
I can add a blank line to the end of my product description to fix it, but I thought there was probably a better solution rather than going through all my product descriptions!
I did notice the div id for the product description was productDescription_1. I can't find that defined in any .css. Could that be the problem?
Thanks for taking a look!
Bookmarks