Hi DPs, I need some help to make my top categories in the right side split in 2 columns instead 1. http://www.sneakdirectory.com/ It's a phpld widget and I believe the CSS code it uses is this: .boxPopCats { padding: 10px 10px 10px 20px; margin: 0; list-style: none; } .boxPopCats li { background: url("../images/gray-arrow-sm.png") no-repeat scroll 0 9px transparent; border-bottom: 1px solid #EFEFEF; padding: 7px 5px 7px 15px; text-shadow: 0 1px 0 #FFFFFF; } .boxPopCats li a:link, .boxPopCats li a:active, .boxPopCats li a:visited { color: #000000; text-decoration: none; } .boxPopCats li:hover { background:#F4F4F4; } .boxPopCats li a:hover { text-decoration:underline; } Thx a lot for helping me out.
Try this : add following to .boxPopCats " min-height: 180px; width: 30em; " add following to .boxPopCats li " float: left; width:10em; " I have tested this on chrome only and change the min-height accordingly ; Hope this would help you