I'm having difficulties trying to implement the Umbraco Grid into a template.
On my template I have a container with a row. That row consists of a small column for the left-navigation menu, and a large column for the content. The content is a grid-datatype.
But when I open the page, the row is pushed beyond the site of my website. The large-column has the same width as my site, and combined with the left navigation it's way to big.
How can I combine the fixed div (for navigation) with the grid-content?
Umbraco grid combined with bootstrap on template
Hi all,
I'm having difficulties trying to implement the Umbraco Grid into a template.
On my template I have a container with a row. That row consists of a small column for the left-navigation menu, and a large column for the content. The content is a grid-datatype.
But when I open the page, the row is pushed beyond the site of my website. The large-column has the same width as my site, and combined with the left navigation it's way to big.
How can I combine the fixed div (for navigation) with the grid-content?
This is my template:
<div class="row">
<div class="col-lg-2">
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
<div class="col-lg-10"> @CurrentPage.GetGridHtml("ArticleContent") </div>
</div>
is working on a reply...