When viewing my form in CakePHP, I noticed that the time select dropdown appears differently in Chrome compared to Firefox. In Firefox, there are 3 arrow buttons attached to each dropdown, whereas in Chrome it looks different.
I want to hide the arrow buttons in the Firefox dropdown to match the appearance in Chrome. I have tried several solutions found through Google but none have worked so far due to CakePHP's auto generation of the 3 dropdowns.
Is there a way to apply HTML tags between each of the dropdowns generated by CakePHP? Below is the relevant code snippet:
<?php
echo $this->Form->input('Rideoffer.DepartureTime', array(
'type' => 'time',
'selected' => '9:00:00',
'interval' => 5
));
?>
Any suggestions on how to solve this issue?