Jump to content

Ok, I'm stuck. Can't re-position a couple of elements.


Recommended Posts

Hi.

 

I'm using 1.6 and using the default template.

 

When I've selected a product and I'm preparing for checkout there is a slider bar in the middle of the form that shows other products in the same category.  I want to move that down.

 

Specifically I want to move it below the section where the user could enter optional or required info that THEY put in.

 

I've been at this for hours and I can't figure it out.

 

Thanks.

 

See screen shot.

post-799750-0-39504300-1401638982_thumb.jpg

Link to comment
Share on other sites

About the re-positioning. You need to open the product.tpl file in ROOT/themes/default-bootstrap folder and look for line number 536, you should find this.

{if isset($HOOK_PRODUCT_FOOTER) && $HOOK_PRODUCT_FOOTER}{$HOOK_PRODUCT_FOOTER}{/if}

You will need to move this line of code below the whole section containing all the different fields such as description,  features etc.. to line nr 647 if I am not mistaken.

Right below the end of the IF statement and above this line of code

{if isset($packItems) && $packItems|@count > 0}

After you finish this, make sure to enable combilation and disable cache so that this change can take place.

 

About the logo - I am not sure what module you're using for that, but it looks like BlockBanner.

Go again to FTP, this time to ROOT/modules/BlockBanner and open the Blockbanner.tpl file.

Change this

<img class="img-responsive" src="{$banner_img|escape:'htmlall':'UTF-8'}" alt="{$banner_desc|escape:'htmlall':'UTF-8'}" title="{$banner_desc|escape:'htmlall':'UTF-8'}" width="1170" height="65" /> 

Into This

<img class="img-responsive" src="{$banner_img|escape:'htmlall':'UTF-8'}" alt="{$banner_desc|escape:'htmlall':'UTF-8'}" title="{$banner_desc|escape:'htmlall':'UTF-8'}" />

And again, enable compilation, disable cache and it should be done.

The image will have its original size again.

Link to comment
Share on other sites

Make banner 1170px width and 65px height or change dimensions in yourdomain/themes/default-bootstrap/css/modules/blockbanner/blockbanner.css

#header .banner a img {
    display: block;
    height: 100%;
    max-height: 65px;
    max-width: 1170px;
    width: 100%;
}
Edited by dioniz (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...