diff --git a/README.md b/README.md
index f12fbaa..e756f1c 100644
--- a/README.md
+++ b/README.md
@@ -22,4 +22,4 @@ Even though Gutter Grid is powered by flexbox, it features a legacy mode that, w
**To read the full documentation go to http://gutter-grid.net.**
-You can view the change log on the [GitHub releases page](https://github.com/Dan503/gutter-grid/releases).
\ No newline at end of file
+You can view the change log on the [GitHub releases page](https://github.com/Dan503/gutter-grid/releases) or the [Gutter Grid website](http://gutter-grid.net/pages/15-change-log/).
\ No newline at end of file
diff --git a/docs/pages/15-change-log/index.html b/docs/pages/15-change-log/index.html
index 73ba416..0f1776c 100644
--- a/docs/pages/15-change-log/index.html
+++ b/docs/pages/15-change-log/index.html
@@ -155,7 +155,7 @@
Mobile warning
Breaking changes
- Grids that have a set of columns defined would previously stretch while wrapping in legacy mode. This was inconsistent behavior to modern mode. In modern mode, grid cells would remain at their column width setting while wrapping. Legacy mode grids now behave consistently with modern mode grids with the exception of wrapping.
-- In general, legacy mode grids will not wrap unless explicitly told to. The exceptions to this rule are grids that have
align
, space
, or vAlign
settings applied to them and also grids that have had stretch disabled (grid--noStretch
/ $stretch: false
). vAlign
and space
and noStretch
will automatically enable wrapping in legacy mode. vAlign
will only enable wrapping in legacy mode if a column count has also been set. Previously these exceptions were not consistent in legacy mode between legacy and modern browsers.
+- In general, legacy mode grids will not wrap unless explicitly told to. The exceptions to this rule are grids that have
align
, space
, or vAlign
settings applied to them and also grids that have had stretch disabled (grid--noStretch
/ $stretch: false
and grid--noResize
/$resize: false
). vAlign
, space
and noStretch
will automatically enable wrapping in legacy mode. vAlign
will only enable wrapping in legacy mode if a column count has also been set. Previously these exceptions were not consistent in legacy mode between legacy and modern browsers. Using grid--noWrap
/$wrap:false
can overide this implicit wrapping behaviour to force modern browsers to not wrap. This technique will not prevent IE8 and 9 from wrapping though.
New features
diff --git a/src/pages/15-change-log/_content.pug b/src/pages/15-change-log/_content.pug
index b3d2356..991470c 100644
--- a/src/pages/15-change-log/_content.pug
+++ b/src/pages/15-change-log/_content.pug
@@ -7,7 +7,7 @@ block content
#### Breaking changes
- Grids that have a set of columns defined would previously stretch while wrapping in legacy mode. This was inconsistent behavior to modern mode. In modern mode, grid cells would remain at their column width setting while wrapping. Legacy mode grids now behave consistently with modern mode grids with the exception of wrapping.
- - In general, legacy mode grids will not wrap unless explicitly told to. The exceptions to this rule are grids that have `align`, `space`, or `vAlign` settings applied to them and also grids that have had stretch disabled (`grid--noStretch` / `$stretch: false`). `vAlign` and `space` and `noStretch` will automatically enable wrapping in legacy mode. `vAlign` will only enable wrapping in legacy mode if a column count has also been set. Previously these exceptions were not consistent in legacy mode between legacy and modern browsers.
+ - In general, legacy mode grids will not wrap unless explicitly told to. The exceptions to this rule are grids that have `align`, `space`, or `vAlign` settings applied to them and also grids that have had stretch disabled (`grid--noStretch` / `$stretch: false` and `grid--noResize`/`$resize: false`). `vAlign`, `space` and `noStretch` will automatically enable wrapping in legacy mode. `vAlign` will only enable wrapping in legacy mode if a column count has also been set. Previously these exceptions were not consistent in legacy mode between legacy and modern browsers. Using `grid--noWrap`/`$wrap:false` can overide this implicit wrapping behaviour to force modern browsers to not wrap. This technique will not prevent IE8 and 9 from wrapping though.
#### New features