Announcement

Collapse
No announcement yet.

Logo image has vanished!

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

    Logo image has vanished!

    Recently after getting some good advice from this forum I changed my website to make the logo image clickable linking to the site main page. I have just noticed that when viewed in IE the logo is not visible on any of the pages!
    I'm not sure if what I did caused this but, if it did, then it's been that way for a few weeks now without me noticing (I use FF). Coud someone take a loom with IE and tell me if they can see the logo (should be top left).
    The code I used in the Act_Primary and Act_BrochurePrimary is this:-

    <a href="http://www.phoenix-pcs.co.uk"NETQUOTEVAR:LOGOIMAGE</a>

    Anyone see anything wrong with it?
    This might explain the fall-off in sales lately
    http://www.phoenix-pcs.co.uk

    #2
    Can see in FF but not under IE6

    Looking at the source code you have a space between the <img> and the </a> which (white space) is known to give strange results under IE for Windows (li tags are particularly prone) - may be worth removing and checking if it resolves


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Thanks Jont, the whitespace may be the result of not closing the A tag (missed out the > didn't I?). Just uploading now to check.
      http://www.phoenix-pcs.co.uk

      Comment


        #4
        Code:
        <a href="http://www.phoenix-pcs.co.uk"<IMG SRC="acatalog/Newlogo.jpg" ALT="Phoenix Computer Systems Ltd" BORDER=0 HEIGHT=46 WIDTH=589 > </a>
        Is what I am seeing in the HTML source. This is invalid HTML.

        There is no closing
        Code:
        >
        for the link TAG.

        It should be
        Code:
        <a href="http://www.phoenix-pcs.co.uk"><IMG SRC="acatalog/Newlogo.jpg" ALT="Phoenix Computer Systems Ltd" BORDER=0 HEIGHT=46 WIDTH=589 ></a>
        This will fix it on the page.

        In your template that would be
        Code:
        <a href="http://www.phoenix-pcs.co.uk">NETQUOTEVAR:LOGOIMAGE</a>
        Fergus Weir - teclan ltd
        Ecommerce Digital Marketing

        SellerDeck Responsive Web Design

        SellerDeck Hosting
        SellerDeck Digital Marketing

        Comment


          #5
          Thanks Fergus
          http://www.phoenix-pcs.co.uk

          Comment

          Working...
          X