2011-07-18, 09:42 AM
2011-07-18, 10:13 AM
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..
if the logout link is not working then see Login/Logout problems? ...
site URL + test user account may be required to check the issue..
2011-07-18, 10:58 AM
removed
2011-07-18, 11:05 AM
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:
3. Change to:
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;
}
2011-07-18, 11:17 AM
Thank you very much