• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Xenforo 1.3

blatchy

Member
AMS
Pick'em
Power Rankings
Sportsbook
Survivor
Trying sportsbook out on 1.3 and am getting this error when editing a category

An exception occurred: Argument 1 passed to XenForo_ViewAdmin_Helper_Style::getStylesAsSelectList()
 
sorry for my lack of complete understanding. This is what I am seeing

screenshot_208.png


I have no idea what to edit.
 
its ok, don't be sorry.

Obviously you are using a custom style, so it might be best if you contact the developer of the custom style and ask them to fix it instead of trying to yourself. This is core XenForo functionality, so your style developer obviously needs to fix it as it effects other areas of XenForo that uses it as well (Discussion lists, Threads and the Resource Manager are just a few of those places).

That line you have highlighted states what CLASS it is using class="removeFilter". So look at the CSS I posted and you will see this:
HTML:
    .discussionListFilters .removeFilter,
    .discussionListFilters .removeAllFilters
    {
        color: @primaryMedium;
        background: @primaryLighterStill url('@imagePath/xenforo/gradients/form-button-white-25px.png') repeat-x top;
        border: 1px solid @primaryLighterStill;
        border-radius: 5px;
        padding: 2px 10px;
    }


and when you hover over one of the filters, this applies..
HTML:
        .discussionListFilters .removeFilter:hover,
        .discussionListFilters .removeAllFilters:hover
        {
            background-color: @primaryLightest;
            text-decoration: none;
            color: @mutedTextColor;
            box-shadow: 1px 1px 5px rgba(0,0,0, 0.15);
        }


also, this controls the x on each filter
HTML:
        .discussionListFilters .gadget
        {
            color: @primaryLight;
            font-weight: bold;
            margin-left: 3px;
        }
 
Back
Top