Width aspect <main> and <aside>

Hello,

As of now the grid system of the sage has width: 66.666666% and the aside has 33.333333%.

My question is simple, i want to change this to 72% / 28%. How do i achive this ?

Best.

You will need to change the number of columns in Bootstrap per: http://getbootstrap.com/css/#grid-less

Some quick maths finds that 72 and 28 share a highest common factor of 4. So to calculate the columns needed we do (72/4) + (28/4) = 25

Therefore 25 columns are needed in total, 18 (72/4) for the main and 7 (28/4) for the aside.

1 Like