Opened 10 years ago
Closed 3 years ago
#28615 closed enhancement (wontfix)
Display more columns of widgets on widgets.php page if resolution size is very large
Reported by: | alexvorn2 | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | trivial | Version: | 3.9.1 |
Component: | Widgets | Keywords: | 2nd-opinion needs-patch |
Focuses: | Cc: |
Description
Currently we have one column of widgets if the browser size is below 1250px and 2 columns if is 1250px or more...
Maybe if browser size if bigger than 1700px to show 3 columns
if more than 2200px - 4 columns... or something like that
Change History (5)
#1
@
10 years ago
- Summary changed from Display more columns of widgets.php page if resolution size is very large to Display more columns of widgets on widgets.php page if resolution size is very large
#3
@
10 years ago
Whatever is done (or not done) here, it would be good to address how the widths of the widget area containers grow/shrink when the window is resized. Wide widget controls try to force themselves wider than the containing widget area container by setting a negative margin, but this causes problems when the container is not always the same width. The result is that the wide widget can have different dimensions than are specified when the widget is registered.
Note: See
TracTickets for help on using
tickets.
Currently WordPress has, in this section, the following structure
. liquid-widget-left (left sidebar where the widgets appear available)
. liquid-widget-right (right sidebar areas where the widgets appear)
. sidebars-column-1 (first column areas with widgets)
. sidebars-column-2 (second column areas with widgets)
WordPress widgets areas divided equally among the columns. Sidebars-and column-1. Sidebars-column-2.
What you're proposing is that instead of dividing the areas they are positioned side by side? I do not think is a good solution, since only one of the areas appear open, we would be with an empty space at the bottom, it is more feasible to position the fields one below the other, as it is currently.