Hello Brf, I did notice your reply but is this not the fix that I have already tried with the extension a member posted and the .css code fix suggested ?
Thanks
Hello Brf, I did notice your reply but is this not the fix that I have already tried with the extension a member posted and the .css code fix suggested ?
I tried your suggestion and works, but the page links are then shown on a separate line.Brf wrote: Wed Mar 10, 2021 2:12 pm Once again, this problem can be fixed by changing the float tag from left to none:
Yes. They should be on a separate line.HB wrote: Wed Mar 10, 2021 5:03 pm
I tried your suggestion and works, but the page links are then shown on a separate line.
.topic-poster
doesn't apply to the search pages and that would include "new topics" etc. Code: Select all
.section-search .topiclist .responsive-hide.left-box, .section-viewforum .topiclist .topic-poster.responsive-hide.left-box {
float:none;
}
Well all I can say is thank you so very much as this has finally resolved all issues my end in Chrome and Edgethecoalman wrote: Wed Mar 10, 2021 9:51 pm.topic-poster
doesn't apply to the search pages and that would include "new topics" etc.
You can try this, revert any previous edits and add this to bottom of stylesheet.css.
Some of my forum members complained about the extra space , so I applied an alternative workaround:
Code: Select all
@media (max-width: 900px) {
.pagination-hide { display: none !important; }
}
Code: Select all
<!-- IF .topicrow.pagination -->
<div class="pagination">
Code: Select all
<!-- IF .topicrow.pagination -->
<div class="pagination pagination-hide">
Code: Select all
$start_page = ($total_pages > 5) ? min(max(1, $on_page - 2), $total_pages - 4) : 1;
$end_page = ($total_pages > 5) ? max(min($total_pages, $on_page + 2), 5) : $total_pages;
Code: Select all
$start_page = ($total_pages > 2) ? min(max(1, $on_page - 2), $total_pages - 1) : 1;
$end_page = ($total_pages > 2) ? max(min($total_pages, $on_page + 2), 2) : $total_pages;
Code: Select all
<span><i class="icon fa-clone fa-fw" aria-hidden="true"></i></span>
Are you running phpBB 4?HB wrote: Sat Mar 13, 2021 4:56 pm ...
In styles/prosilver/template/viewforum_body.html delete:
That removes the icon in front of the list of pagination links, which I thought was an unnecessary adornment.Code: Select all
<span>{{ Icon('iconify', 'fa:clone', '', true) }}</span>
Code: Select all
<span><i class="icon fa-clone fa-fw" aria-hidden="true"></i></span>
Info for Mac users. Since Chrome update to Version 89.0.4389.90, the described problem is visible now on Mac as well.HaioPaio wrote: Sat Mar 06, 2021 6:57 pm I tried with the latest Chrome Version 89.0.4389.82 (Offizieller Build) (x86_64) on my Macbook.
No issues detected.