User admincp 1 column

HenrikHansen

Well-known member
Why is my user admin 1 column only?
I wonder what I did.

Anyone who knows the setting to make it 1 column again?

column.webp
 
I think this is the CSS responsible:

Code:
	#AccountMenu .menuColumns ul
	{
		float: left;
		padding: 0;
		max-height: none;
		overflow: hidden;
	}

I would hazard a guess that float: left is no longer there.
 
check that you haven't modified the width in extra.css

it should be the following

Code:
#AccountMenu {
    width: 274px;
}
I think Shelley has identified the area we need to look at, but from messing around with the link you sent me by PM, that code is definitely there and is set to 274px;

I can only assume that somewhere else, however, some padding has been applied or similar that is pushing it beyond that width.

If you change the code to:

Code:
#AccountMenu {
    width: 275px;
}

It seems to display fine.
 
I think Shelley has identified the area we need to look at, but from messing around with the link you sent me by PM, that code is definitely there and is set to 274px;

I can only assume that somewhere else, however, some padding has been applied or similar that is pushing it beyond that width.

If you change the code to:

Code:
#AccountMenu {
    width: 275px;
}

It seems to display fine.

It could be padding that was increased in the following I'm betting Chris though i could be wrong.Any increase with the left/right would have resulted in the 1 column.

Code:
.blockLinksList a, .blockLinksList label {
    padding: 5px 10px;
}
 
Top Bottom