For default skin and all my free skins v3.0.5 & 3.1.1
Issue with user navigation (3.0.5 only)

Open ipb_styles.css
Find
#user_navigation {
Add below
min-width: 260px;
Issue with search navigation (3.1 only)

Open ipb_styles.css
Find
#search {
Add below
min-width: 300px;
Find
#search_wrap {
Add below
white-space: nowrap;
Find
#search .choice {
background: url({style_images_url}/search_expand.png) no-repeat right;
Replace with
#search .choice {
background: url({style_images_url}/search_expand.png) no-repeat 3% 50%;
Issue with Emoticon sidebar (3.0.5 3.1.1)
Open ipb_editor.css
Find
#ipboard_body .ips_editor.with_sidebar .sidebar .emoticon_holder {
width: 100%;
overflow: auto;
position: absolute;
bottom: 25px;
top: 25px;
}
Replace with
#ipboard_body .ips_editor.with_sidebar .sidebar .emoticon_holder {
width: 100%;
max-height: 93%;
overflow: auto;
position: absolute;
bottom: 25px;
top: 25px;
}
