Announcement

Collapse
No announcement yet.

Logo link to external page

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

    Logo link to external page

    Hi,

    I am trying to set it up so that when a customer clicks on the logo at the top of our page it redirects them to our main website (under a different domain)

    The shop is under shop.caithnessstone.co.uk

    I want it to go to www.caithnessstone.co.uk

    When you click on our logo at the top the address it takes you to is
    http://shop.caithnessstone.co.uk/www...essstone.co.uk




    Thanks in advance.
    Matt

    #2
    You're not using the full link so browsers are adding the basehref to the link.

    Try using http://......

    Mike
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    Comment


      #3
      On your home page (http://shop.caithnessstone.co.uk/index.html) you have:
      Code:
      <a href="www.caithnessstone.co.uk">
      	<img src="acatalog/Caithness Flagstone Ltd Round Logo.png" width="500px" height="200px" border="0" alt="Shop" title="Caithness Flagstone Limited Shop" class="logoimage">
      </a>
      That www.caithnessstone.co.uk should be http://www.caithnessstone.co.uk

      On your other pages (e.g. http://shop.caithnessstone.co.uk/acatalog/Sinks.html) you have:
      Code:
      <a href=url "http://www.caithnessstone.co.uk" target="blank">
      	<img src="Caithness Flagstone Ltd Round Logo.png" width="500px" height="200px" border="0" alt="Shop" title="Caithness Flagstone Limited Shop" class="logoimage" />
      </a>
      That url "http://www.caithnessstone.co.uk" should be "http://www.caithnessstone.co.uk"

      And the target="blank" bit will cause the link to open in a new page. Not sure if you want that on both home page and other pages or not.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Thanks guys, never noticed that.

        Sorted!

        Cheers

        Matt

        Comment

        Working...
        X