roryashfordbentley / Flexbones

Responsive Wordpress barebones theme
MIT License
8 stars 1 forks source link

Columns at default breakpoint not floating correctly #29

Closed DrizzlyOwl closed 10 years ago

DrizzlyOwl commented 10 years ago

When trying to place adjacent columns on the default breakpoint (mobile device) column classes do not float.

<div class="grid">
    <div class="span--5-6">
        // Something here
    </div>
    <div class="span--1-6">
        // Something over here
    </div>
</div>

Example above does not float columns correctly.

roryashfordbentley commented 10 years ago

It seems I was drunk when I made the last commit, it was no more a fix than holistic medicine cures diseases!

roryashfordbentley commented 10 years ago

FIxed and greatly refined. You can now specify a full width column with the naming convention 'x' of 'x':

e.g.

[prefix]12-12[suffix]

or a real world example may look like

'.span--12-12'

As a side note I have added in a shorthand

'.span--1-1'