Where do I edit these images? I'd like to make them smaller or use custom images?
Thanks.
Where to make print,
Where to make print,
Appgini 5.50, Revision 835. Mac OSX 10.11 running Windows 10 on VMWare.
Re: Where to make print,
Those images are Glyphicons, generated by Bootstrap: http://getbootstrap.com/components/#glyphicons
You'll find the code for those icons in datalist.php Search the file for the section starting with // quick search and TV action buttons
Eg: for Print Preview icon: <i class="glyphicon glyphicon-print"></i> for Save CSV <i class="glyphicon glyphicon-download-alt"></i>
You can swap any icon for another existing glyphicon by simply changing the icon class.
You can change the size of the icons by adding this to your bootstrap CSS:
For ALL glyphicons across entire site (change px size depending on what you are after):
To change the size of specific icons:
If you want to add your own images, you'll have to add your own css classes. Hope that helps.
You'll find the code for those icons in datalist.php Search the file for the section starting with // quick search and TV action buttons
Eg: for Print Preview icon: <i class="glyphicon glyphicon-print"></i> for Save CSV <i class="glyphicon glyphicon-download-alt"></i>
You can swap any icon for another existing glyphicon by simply changing the icon class.
You can change the size of the icons by adding this to your bootstrap CSS:
For ALL glyphicons across entire site (change px size depending on what you are after):
Code: Select all
.glyphicon {
font-size: 12px;
}
Code: Select all
.glyphicon.glyphicon-print {
font-size: 12px;
}
Re: Where to make print,
Excellent. Very much appreciated.
Appgini 5.50, Revision 835. Mac OSX 10.11 running Windows 10 on VMWare.