function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
lakshman.mattilakshman.matti 

Changing Font Down arrow color and border of picklist(inputfield) in VF Page

Hi All,
I have created a page which contains a picklist. 
which looks like below.
User-added image
i wanted to change the down arrow color into different color and border also in different color.

Thanks
Lakshman


 
pconpcon
You can do this by placing a styleClass on the apex:inputField and then in CSS change the select to your hearts content.

http://stackoverflow.com/questions/611482/change-color-and-appearance-of-drop-down-arrow
Gyanender SinghGyanender Singh
Hi Lakshman,
Please use the following line in the vf page.

<apex:inputfield value="{!Student.country__c}" style="color: red"/>

Thank
Gyani