Xavier wrote: Hi,
You potentially have to move the code to another place in the view and/or add more PHP conditions to display or not that div.
For example, to not display the div at the last row, you have to do a php count on the rows and a counter, and if count != counter so display the div, else don't display it (so not displayed for the last one).
Thanks for the reply. I tried doing the below code, which parsed but the argument must not be correct. It just does "row-line" I am not a PHP coder
<?php
}
if($current_column>=$columns){
if (count != 1){
$current_row++;
echo '<div id="row-line"></div>';}
else {$current_row++;
echo '<div id="row-line23"></div>';}
if(!HIKASHOP_RESPONSIVE) {
?>
I still also get the problem with the actual div box, you mentioned to move that but I dont know where to put what code.
Thanks.