Suggestion for the Widgets plugin
-
A problem occurs when having more than 4 dynamic sidebars installed: Not all sidebars can fit on the screen.
I’m sure there are more elegant solutions to this problem, but this fix (in widgets/widgets.php) worked for me:
From:
#sbadmin #zones {
width: <?php echo $width; ?>px;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}To:
#sbadmin #zones {
max-width: 100%;
min-width: <?php echo $width; ?>px;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}
- The topic ‘Suggestion for the Widgets plugin’ is closed to new replies.