Icon size
-
Hello,
I was trying to change the icon size for this theme. I went to the forum and found the following instructions. However, when I went to the page I did not fine the array(
‘height’ => 35,
‘width’ => 130,
‘flex-width’ => true,
) to replace and instead I found
*
* @return array
*/
public function epsilon_onboarding( $setup = array() ) {
$dashboard = new MedZone_Lite_Dashboard_Setup();IS THIS STILL the correct procedure to enlarge the icon size??
To make the change, go to this file: medzone-lite\inc\class-medzone-lite.php and on lines 385-389 you will see this code:
array(
‘height’ => 35,
‘width’ => 130,
‘flex-width’ => true,
)Replace it with this one:
array(
‘height’ => 35,
‘width’ => 130,
‘flex-width’ => true,
‘flex-height’ => true,
)
- The topic ‘Icon size’ is closed to new replies.