Page 1 of 1

Positioning Logos (Solved)

Posted: Thu Apr 17, 2014 1:12 am
by cart builder
Greetings all!

Was wondering if anybody could help me with the following please:

I need to add/change something to the following Trustwave logo script to allow me to position the logo properly on my website (in footer.tpl) :

<script type="text/javascript" src="https://sealserver.trustwave.com/seal.j ... "></script>


Although i know how to create script for normal images to position them, for e.g.

<img src="image/data/YOUR-IMAGE.PNG" style="position:absolute; margin-left:480px; margin-top:15px ; width:50px ; height:50px ;" alt=""/>

I don't know how to change the script for the Trustwave logo, which would redirect the customer to the Trustwave website. I've spent hours trying to sort this out so any help would be greatly appreciated !

Re: Positioning Logos

Posted: Thu Apr 17, 2014 1:30 am
by tacobandito
Try

Code: Select all

<div style="STYLES">
<script type="text/javascript" src="https://sealserver.trustwave.com/seal.js?style=normal"></script>
</div>
If that fails, your going to need to make that change without using inline CSS. It will need to be added to the stylesheet.css file. Just look at the page (where the script is loaded) and look for an ID or a CLASS that you can hook onto.

Re: Positioning Logos (Solved)

Posted: Thu Apr 17, 2014 3:01 am
by cart builder
Hi Taco,

Many thanks for your quick reply. I followed your advice & replaced "STYLES" with the following code:

"position:absolute; margin-left:10px; margin-top:15px">

& it worked! I then proceeded to place the logo in the right column as it looked better, but it dragged half my site to the left ! So after a bit more messing around I realised i'd forgot to put </ul> </div> after the trustwave script, and then it worked out nicely.

So thanks again for saving me so much trouble - you truly are a wizard !

Re: Positioning Logos (Solved)

Posted: Thu Apr 17, 2014 4:22 am
by tacobandito
Thanks :D