Using CSS (see the CSS below) it works fine in all browsers. Unfortunately as expected it does not work within IE 8. Is their an alternative way that I can get similar 3 column output for IE 8?
#site-map .site-map-box {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 250px;
-moz-column-gap: 250px;
column-gap: 250px; }