Announcement

Collapse
No announcement yet.

Email Us : font Colour Problem

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

    Email Us : font Colour Problem

    Hi,
    On the email us form , the following text automatically is written in white , but my background is also white , thus they are rendered invisible.

    Name:*
    Subject:*
    Email Address:*
    Message:*

    How can I change the default colour in ACT-SHOWFORM [ I think it's called that]

    Thanks , David

    #2
    The template for the form is located in Act_ContactUs.html at Advanced | Templates Manager | Other Pages and the Contact Us button.

    Comment


      #3
      Contact us page font problem

      Sorry I didn't follow this up quicker.


      Okay I opened the template but the only reference to colour I can see is here, and it is the blue that I'm after.

      Which line turns the colour off in the other words ?

      Thanks


      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
      <html>
      <head>
      <!-- Act_ContactUs HTML begin -->
      </head>
      <body>
      <actinic:validationerror> </actinic:validationerror>
      <table cellpadding="3" cellspacing="0" align="center"
      style="color: rgb(51, 51, 255);">
      <tbody>
      <tr>
      <td colspan="2"><font size="-1"
      face="Arial, Helvetica, sans-serif"><strong>NETQUOTEVAR:FORMHEADER<br>
      <br>
      </strong></font></td>
      </tr>
      <tr>
      <td><font size="-1" face="Arial, Helvetica, sans-serif">NETQUOTEVAR:NAME</font></td>
      <td> <input type="text" name="Name" size="50" maxsize="125"
      value="NETQUOTEVAR:NAMEVALUE"> </td>
      </tr>
      <tr>
      <td><font size="-1" face="Arial, Helvetica, sans-serif">NETQUOTEVAR:SUBJECT</font></td>
      <td> <input type="text" name="Subject" size="50" maxsize="125"
      value="NETQUOTEVAR:SUBJECTVALUE"> </td>
      </tr>
      <tr>
      <td><font size="-1" face="Arial, Helvetica, sans-serif">NETQUOTEVAR:EMAIL</font></td>
      <td> <input type="text" name="EmailAddress" size="50"
      maxsize="125" value="NETQUOTEVAR:EMAILVALUE"> </td>
      </tr>
      <tr>
      <td valign="top"><font size="-1"
      face="Arial, Helvetica, sans-serif">NETQUOTEVAR:MESSAGE</font></td>
      <td><textarea type="TEXT" rows="10" cols="45" name="Message">NETQUOTEVAR:MESSAGEVALUE</textarea></td>
      </tr>
      <tr>
      <td valign="top">&nbsp;</td>
      <td><input type="submit" name="ACTION"
      value="NETQUOTEVAR:SENDBUTTON"> </td>
      </tr>
      <tr>
      <td colspan="2" valign="top"><font size="-1"
      face="Arial, Helvetica, sans-serif">NETQUOTEVAR

      Comment


        #4
        Where you have something like:

        <font size="-1" face="Arial, Helvetica, sans-serif">

        Append within it:

        <font size="-1" face="Arial, Helvetica, sans-serif" color="black">

        for example that is color="black", or a HEX code of #000000 for black and so on...

        Comment


          #5
          thanks

          Last time I amended a template I had to start again.

          This works great.

          Cheers , David

          Comment


            #6
            A tad premature with my thanks..

            ..when I said 'this works great' I meant as a solution . Sadly it hasn't worked in practice.

            Here's a link to the page :

            http://www.a1000words.co.uk/cgi-bin/...g%2fUSA%2ehtml

            In the source section it says this :

            " <font size="-1" face="Arial, Helvetica, sans-serif",color="black"><FONT COLOR="#ffffff"> "

            So even though I've stated black it's inserted #ffffff , white.

            How come a FONT COLOR instruction doesn't come up in the template ?

            David

            Comment


              #7
              Where you have:

              <font size="-1" face="Arial, Helvetica, sans-serif",color="black">

              that should be..

              <font size="-1" face="Arial, Helvetica, sans-serif" color="black">

              no comma...

              But where your extra font tag is coming from, not 100% certain, as if it is not in that template at design time, then dont see where it could be coming from apart from directly in the Design | Text elements of the software.

              Comment

              Working...
              X