Check Boxes for Catagories Not Appearing

Home Forums Calendar Products Community Events Check Boxes for Catagories Not Appearing

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #47735
    jpehrler
    Participant

    On the Add An Even page in IE and Chrome, the check boxes don’t appear next to the Category choices. I can send you a screen cap if you like.

    #47752
    Barry
    Member

    Hi!

    There is a very specific rule in your theme’s stylesheet that targets WebKit based browsers (such as Chrome) and that is causing the problem here:

    select,
    input,
    textarea {
    -webkit-appearance: none;
    -webkit-border-radius:0;
    border-radius:0;
    }

    (Which you can find around lines 597-603 of your theme’s style.css file.)

    You would need to override this. One way could be to simply add an extra rule at the bottom of that same file or else wherever the theme vendor recommends (to avoid the change being erased on future updates):

    .tribe_community_edit input {
    -webkit-appearance: normal;
    }

    #47756
    jpehrler
    Participant

    LOL, unreal.

    #47758
    jpehrler
    Participant

    This happens in IE as well. Is that a WebKit based browser as well?

    #47763
    Barry
    Member

    No – I believe that is Trident-based, however the problem could be similar. Could be worth checking in with your theme vendor via their support channels for this.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Check Boxes for Catagories Not Appearing’ is closed to new replies.