Hi,
You can add values in dropdown from design mode.
Go to design mode and update Allowed format e.g.
2;cq-colctrl-lt0 | 2 Columns (50%, 50%) |
3;cq-colctrl-lt1 | 3 Columns (33%, 33%, 33%) |
4;cq-colctrl-lt2 | 4 Columns (25%, 25%, 25%,25%) |
2;cq-colctrl-lt3 | 2 Columns (66%, 33%) |
However you need to further write CSS rule to display column in particular formate.
for eg 3 column layout you need to write CSS like
/*3 Column ColCtr*/
.cq-colctrl-lt1-c0,
.cq-colctrl-lt1-c1,
.cq-colctrl-lt1-c2{
float: left;
width: 32%;
}
.cq-colctrl-lt1-c0,
.cq-colctrl-lt1-c1{
margin-right: 1%;
}
.cq-colctrl-lt1-c1,
.cq-colctrl-lt1-c2{
margin-left: 1%;
}
Thanks
Arun