XF 1.2 Member Profile Page -> Sidebar width difficulties

Stuart Wright

Well-known member
Changing the width of the user account sidebar is proving a bit tricky.
I set Style Properties: Member Profile Page -> Sidebar width to 192px
but this is in navigation_sidebar.css
.navigationSideBar
{
width: 150px;
display: table-cell;
vertical-align: top;
*float: left;
}

which seems to negate the member profile sidebar width setting.
What am I missing?
 
This is how I set a custom sidebar width on my site.
upload_2013-10-11_12-37-39.webp

Then in EXTRA.css:

Code:
/* Member profile page */
.member_view .profilePage .mast {
padding-right: 8px;
}

.member_view .profilePage .mainProfileColumn {
margin-left: 254px;
}

.profilePage .avatarScaler img {
max-width: 246px;
}
 
Top Bottom