Bootstrap base themes using span N - Moodle 3.3+

Bootstrap base themes using span N - Moodle 3.3+

by Dave Emsley -
Number of replies: 2

Hi there,

I'm designing a theme and have some issues with the spanN functionality.   I have 4 sections all with class span3.  Now 4x3 = 12 so these should be on the same row but the last one seems to drop below.

Any ideas as to why this might be?

Cheers


Dave


Average of ratings: -
In reply to Dave Emsley

Re: Bootstrap base themes using span N - Moodle 3.3+

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

Can you verify that they have an outer DIV container where class="container-fluid" and also nested in a DIV container where class= "row-fluid" ?

For example:

<div class="container-fluid">
    <div class="row-fluid">
        SPANS GO HERE
    </div>
</div>

Average of ratings: Useful (1)