Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
If I choose a grid layout with 2 column (6 and 6) then the output is not what I expected. This is the result:
<div class="umb-grid"> <div class="container"> <div class="row clearfix"> <div class="grid-section"> <div class="col-md-6 column"> <div > <div class="row clearfix"> <div class="col-md-12 column"> <div > content </div> </div> </div> </div> </div> </div> <div class="grid-section"> <div class="col-md-6 column"> <div > <div class="row clearfix"> <div class="col-md-12 column"> <div > text text text </div> </div> </div> </div> </div> </div> </div> </div>
In that way the two text area is shown below each other instead of side by side.
What could be the problem here?
You are missing a closing div tag:
<div class="umb-grid"> <div class="container"> <div class="row clearfix"> <div class="grid-section"> <div class="col-md-6 column"> <div> <div class="row clearfix"> <div class="col-md-12 column"> <div> content </div> </div> </div> </div> </div> </div> <div class="grid-section"> <div class="col-md-6 column"> <div> <div class="row clearfix"> <div class="col-md-12 column"> <div > text text text </div> </div> </div> YOU WERE MISSING THE CLOSING TAG HERE </div> </div> </div> </div> </div> </div>
I think it is just when I copied it here. The code is generated by this: @Model.Content.GetGridHtml("grid")
Im sorry but I am new to this
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Grid not showing correctly
If I choose a grid layout with 2 column (6 and 6) then the output is not what I expected. This is the result:
In that way the two text area is shown below each other instead of side by side.
What could be the problem here?
You are missing a closing div tag:
I think it is just when I copied it here. The code is generated by this: @Model.Content.GetGridHtml("grid")
Im sorry but I am new to this
is working on a reply...