MyBB Community Forums

Full Version: Cant Logout
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

IDK what's happening to my forum but somehow, i cant logout....

Screenshot :
[Image: capturerf.png]
don't you have a logout link there ?
if the logout link is not working then see Login/Logout problems? ...

site URL + test user account may be required to check the issue..
removed
There's no logout link because the theme is hiding whatever goes beyond a certain width, and the welcomeblock is very long to fit in such a small space. My recommendation is that you remove the line that is hiding it and make the panel full width (or you'll have to edit the templates and remove text):

1. Go to Admin CP > Templates & Style > Themes > Greenysh > global.css > Advanced Mode.

2. Find:

#panel {
    background: #efefef;
    color: #000000;
    border: 1px solid #D4D4D4;
    padding: 8px;
    height: 40px;
    overflow: hidden;
    
    font-size: 11px;
}

3. Change to:

#panel {
    background: #efefef;
    color: #000000;
    border: 1px solid #D4D4D4;
    padding: 8px;
    font-size: 11px;
}
Thank you very much Big Grin