a The project I'm working on now uses the jQuery UI for some of its widgets. To provide the user with a global look, I would like to use the framework for its css materials as well.
I am currently implementing a toolbar, such as a home page, where the user can see the general status of their data. This panel consists of several divs that should be aligned to the grid layout.
I am trying to style divs as follows
<div class="ui-widget"> <div class="ui-widget-header">Box Header</div> <div class="ui-widget-content"> Content of the Box </div> </div>
Later, I would like to implement some drag and drop and sort functions.
The problem I'm currently facing is that the boxes are not aligned correctly.
Does anyone have a hint about using jQuery.UI for this kind of css work? I studied CSS documentation at jqueryui.com, but not much information.
Best wishes,
Gordon
source share