Page 1 of 1

Layout category-view

Posted: 20 Aug 2013, 10:17
by RonalddeWaal
L.s.,
The 'normal' categorie-view showes the categories like this:
1987 (1)
1988 (2)
1989 (6)
1990 (6)
....
...and so on.
I would like tho chanche tthat in:
1987 (1) 1988 (2) 1989 (6)
1990 (6) ....
....and so on.
How do I changes the list from one column to three of four columns?
With kind regards,
Ronald de Waal

Re: Layout category-view

Posted: 21 Aug 2013, 13:07
by Jan
Hi, you can do it per CSS styling, e.g. adding float attributes to the items, see similar posts in the forum, where there are guides for doing it.

Jan

Re: Layout category-view

Posted: 22 Aug 2013, 17:05
by RonalddeWaal
Jan wrote:Hi, you can do it per CSS styling, e.g. adding float attributes to the items, see similar posts in the forum, where there are guides for doing it.

Jan
Hi Jan,
After severel houres searching and reading on the forum I did not succeed in finding a sollution for my problem. I understand that I have to put some CSS-commands in the file custom.css, but I did not found which commands. I tried the folowing code:
#phoca-dl-sections-box .sections {
margin:5px;
padding:5px;
border: 1px dotted #CCCCFF;
width:30%!important;
position:relative;
float:left;
}
But....whithout succes. Perhaps you can give me a 'hand'.
With kind regards,
Ronald de Waal

Re: Layout category-view

Posted: 25 Aug 2013, 07:42
by RonalddeWaal
L.s.,

Adding the folowing code to custom.css wil do:
#phoca-dl-categories-box .pd-subcategory,
#phoca-dl-category-box .pd-subcategory {
background: transparent url('images/folder.png') 0 center no-repeat;
width: 10%
position: relative;
float: left;
margin: 1%;
padding: 0% 3%;
}
With kind regards,
Ronald de Waal

Re: Layout category-view

Posted: 29 Aug 2013, 14:33
by Jan
Hi, thank you for the guide.

Jan