Hi. Looking for some pointers here:
I'm in the process of trying to give my site a makeover. It functions well enough but looks.. well 'rough'. I'm trying to learn to do these things myself. Although I've had some success I'm stuck on an issue I'm having with my shopping cart summary. It's black, small and ugly. I'm trying to replace it with something like this that I made:
http://i221.photobucket.com/albums/d...ur_basket2.png
..and thought I could do it like this:
But it's obviously rubbish because it's not showing. Any help?
I'm in the process of trying to give my site a makeover. It functions well enough but looks.. well 'rough'. I'm trying to learn to do these things myself. Although I've had some success I'm stuck on an issue I'm having with my shopping cart summary. It's black, small and ugly. I'm trying to replace it with something like this that I made:
http://i221.photobucket.com/albums/d...ur_basket2.png
..and thought I could do it like this:
HTML Code:
#your_basket_container { background-image:url('your_basket2.png'); background-repeat:no-repeat; /*background-position:right top; margin-left:0px;*/ } <div id="your_basket_container"> <table width="200" cellspacing="0" cellpadding="5" border="0" align="center"> <tr> <td align="left" valign="middle" bgcolor="<actinic:variable name="BGColor" />"> <span class="actsmall" style="color:<actinic:variable name="TextColor" />"> <actinic:variable name="CookieCartItemsLabel" /> <script language="javascript" type="text/javascript"> <!-- document.write(getCartItem(3)); // --> </script> <br /> <actinic:variable name="CookieCartValueLabel" /> <script language="javascript" type="text/javascript"> <!-- document.write(getCartItem(1)); // --> </script> </span> </td> <!-- <td align="right" valign="middle"><actinic:variable name="NavigationIcon" value="View Cart Image Special" /></td> --> </tr> </table> </div>
But it's obviously rubbish because it's not showing. Any help?
Comment