Hello everyone,
Is there a way to change the display of the site map to 3 columns instead of the default single column? An example of what I am trying to do is found here http://www.thatsoftwareguy.com/sitemap.html
Thanks for your help.
Hello everyone,
Is there a way to change the display of the site map to 3 columns instead of the default single column? An example of what I am trying to do is found here http://www.thatsoftwareguy.com/sitemap.html
Thanks for your help.
You could try using css columns but its not great for IE (then again IE is not great for anything other than giving designers a headache lol)
Try this to your stylesheet: BACKUP FIRST!
Find
Change to:Code:#siteMapList { width: 90%; float: right; }
Code:#siteMapList { columns: 3; -moz-columns: 3; -webkit-columns: 3; }
Thank you very much for the tip, dropbop. It worked. PROBLEM SOLVED.