Advertisement:

Author Topic: This is driving me NUTS! How can I remove the styling of the dropdown selectors  (Read 1012 times)

bixbi

  • Newbie
  • *
  • Posts: 2
Hey guys,

I've spent hours on trying to figure this out. I just want BASIC/generic form fields only. In particular the dropdown select menu. I hate it I just want a default form. The current form in the bender theme is doing way too much (in my opinion). I want to remove all formatting but I haven't been able to do so simply using main.css.

Can someone, ANYONE please help!


garciademarina

  • Administrator
  • Hero Member
  • *****
  • Posts: 974
Hi,

On Bender theme the dropdown style is set using javascript, you can remove the javascript function call and the style will no be set.

If you want to remove the style you need to edit (using Bender theme) js/global.js

find and comment this code:

Code: [Select]
$('select').each(function(){
        selectUi($(this));
    });

bixbi

  • Newbie
  • *
  • Posts: 2
Thank you so much for this!  :)