Bonsoir,

J'essaye de tout simplement utiliser les mc:variant pour avoir un texte et une image à sa droite ou inversement depuis Mailchimp mais dès que je vais dans Edit Design, les différentes variantes n'apparaissent pas (aucune liste n’apparaît). Auriez-vous une idée de mon erreur ?

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
        <!-- This is a simple example template that you can edit to create your own custom templates -->
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <!-- Facebook sharing information tags -->
        <meta property="og:title" content="*|MC:SUBJECT|*">
 
        <title>*|MC:SUBJECT|*</title>
	</head>
    <body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
    	<center>
 
        	<table mc:repeatable="layout" mc:variant="image left">
              <tr>
                 <td>
                     <div>
                        <img src="http://placehold.it/200x100" mc:edit="image_left_img">
                     </div>
                 </td>
                 <td>
                     <div mc:edit="image_left_txt">
                        <h2 class="h2">text</h2>
                        Lorem ipsum dolor sit met.
                     </div>
                 </td>
              </tr>
          </table>
 
          <table mc:repeatable="layout" mc:variant="image right">
              <tr>
                 <td>
                     <div mc:edit="image_right_txt">
                        <h2 class="h2">text</h2>
                        Lorem ipsum dolor sit met.
                     </div>
                 </td>
                 <td>
                     <div>
                        <img src="http://placehold.it/200x100" mc:edit="image_right_img">
                     </div>
                 </td>
              </tr>
          </table>
 
 
        </center>
    </body>
</html>

Merci.