Announcement

Collapse
No announcement yet.

here we go again!! text colour problem

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

    here we go again!! text colour problem

    It's fighting me again

    I'm trying to change my SectionName text colour.

    I have this in my layout
    Code:
    <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" target="_self"><span style=color:"<actinic:variable name="Palette1" />";><strong><actinic:variable encoding="actinic" name="SectionName" /></strong></span></a>
    and it works in IE (and the preview pane) but not in FF.

    What am I doing wrong?
    I've looked at the end result in Firebug and it just shows

    <span style="">
    <strong>Dresses</strong>
    </span>

    with no reference to the colour at all.

    I guess it's something basic... so if someone could point me in the right direction, it'd be much appreciated, thank you
    Tracey

    #2
    <span style="color: #000000;"

    Comment


      #3
      grrrrrrrrrr at me!

      thank you Lee...again!!
      Tracey

      Comment


        #4
        You could also shorten it such as:

        Code:
        <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" target="_self" style="color: #000000;"><strong><actinic:variable encoding="actinic" name="SectionName" /></strong></a>
        Peblaco

        Comment


          #5
          Originally posted by leehack
          "
          He He, i would have never spotted that one

          Comment


            #6
            Originally posted by peblaco
            You could also shorten it such as:

            Code:
            <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" target="_self" style="color: #000000;"><strong><actinic:variable encoding="actinic" name="SectionName" /></strong></a>
            Thanks, Louise
            I'll have a look at that (when I can bring myself to go "back in" LOL)
            Tracey

            Comment

            Working...
            X