Nov 08, 2021 8:43 pm
Is there an option to move the animated gif / progress indicator image from the top right to the middle of the screen, and change it to say something like "Comments are loading...."?
The reason is user's sometimes can't see the small image in the top right and think something is wrong. If they wait a few more seconds the cursor advances to the bookmarked comment, but it'd be nice to let them know immediately.
Website URL
4 Replies
Nov 09, 2021 6:52 am
You can use the following CSS code:
#wpdiscuz-loading-bar { width: 293px !important; top: 50% !important; right: 50%; } #wpdiscuz-loading-bar:before{ content: "Comments are loading...."; width: 293px !important; padding: 30px; display:inline-block; align-content: center; } div#wpdiscuz-loading-bar { background-repeat: no-repeat; background-position: 50%; }
Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.