I have a component with two attributes. Each attribute has two choices.
Using the standard layout with attributes set in 1 column, the two choices appear side by side without any spacing between the attributes' labels.
I have changed the layout as below by putting it in a table. I have achieved the appearance I want but is this the correct way to do it?
PS I cannot find out what the variable "AttributeSeparator" does. it is not detailed in the variable guide?
Using the standard layout with attributes set in 1 column, the two choices appear side by side without any spacing between the attributes' labels.
I have changed the layout as below by putting it in a table. I have achieved the appearance I want but is this the correct way to do it?
Code:
<table cellspacing="10" align="left" valign="top"> <tr> <td> <Actinic:Variable Name="AttributeDisplayLabel"/> </td> </tr> <tr> <td> <actinic:variable name="ChoiceList" value="Radio Button Choice List" /> </td> </tr> </table> <actinic:variable name="AttributeSeparator" />
Comment