My forum has a white screen that covers everything, and I'm not sure how to remove it or how it even happened.
Last edited by Landshark on October 26th 2021, 4:33 pm; edited 2 times in total
The topic was posted in the wrong section, so I have moved it to the correct section.
|
#modernbb (
  display: none;
  margin-top: 42px;
}
SLGray wrote:After looking at the CSS, I can see this:
When I removed the display: none, I can see your forum.
- Code:
#modernbb (
  display: none;
  margin-top: 42px;
}
You can log into the administration pane by adding this to your forum's link:Â /admin
SLGray wrote:Do not add the CSS. You need to remove it.
#modernbb {
display: flex !important;
}
TonnyKamper likes this post
skouliki wrote:hello
somewhere in your css or templates or javascript you have set a display: none
this is causing the white screen
now to figure out where the mistake is you have to
- check the CSS
- if you have modified the templates , set them to default so if the issue is gone then the mistake is somewhere in the templates
- reactive the javascript so check if one of them is causing this conflict
meanwhile, if you add this to your CSS the white screen will be gone
- Code:
#modernbb {
display: flex !important;
}
i also see some appearance issues on your homepage if you like help to fix them feel free to open a new thread i will be happy to help you