Announcement

Collapse
No announcement yet.

Creating Own Navigation Links

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Creating Own Navigation Links

    Hi,

    I want to create my own links for e.g. Checkout etc but am coming into a problem. I have got them working by inserting the standard links then using the code from these around my customer image but is throwing up various errors as it is not valid code.

    Here is the code i am using at the moment.

    Code:
    <a href="<actinic:variable name="CartLinkText" />" target="_self"><img src="index_09.jpg" alt="<actinic:variable name=" width="151" height="45" border="0"CartText" /></a>
    This works but as i say i am getting errors. Is there an easier way to link to checkout etc??

    #2
    <a href="<actinic:variable name="CartPageURL" />" target="_self"><img src="index_09.jpg" alt="ALT TEXT IN HERE" width="151" height="45" border="0" />CartText</a>

    Your ALT=" was containing other width and height into on the image..

    Plus think the URL you used was not a URL but some text element...

    Comment

    Working...
    X