XF 1.2 How do you style the column in the preferences?

grantus

Active member
In the preferences "account/personal-details" page? I can't find where to change the width and other things in that area.

Thanks.
 
You can adjust the width of the sidebar by experimenting with the code and pasting it into the extra.css template adjusting it to your preference. It'll be easier for you to use a code inspector so you know which other classes to adjust if you want to delve into it further.

Code:
.navigationSideBar {
width: 150px;
}
 
Thanks! Don't know how I missed that. I ended up doing this:

Code:
.navigationSideBar {
width: 150px;
float: left;
margin: 0 10px 0 0;
}
.insideSidebar {
width: 820px;
float: left;
}
 
Top Bottom