I created a select metabox within my functions.php on Wordpress.
'fields' => array(
array(
'name' => 'CMS Logo',
'id' => 'cms_icon_image',
'type' => 'select',
'options' => array(
'Wordpress' => 'Wordpress',
'Magento' => 'Magento',
'OpenCart' => 'OpenCart',
)
)
)
I need to set an unique ID or Class for each select option. This will help to style each option( I will add an image with css for each option)