Why my confluence site space showing administrator as Former user?
I just created the site space and I am the only member now but I mistyped my site space name. For changing the name I clicked Space Settings -> Overview -> Space Details
But from Space Details there is no option for rename or delete the site space. Also in the list of Administrator it showing Former User. Anyone know how is this happening? And please help me to rename my site space name or delete it?
Were you displaying Custom HTML in the Confluence Header?
If yes, simply move that HTML to the start of the body:
Confluence Admin > Custom HTML
This is a known issue in Confluence 4.0.
Another solution is to manually add scroll bars to the edit page's HTML. I did this by editing the Global Stylesheet at Admin > Stylesheet. Add the following:
body.contenteditor {
overflow: scroll !important;
}
hth,
matthew horn
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One solution is to manually add scroll bars to the edit page's HTML. I did this by editing the Global Stylesheet at Admin > Stylesheet. Add the following:
body.contenteditor {
overflow: scroll !important;
}
If the RTE's content box is too short, you can change the height to, say, 600px, by using the following:
#wysiwyg, #preview, #previewArea {
height: 600px !important;
}
hth,
matthew horn
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had this problem when adding table rows. Kind of awkward to try to add an image to a table row when you can't see it. :P
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm getting this problem on Chrome/OSX after pasting a large image in. If I switch Chrome to full screen, the problem goes away though -- I'm not convinced that this is a suitable workaround for all.
In my case, there is no additional Custom HTML pushing the page elements out of place.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The same thing happens with the HTML at the start of the body. But it does work in the footer. Thanks for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's interesting. I had the same issue with the Confluence Sandbox. Moving the custom HTML to the start of the biody solved the problem for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.