Announcement

Collapse
No announcement yet.

image alt text in fragments on the front page

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

    image alt text in fragments on the front page

    How can I give the images on my front page alt text from within actinic?

    Thanks
    Jonathan

    #2
    If you are using fragments to generate the images, they will automatically use the 'Title' field of the fragment for their alt text. You can vary this title text to change the alt text for your images.

    Comment


      #3
      I am using fragments and firefox as a viewer.

      If you have a look, you will see there is no alt text
      Jonathan

      Comment


        #4
        Firefox uses the title attribute and not the alt attribute to get "alt" tags.
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment


          #5
          Originally posted by wjcampbe
          Firefox uses the title attribute and not the alt attribute to get "alt" tags.
          This rasies some questions in my mind....

          What is the way forward with this difference?
          Are we to use the title attribute instead of the alt attribute in future (or both)?
          Can we expect IE7 to be the same as firefox?
          Does Google 'read' both attributes?

          Comment


            #6
            Firefox is being strictly correct. The TITLE tag is intended for mouseover type display of a visible image. ALT is intended for situations where the image isn't displayed (or viewable in the case of blind users using screen reading add-ons).

            IE handles a missing TITLE tag by using the ALT text instead. This is actually a departure from the w3c standard but is also the way most people design pages so is almost the de-facto way people expect ALT to work.

            The solution is to Edit Act_BrochureImage.html and change from
            Code:
            <!-- BrochureImage HTML begin -->
            <!-- This file is used to build the brochure logo image markup. -->
            
            <IMG SRC="NETQUOTEVAR:IMAGEFILE"
            	  ALT="NETQUOTEVAR:ALTERNATETEXT"
            	  BORDER=0
            	  NETQUOTEVAR:IMAGEHEIGHT
            	  NETQUOTEVAR:IMAGEWIDTH
            	  NETQUOTEVAR:OTHERIMAGEMARKUP>
            
            <!-- This file is used to build the brochure logo image markup. -->
            <!-- BrochureImage HTML end -->
            to
            Code:
            <!-- BrochureImage HTML begin -->
            <!-- This file is used to build the brochure logo image markup. -->
            
            <IMG SRC="NETQUOTEVAR:IMAGEFILE"
            	  ALT="NETQUOTEVAR:ALTERNATETEXT"
            	  TITLE="NETQUOTEVAR:ALTERNATETEXT"
            	  BORDER=0
            	  NETQUOTEVAR:IMAGEHEIGHT
            	  NETQUOTEVAR:IMAGEWIDTH
            	  NETQUOTEVAR:OTHERIMAGEMARKUP>
            
            <!-- This file is used to build the brochure logo image markup. -->
            <!-- BrochureImage HTML end -->
            And do a similar thing for Act_ProductImage.html, etc.
            Norman - www.drillpine.biz
            Edinburgh, U K / Bitez, Turkey

            Comment

            Working...
            X