Building on the Quick Start example, you can use CSS styling to quickly change a few aspects of the Pager widget's appearance. This same method applies to all Wijmo widgets. You can find all of the CSS selectors for the widget in the installation folder under wijpager in the jquery.wijmo.wijpager.css file.
Drop down and copy script to paste in <head> section
Script |
Copy Code |
---|---|
<style type="text/css"> .wijmo-wijpager .wijmo-wijpager-button { background: Blue; border-color: Green; font-family: "Times New Roman"; font-size: large; } .wijmo-wijpager .wijmo-wijpager-button a:link { color: White; } .wijmo-wijpager .wijmo-wijpager-button .ui-state-active { background: Navy; color: Yellow; } .wijmo-wijpager .wijmo-wijpager-button a:hover { background: Purple; color: Orange; } </style> |