Gk-left is below mainbody

Ecommerce design Joomla template to start your online business with VirtueMart and additional eshop features.
GK User
Tue Aug 14, 2012 11:44 pm
The gk-left column is displayed below the mainbody??? on the homepage it looks ok though but every other page modules are below mainbody. Any ideas?
http://www.shopmilanoshoes.com/test/Blue-sandals.html
user: test
pass: test
Thanks for any ideas.
User avatar
Junior Boarder

GK User
Wed Aug 15, 2012 12:01 am
Hi

I'm afraid data log provided doesn't work.
Please check it

Cheers
User avatar
Platinum Boarder

GK User
Wed Aug 15, 2012 1:02 am
Sorry about that... The user login info is now working.
Seichinha wrote:Hi

I'm afraid data log provided doesn't work.
Please check it

Cheers
User avatar
Junior Boarder

GK User
Wed Aug 15, 2012 1:47 am
I have continued debugging and it's something to do with the flypage. If I use a different flypage the left column is ok...
User avatar
Junior Boarder

GK User
Wed Aug 15, 2012 6:44 pm
Just an update: I looked through the flypage but it doesn't appear to have anything that would break the layout... Any ideas are appreciated :D
User avatar
Junior Boarder

GK User
Thu Aug 16, 2012 12:34 am
I fixed it. This post is just for referance if someone else makes my mistake.

Wrong: I moved the additional images to rcolumn.
Code: Select all
<?php if( !empty($images)) { ?>
                    <div class="thumbnailListContainer">
                        <h5><?php echo $VM_LANG->_('PHPSHOP_MORE_IMAGES') ?></h5>
                        <?php

                        echo $this->vmListAdditionalImages( $product_id, $images );

                        ?>
                    </div>
                    <?php }    ?>
                </div>
                </div>
               
               <?php echo $addtocart ?>


Right:
Code: Select all
<?php if( !empty($images)) { ?>
                    <div class="thumbnailListContainer">
                        <h5><?php echo $VM_LANG->_('PHPSHOP_MORE_IMAGES') ?></h5>
                        <?php

                        echo $this->vmListAdditionalImages( $product_id, $images );

                        ?>
                    </div>
                    <?php }    ?>
                               
               <?php echo $addtocart ?>
User avatar
Junior Boarder


cron