mushmoosh Posted October 29, 2008 Share Posted October 29, 2008 How do you apply styling through CSS for a custom field? Specifically, I am trying to apply a CSS class to the custom country field dropdown list. Any guidance will be appreciated. Thank you! On a side note: I have almost finished integrating everything and WHMCS is absolutely wonderful. Detail review on the way once its live for a few months. So far, it has been such a positive experience. 0 Quote Link to comment Share on other sites More sharing options...
mushmoosh Posted October 30, 2008 Author Share Posted October 30, 2008 bump... 0 Quote Link to comment Share on other sites More sharing options...
herpherp Posted October 30, 2008 Share Posted October 30, 2008 The following code will change all your drop down lists to be the same, select { color : #000; background-color : #000; border : 1px solid #fff; font-family : Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, sans-serif; font-size : 1.1em; font-weight : normal; padding : 0; } if you are trying to change just 1 specific drop down will take more work, such as adding that custom field directly in the tpl file. {if $customfields}<tr><td class="fieldarea"><br /></td></tr>{/if} {foreach key=num item=customfield from=$customfields} <tr><td class="fieldarea">{$customfield.name}</td><td>{$customfield.input} {$customfield.required}</td></tr> {/foreach} If you are only using 1 custom field you can change the class="fieldarea" to whatever you want if you are using more than 1 custom field and want different classes for each you would need to call the custom fields seperately instead of using the foreach or use an if/else to change just that 1 custom field class.... Hope this gets you in the right direction. 0 Quote Link to comment Share on other sites More sharing options...
mushmoosh Posted October 30, 2008 Author Share Posted October 30, 2008 Wow, thank you! ...such a simple solution and it worked perfectly. I truly appreciate your help! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.