Announcement

Collapse
No announcement yet.

How do i remove the background colour in emails

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

    How do i remove the background colour in emails

    How do i remove the background colour in emails like my confirmation email it sends out has a grey background where i would prefer white
    Chris Ashdown

    #2
    You can edit the HTML email layout and define the colour you want.
    Jenny
    Hanson Web Design
    www.hansonwebdesign.co.uk
    jenny@hansonwebdesign.co.uk
    Actinic hosting, Actinic Software, template design and re-design

    Comment


      #3
      Hi Jenny

      Can you tell me where in the standard email is the colour, its all gooblde gook to me (technical Term from Great Yarmouth)
      Chris Ashdown

      Comment


        #4
        set the span style on the td for that part to, or whereever you want to change it :

        background: #ffffff;

        Jenny
        Hanson Web Design
        www.hansonwebdesign.co.uk
        jenny@hansonwebdesign.co.uk
        Actinic hosting, Actinic Software, template design and re-design

        Comment


          #5
          Sorry Jenny where do i find it, I have no idea at present where to change the colour and what to for white
          Chris Ashdown

          Comment


            #6
            Chris - just done mine, in the design tab (view next to orders) choose customer email, then edit the code - there are various instances of palette1 / 2 bg etc, I simply change my palette 1 in there to a much better palette 2 but you can replace with colour codes like ffffff for white etc...

            as always backup first!
            https://www.harrisontelescopes.co.uk/

            Ed Harrison - Menmuir Scotland

            Comment


              #7
              Simplest way to change the central part of the email to a white background is to open the HTML Email Layout in the Library (Layouts tab, ) and change
              Code:
              <td style="background: <actinic:variable name="Palette1" />">
              to
              Code:
              <td style="background: white">
              Then find the following:
              Code:
              <table cellspacing="20" style="padding: 20px; clear: left; overflow: hidden; background: <actinic:variable name="PaletteBG" />;  color: <actinic:variable name="TextColor" />; border: 2px dotted <actinic:variable name="Palette2" />">
              and change it to:
              Code:
              <table cellspacing="20" style="padding: 20px; clear: left; overflow: hidden; background: white;  color: <actinic:variable name="TextColor" />; border: 2px dotted <actinic:variable name="Palette2" />
              ">
              Bruce Townsend
              Ecommerce Product Manager
              Sellerdeck Ecommerce Solutions

              Comment


                #8
                Many thanks
                Chris Ashdown

                Comment

                Working...
                X