I'm not exactly sure what you are asking. The ShopSite security image is displayed on the left of that page. Do you want to move it so that it is higher up in the left column?
The code that displays the image on that pages is found in the gradient1-page.sst near the bottom
- Code: Select all
[-- IF ShopSiteSecurityImage --]
<div id="securityImage">
[-- ShopSiteSecurityImage --]
</div>
[-- END_IF --]
If you want it to display below all the links on the left you would probably want to move the above code to this section of code and put it where the XX is.
- Code: Select all
[-- IF PageLinks.Left --]
[-- PageLinks.Left --]
[-- IF PageMenu --]
<div id="sectionLinks">
<ul>
[-- IF WishList --]<li>[-- WishListLink --]</li>[-- END_IF --]
[-- IF SC_Registration --]<li><a href="[-- SHOPPING_CART_URL BASE --]/order.cgi?func=3&storeid=[-- STORE.ID --]&html_reg=html">[-- STORE.289 --]</a></li>[-- END_IF --]
[-- IF GiftCert --]<li>[-- GiftCertLink --]</li>[-- END_IF --]
[-- IF TELLAFRIEND --]<li>[-- TELLAFRIEND VAR.tell_friend_link --]</li>[-- END_IF --]
XX
</ul></div>
[-- END_IF --]
It might need to be surrounded by a <li> ... </li> but I don't know for sure. Give that a try and see if that works for you.