Oct 14, 2023 5:26 pm
Hi. The vote feedback info text is partially behind the top menu. How can I offset it to be below the sticky menu?
Website URL
4 Replies
Oct 14, 2023 6:12 pm
Hi @itpro,
You can control the offset of the message container by using these CSS selectors
#wpdiscuz-comment-message, .wpdiscuz-comment-message-unauth
For ex.
#wpdiscuz-comment-message {top: 50px;}
You can adjust the offset you want by changing the number 50
Oct 14, 2023 6:32 pm
Thank you very much, Jacob! That works perfectly.
The waiting animation is still not offset. Do you have the css container for that as well?
Oct 15, 2023 2:50 pm
Hi @itpro,
You can do the same for the loading animation as well by using these CSS selectors.
#wpdiscuz-loading-bar, .wpdiscuz-loading-bar-unauth
Oct 15, 2023 3:59 pm
Perfect! Now it works excellent. Thank you very much for the solution.