Jump to content

[SOLVED]i would like to know hot to move this to the right?


Recommended Posts

hello,

 

attached is a screenshot

 

post-288012-0-22209400-1340262427_thumb.png

 

its a newbie question :) how do i move it to the right so it will be with the same line of the all right reversed?

 

this is the code in the footer:

 

<p>© 2012 <a href="http://oritschatzmanstore.com">Orit Schatzman</a>™. All rights reserved</p>
<!-- GeoTrust True Site [tm] Smart Icon tag. Do not edit. -->
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"
SRC="//smarticon.geotrust.com/si.js"></SCRIPT>
<!-- end GeoTrust Smart Icon tag -->
</div>

 

what should i add and where? thanks!

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

put the script inside of a div, and add CSS for this div like:

This in the footer

<p>© 2012 <a href="http://oritschatzmanstore.com">Orit Schatzman</a>™. All rights reserved</p>
<div class="footergestrust">
<!-- GeoTrust True Site [tm] Smart Icon tag. Do not edit. -->
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"
SRC="//smarticon.geotrust.com/si.js"></SCRIPT>
<!-- end GeoTrust Smart Icon tag -->
</div>
</div>

 

Two ways it depends of the rest of the code.

 

This in the css file

.footergeotrust{
float:right;
width: 100%;
}
or
.footergeotrust{
text-align:right;
width: 100%;
}

Link to comment
Share on other sites

thank you for your reply!

 

i cant manage to make it work. you can have a look here: http://oritschatzmanstore.com

 

also, this is the complete code of the .tpl

 

<div id="tmfooterlinks">
<div>
 <h4>{l s='Information' mod='tmfooterlinks'}</h4>
 <ul>
  <li><a href="{$link->getPageLink('contact-form.php')}">{l s='Contact' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('/content/1-delivery-returns')}">{l s='Delivery & Returns' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('/content/2-legal-notice')}">{l s='Legal Notice' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('/content/3-terms-and-conditions-of-use')}">{l s='Terms and conditions' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('/content/4-about-us')}">{l s='About us' mod='tmfooterlinks'}</a></li>
 </ul>
</div>
<div>
 <h4>{l s='Our offers' mod='tmfooterlinks'}</h4>
 <ul>
  <li><a href="{$link->getPageLink('new-products.php')}">{l s='New products' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('best-sales.php')}">{l s='Top sellers' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('/content/5-secure-payment')}">{l s='Secure Payments' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('/content/6-faq')}">{l s='Frequently Asked Questions' mod='tmfooterlinks'}</a></li>
 </ul>
</div>
<div>
 <h4>{l s='Your Account' mod='tmfooterlinks'}</h4>
 <ul>
  <li><a href="{$link->getPageLink('my-account.php')}">{l s='Your Account' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('identity.php')}">{l s='Personal information' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('addresses.php')}">{l s='Addresses' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('discount.php')}">{l s='Discount' mod='tmfooterlinks'}</a></li>
  <li><a href="{$link->getPageLink('history.php')}">{l s='Order history' mod='tmfooterlinks'}</a></li>
 </ul>
</div>
<p>© 2012 <a href="http://oritschatzmanstore.com">Orit Schatzman</a>™. All rights reserved</p>
<div class="footergeotrust">
 <!-- GeoTrust True Site [tm] Smart Icon tag. Do not edit. -->
 <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" SRC="//smarticon.geotrust.com/si.js"></SCRIPT>
 <!-- end GeoTrust Smart Icon tag -->
</div>
</div>

 

and this is the relevant part of the global.css:

 

/* ————— tmfooterlinks.tpl ————— */
#tmfooterlinks {}
#tmfooterlinks div {width:170px;float:left;padding:0 10px 0 0;}
#tmfooterlinks h4 {padding:17px 0 0 0;font:bold 12px "Arial";color:#374853;text-transform:uppercase; display:none;}
#tmfooterlinks ul {padding:32px 0 44px 0;}
#tmfooterlinks ul li:first-child{ padding:5px 0 4px 0;}
#tmfooterlinks ul li {padding:5px 0 3px 0;}
#tmfooterlinks ul li a { color:#787878; font-size:10px; line-height:14px; text-transform:uppercase; text-decoration:none; background:url(../img/marker3.png) no-repeat 0 4px; padding:0 0 0 12px;}
#tmfooterlinks ul li a:hover{ text-decoration:underline;}
#tmfooterlinks p {padding:26px 0 0 0;clear:both;color:#000; border-top:1px solid #dadada; color:#5b5b5b; font-size:16px; line-height:26px; text-transform:capitalize;}
#tmfooterlinks p a { color:#5b5b5b; text-decoration:none; font-size:16px; line-height:26px;}
#tmfooterlinks p a:hover { color:#000;}
#tmadvblock1{
position:absolute;
top:32px;
right:0;
}
.footergeotrust{
position:absolute;
top:32px;
right:0;
}

 

ive tried both options... 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...