3.2 & 3.3 Extensions Database 3.2 / 3.3Reading progressbar

<span class="qte-attr qte_32_33-qte">3.2.x & 3.3.x</span>
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

TazDevilBZH
Users
Users
Status: Offline
User theme: Dark
Posts: 5
Joined: Jul 12th, '20, 15:27
    Windows 10 Firefox

Re: Reading progressbar

Post by TazDevilBZH »

Here is the french translation for Reading ProgressBar v1.0.1
progressbar_v101_french.zip
Best regards

Fred
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Mitico
Users
Users
Status: Offline
User theme: Dark
Posts: 8
Joined: Mar 17th, '21, 17:28
    Windows 10 Edge

Re: Reading progressbar

Post by Mitico »

Grazie ottimo lavoro,ben fatto

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Xxxbennyxxx
Users
Users
Status: Offline
User theme: Dark
Posts: 74
Joined: Dec 30th, '14, 21:23
    Windows 10 Chrome

Re: Reading progressbar

Post by Xxxbennyxxx »

Since I changed my wrap, the scroll bar is no longer visible from the top.
How can I fix this?

Code: Select all

.wrap {
	background-color: #FFF;
	border-color: #E6E9ED;
    /*background-color: rgba(255, 255, 255, 0.65);*/ 
    background: linear-gradient(to bottom, #e8e8e8 3%, #ffffff 100%);
    opacity: .88;  /* .98 */
	border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

martin
Admin
Admin
Status: Offline
User theme: Dark
Posts: 5123
Joined: Apr 6th, '14, 14:12
    Linux Chrome

Re: Reading progressbar

Post by martin »

Pm me board link and il come look at the code.
Image

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

martin
Admin
Admin
Status: Offline
User theme: Dark
Posts: 5123
Joined: Apr 6th, '14, 14:12
    Linux Chrome

Re: Reading progressbar

Post by martin »

Its due to the navbar z-index

Open /styles/prosilver/theme/common.css
Find This may be a partial find and not the whole line

Code: Select all

.navbar-header-top {
    background: #2A2A2A;
	background: -moz-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #515151), color-stop(100%, #2A2A2A));
	background: -webkit-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: -o-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: -ms-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: linear-gradient(to bottom, #515151 0%, #2A2A2A 100%);
	position: sticky;
        top: 0;
        z-index: 2;
}
Replace with Replace the preceding lines with the following

Code: Select all

.navbar-header-top {
    background: #2A2A2A;
	background: -moz-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #515151), color-stop(100%, #2A2A2A));
	background: -webkit-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: -o-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: -ms-linear-gradient(top, #515151 0%, #2A2A2A 100%);
	background: linear-gradient(to bottom, #515151 0%, #2A2A2A 100%);
	position: sticky;
        top: 2px;
        z-index: 2;
}
Screenshot from 2021-11-01 18-56-23.png
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Xxxbennyxxx
Users
Users
Status: Offline
User theme: Dark
Posts: 74
Joined: Dec 30th, '14, 21:23
    Windows 10 Chrome

Re: Reading progressbar

Post by Xxxbennyxxx »

Thank you! It's working.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

max-ima
Users
Users
Status: Offline
User theme: Dark
Posts: 139
Joined: Mar 25th, '22, 06:11
    Windows 10 Firefox

Re: Reading progressbar

Post by max-ima »

Tested on 3.3.7 and works. Thanks