Hi,
Could you please check Configuring Layout Container and Layout Mode if helps?
Breakpoints are located inside the <jcr:content> section of the .context.html under the appropriate template (or content) folder.
An example definition:
| < cq:responsive jcr:primaryType = "nt:unstructured" > < breakpoints jcr:primaryType = "nt:unstructured" >
< phone jcr:primaryType = "nt:unstructured" title = "{String}Phone" width = "{Decimal}768" />
< tablet jcr:primaryType = "nt:unstructured" title = "{String}Tablet" width = "{Decimal}1200" />
</ breakpoints >
</ cq:responsive >
|
You can configure the number of columns available for each specific instance of layout container:
Definitions for the responsive grid are specified in:etc/design/<your-project-name>/.content.xml
The following parameters can be defined:- Number of columns available:
- Components that can be added to the current component:
- components="[/libs/wcm/foundation/components/responsivegrid, ...
Arun Patidar