-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to change the ColumnHeader and Toolbar height ? #278
Comments
Create a CSS file and load it after you load w2ui.css or put inside STYLE tag on the page. .w2ui-grid .w2ui-grid-toolbar {
padding: 14px 5px;
height: 50px;
}
.w2ui-grid .w2ui-grid-header {
padding: 14px;
font-size: 20px;
height: 50px;
} |
This method no longer works for header 1.5rc1 for the header. It works for the toolbar. Is there a new method for this? |
Should still work |
Here is a fiddle where the toolbar get's sized correctly but the header does not. |
I had a chance to take a look and this is some CSS that did work for me
|
Yes, last CSS comment works for me too. |
As the title ....for the grid widget.
Thanks
The text was updated successfully, but these errors were encountered: