Dear All
I am using 3.3.x.x as well as 3.4.x.x version of OJS. Now I want to split the archives page into 2 or 3 columns.
Please guide.
Thankyou
Dear All
I am using 3.3.x.x as well as 3.4.x.x version of OJS. Now I want to split the archives page into 2 or 3 columns.
Please guide.
Thankyou
You can relatively easy put it in css.
for the default theme I could look like this:
@media (min-width:480px) {
.page_issue_archive .issues_archive {
column-count: 3;
}
}