Jump to content

<Solved > How to add logos on product page?


Recommended Posts

Dear friend,

 

Thanks for paying attention towards my post. Yes I wish to add common banners. i.e. 2 small logos of free shipping & express delivery logo on every product page. It will be great if you suggest solution for it.

 

Many thanks in advance.

 

Regards

Edited by Vilas (see edit history)
Link to comment
Share on other sites

Hello friends,

 

I like to add logo like lowest cost or free shipping next to add to cart. It will be great if anyone help me in this.

 

Many thanks in advance.

 

Regards

 

 

Try add a div to the product.tpl

Look up these lines about line 375

 

</form>
       {/if}
       {if $HOOK_EXTRA_RIGHT}{$HOOK_EXTRA_RIGHT}{/if}

 

insert this ( replace the image information/ path and the values for height and width with your own)

 

<div class="promo">

<img src="/img/lowest_price_guarantee.jpg" alt="lowest price this year!" width="50" height="50" />
        <img src="/img/free-shipping-icon.jpg" alt="Free Shipping!" width="50" height="50" />
       </div>

 

if you are familiar with css you can also add some properties and values in the css file. See if it works.

Hope it helps.

Link to comment
Share on other sites

  • 7 months later...

Try add a div to the product.tpl

Look up these lines about line 375

 

</form>
	{/if}
	{if $HOOK_EXTRA_RIGHT}{$HOOK_EXTRA_RIGHT}{/if}

 

insert this ( replace the image information/ path and the values for height and width with your own)

 

<div class="promo">

<img src="/img/lowest_price_guarantee.jpg" alt="lowest price this year!" width="50" height="50" />
	 <img src="/img/free-shipping-icon.jpg" alt="Free Shipping!" width="50" height="50" />
	</div>

 

if you are familiar with css you can also add some properties and values in the css file. See if it works.

Hope it helps.

 

Thanks friend for response. Yes it worked for me. Only thing is that can u provide me example of how to apply css effect to it.

 

Will be great if you provide more detailed information.

 

Thanks

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...