Removing the '2 out of 5' bar
-
Are you using persona theme?
baris yes is Persona the default, I didnt change it
-
Im using nodebb for some teaching. It works well on google meet especially with the ‘spoiler’ feature to reveal answer.
However the progress bar gets in the way ‘2 out of 5’ etc
How to remove this. Im sure its some CCS involved?On fullscreen this bar goes, but I use half screen for zoom so keep nodebb to half screen, then the bar shows
.topic .pagination-block { display: none; }
This should hide it on the topic page then.
-
Im using nodebb for some teaching. It works well on google meet especially with the ‘spoiler’ feature to reveal answer.
However the progress bar gets in the way ‘2 out of 5’ etc
How to remove this. Im sure its some CCS involved?On fullscreen this bar goes, but I use half screen for zoom so keep nodebb to half screen, then the bar shows
Thanks, where should I paste that code?
-
Im using nodebb for some teaching. It works well on google meet especially with the ‘spoiler’ feature to reveal answer.
However the progress bar gets in the way ‘2 out of 5’ etc
How to remove this. Im sure its some CCS involved?On fullscreen this bar goes, but I use half screen for zoom so keep nodebb to half screen, then the bar shows
In the custom css tab in the admin page at
/admin/appearance/customise
make sure custom css is turned on at the bottom of the page. -
Im using nodebb for some teaching. It works well on google meet especially with the ‘spoiler’ feature to reveal answer.
However the progress bar gets in the way ‘2 out of 5’ etc
How to remove this. Im sure its some CCS involved?On fullscreen this bar goes, but I use half screen for zoom so keep nodebb to half screen, then the bar shows
I added the CSS and made sure it is switched on, rebuilt and restarted
But it still shows -
I added the CSS and made sure it is switched on, rebuilt and restarted
But it still showseeeee you can try adding
!important
to overwrite default css.topic .pagination-block { display: none!important; }
-
Tried that and … That bar is still there!
The bar goes when I have nodebb on full screen, but I like to use my screen in two halves for the lesson. But if it does go on full screen how is that done?
-
Maybe share your site, it’s difficult to help without seeing the website code
-
sure will message you link, but Ive done these steps
-
I have checked your site.
Try
.navigator-mobile { display: none !important; }
-
Im running on desktop, is that only for mobile?
-
The progress bar only appears on mobile view
-
That bar was happening on my pc when not fullscreen
That worked though! Can you explain?