How to have two categories per row?
                    Hi,
Im testing how to change the categories list page (categories.php)to have 2 categories in the same row. Is it possible? How can i do this? I know that i probably have to change controls/categories.php. Exactly the function render() but i dont know how to do it. Someone can help me please?
Thanks,
Leo.                
                0          
            This discussion has been closed.
            
        
            
Comments
#Categories li {gets the categories arranged in two columns according to the pattern left-right-left-right...width:48%;
float:left;
border:5px solid #fff;
}
To get list items within each category working again add another float to, i.e.:
#Categories li ul {That should get you going. I've only played around in firefox 1.5, so you may need to tweak for other browsers.float:left;
border-bottom:1px solid #ccc;
padding: 7px 6px 7px 6px;
list-style: none;
margin: 0px;
}