Hello,
On the user upload screen the pagination is showing weird. On other list of files view, the pages are nicely displayed next to each other. But on the upload screen every item of the pagination (arrows, pages) are displayed vertically. See screenshot: https://imgur.com/a/AvgVqEy
And can these buttons on the same page get better aligned? https://imgur.com/a/c5INmq4
It would be nice to have the Start upload button displayed behind the file field.
Phoca Download 5.0.10 on Joomla 5.2.2, with Joomlart Purity IV template.
Thanks for the help.
Pagination issue on user upload screen
-
- Phoca Newbie
- Posts: 6
- Joined: 11 Jan 2025, 17:23
-
- Phoca Hero
- Posts: 2857
- Joined: 28 Nov 2010, 17:20
Re: Pagination issue on user upload screen
Hi,
We can say more about this when we see it live. Depends on template, bootstrap, grids etc.
Possible option (custom.css or user.css):
or:
or ...?
But this is just a guess.
Kind regards
Christine
We can say more about this when we see it live. Depends on template, bootstrap, grids etc.
Possible option (custom.css or user.css):
Code: Select all
.com_phocadownload .pagination {
display: inline-block;
}
Code: Select all
.com_phocadownload .pagination {
display: flex;
}
But this is just a guess.
Kind regards
Christine
-
- Phoca Newbie
- Posts: 6
- Joined: 11 Jan 2025, 17:23
Re: Pagination issue on user upload screen
Hi Christine,
I've tried both suggestions, but they don't work, unfortunately.
This feature is restricted to registered users on the site. I have created a testuser and some dummy files so you can see for yourself. Since I'm new at the forum, I cannot DM you for the credentials. Is there another way to send this to you?
Kind regards,
Thomas
I've tried both suggestions, but they don't work, unfortunately.
This feature is restricted to registered users on the site. I have created a testuser and some dummy files so you can see for yourself. Since I'm new at the forum, I cannot DM you for the credentials. Is there another way to send this to you?
Kind regards,
Thomas
-
- Phoca Hero
- Posts: 2857
- Joined: 28 Nov 2010, 17:20
Re: Pagination issue on user upload screen
Hi Thomas,
PN only possible after several posts from you.
It depends on the template.
ad screenshot 2: in Cassiopeia it's OK. So horizontal.
ad screenshot 1: it's like yours.
In test with Cassiopeia temporary:
3 options (all works), try either, or:
Or PD specific:
Kind regards
Christine
PN only possible after several posts from you.
It depends on the template.
ad screenshot 2: in Cassiopeia it's OK. So horizontal.
ad screenshot 1: it's like yours.
In test with Cassiopeia temporary:
3 options (all works), try either, or:
Code: Select all
li.page-item {
display: inline-grid;
}
li.page-item {
display: inline-block;
}
li.page-item {
display: inline-flex;
}
Code: Select all
.com_phocadownload .pagination li.page-item {
display: inline-block;
}
Kind regards
Christine
-
- Phoca Newbie
- Posts: 6
- Joined: 11 Jan 2025, 17:23
Re: Pagination issue on user upload screen
This works! I used the PD specific solution, which works with all three display parameters. Awesome.
And how about the upload form (https://imgur.com/a/c5INmq4)? The start upload button is displayed below the select file button. It looks like the table class="pd-user-upload-table" is only half the width of form id="phocadownload-upload-form".
Sorry for all the question, but I'm just a novice at CSS.
Thanks.
Regards,Thomas
And how about the upload form (https://imgur.com/a/c5INmq4)? The start upload button is displayed below the select file button. It looks like the table class="pd-user-upload-table" is only half the width of form id="phocadownload-upload-form".
Sorry for all the question, but I'm just a novice at CSS.
Thanks.
Regards,Thomas
-
- Phoca Hero
- Posts: 2857
- Joined: 28 Nov 2010, 17:20
Re: Pagination issue on user upload screen
Hi Thomas,
Just try:
or above with: display: flex; or: display: grid;
or:
Kind regards
Christine
Thats'fine.
Yes. The "problem" ist, because in Cassiopeia it is correct:It looks like the table class="pd-user-upload-table" ...
Just try:
Code: Select all
table.pd-user-upload-table {
display: block !important;
}
or:
Code: Select all
form#phocadownload-upload-form {
display: inline-flex;
}
Christine
-
- Phoca Newbie
- Posts: 6
- Joined: 11 Jan 2025, 17:23
Re: Pagination issue on user upload screen
Hello Christine,
The suggestions didn't work. However, it made me try different combinations. What finally worked is:
Thanks for the help.
Regards,
Thomas
The suggestions didn't work. However, it made me try different combinations. What finally worked is:
Code: Select all
form#phocadownload-upload-form {
display: grid;
}
Regards,
Thomas
-
- Phoca Hero
- Posts: 2857
- Joined: 28 Nov 2010, 17:20
Re: Pagination issue on user upload screen
Hi Thomas,
In the second code I wanted to add: display: grid; similar to the first code
Groetjes
Christine
In the second code I wanted to add: display: grid; similar to the first code
Groetjes
Christine