By Athanasios Zisopoulos on Tuesday, 11 September 2018
Posted in General
Likes 0
Views 571
Votes 0
hi is there a way to change the width of es-sidebar on easysocial only for the desktop view from 220 to 300px;
thanks
Try apply this following custom css from your site backend > Easysocial > theme > custom css and see how it goes.

body #es .es-container .es-sidebar {
width: 300px;
-webkit-flex: 0 0 300px;
-ms-flex: 0 0 300px;
flex: 0 0 300px;
}

body #es.is-mobile .es-container .es-sidebar {
width: 220px;
-webkit-flex: 0 0 220px;
-ms-flex: 0 0 220px;
flex: 0 0 220px;
}


Make sure you have clear your backend and browser cache before you test.
·
Tuesday, 11 September 2018 09:45
·
0 Likes
·
0 Votes
·
0 Comments
·
thanks it seems ok!
·
Tuesday, 11 September 2018 14:31
·
0 Likes
·
0 Votes
·
0 Comments
·
You're most welcome.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding
·
Tuesday, 11 September 2018 14:46
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post