Announcement

Collapse
No announcement yet.

Logo Clickable - Link Back To Homepage?

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

    Logo Clickable - Link Back To Homepage?

    How is this done in v10?

    #2
    Same way as in any other version, I should imagine.
    You'll need to hardcode it in the layout.

    Quickest way will probably be to go to

    Design > Library > Layouts > Company Logo Image > Open the "Standard Company Logo Image" layout

    Replace the entire contents with

    <a href="<actinic:variable name="HomePageURL" />"><img
    src="<actinic:variable name="CompanyLogoFileName" />"
    width="<actinic:variable name="CompanyLogoWidth" />"
    height="<actinic:variable name="CompanyLogoHeight" />"
    alt="<actinic:variable name="StoreName" />"
    class="logoimage" /></a>

    All this is doing is adding an <a href="HomePageURL"></a> link tag around the existing image
    Tracey

    Comment

    Working...
    X