Skip to main content
Topic: Fix for Member Options in Theme Management (Read 2265 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Fix for Member Options in Theme Management

Fixes the word wrap on some of the fields in 'Change current options for all members using this theme'.  Can be added around line 1545 in index.css.

Index.css...
Code: [Select]
#admin_form_wrapper .theme_options dt { /* Fixes wording overflow to next line */
    float: left;                        /* in Theme Management,Member Options, Change Current Options */
    clear: both;
    margin: 0 0 10px 0;
    padding: 0;
    width: 55%;
}

#admin_form_wrapper .theme_options dd {  /* Fixes wording overflow to next line */
    float: right;                        /* in Theme Management,Member Options, Change Current Options */
    overflow: auto;
    margin: 0 0 3px 0;
    padding: 0;
    width: 45%;
    min-height: 2em;
}

#admin_form_wrapper .input_check, .input_radio { /* Increase check box size in the */
    border: none;                                /* Theme Management,member Options, Change Current Options */
    background: none;
    vertical-align: top;
    margin: 0 2px 4px 4px;
}


Re: Fix for Member Options in Theme Management

Reply #1

:)  I think I have made a successful Pull Request for this.  If not, then do let me know so I can figure out what I did wrong. If it did work, then do let me know so I can go play the lottery today.  :D


PR: 2387

Last Edit: February 18, 2016, 07:14:22 pm by Lou

Re: Fix for Member Options in Theme Management

Reply #2

Good job ... its been merged in (the revised one) ... Thanks for your help

Re: Fix for Member Options in Theme Management

Reply #3

 ;D  You are welcome!  I am thrilled to have contributed something to Elkarte.

Thanks,

Lou