Nested Rows in Bootstrap
Last Post 05/05/2015 8:12 AM by Joseph Craig. 1 Replies.
Author Messages
Ryan
Nuke Newbie
Nuke Newbie
Posts:2


--
05/04/2015 10:03 PM  
I am having a heck of a time figuring out nested rows in DNN with boot strap.. no matter what I do the content panes inside of the nested rows do not show up in dnn as available places for modules..


here is the code have
 
  <div class="container">  
      <div class="row">  
          <div id="Banner1" runat="server" class="span12"></div>  
      </div>  
      <div class="row">  
          <div id="LeftPane" runat="server" class="span3">  
          </div>  
          <div id="ContentPane" runat="server" class="span9">  
              <div class="row">  
                  <div id="two1" runat="server" class="span6"></div>  
                  <div id="two2" runat="server" class="span6"></div>  
              </div>  
              <div class="row">  
                  <div id="Three1" runat="server" class="span4"></div>  
                  <div id="Three2" runat="server" class="span4"></div>  
                  <div id="Three3" runat="server" class="span4"></div>  
              </div>  
          </div>  
      </div>  
  </div>  
   


and the only place that I can put modules are Banner1, Leftpane, contentpane non of the other panes show up on the layout view..

i want to beable to divide the content pane up into additional sections while leaving the left pane its own content
Joseph Craig
DNN MVP
Posts:11667


--
05/05/2015 8:12 AM  
Your problem is that you are trying to place DNN Content Panes inside of a Content Pane. Your div named ContentPane has the attritute runat="server" which makes it a DNN content page. All of the other stuff inside it isn't going to work.

If you remove the runat from that line, the other panes inside and the Bootstrap should work.

But, you will still need to have a DNN content pane named ContentPane somewhere in the skin.

Joe Craig, Patapsco Research Group
Complete DNN Support


---