can't figure out custom css for appointments admin page

I have changed the css in firebug but can’t figure out what to put in the custom css to change the backend app. admin page width.

I changed it to 69em; and it looks good, but after i past in copy rule declaration:

<.inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend {

display: block;

float: left;

line-height: 2.5;

width: 69em;

}>

to the custom css, for http://www.massagetx.com/mt, it doesn’t change the style.

what did I miss. I have granted access.

thanks,

matt

  • Tyler Postle
    • Recruit

    Hey Matt,

    Hope you’re doing well today!

    What exactly are you wanting to change here?

    You could try placing an !important on those styles, it’s possible that there are other styles overriding them. Normally we don’t want to use the !important declaration but it can sometimes be a necessary evil when overriding styles.

    So try this:

    .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend {
    display: block !important;
    float: left !important;
    line-height: 2.5 !important;
    width: 69em !important;
    }

    If that doesn’t work then if you could explain further what you want to change then I can have a look :slight_smile:

    Look forward to hearing back!

    Cheers,

    Tyler

  • Tyler Postle
    • Recruit

    Hey Matt,

    Sorry for the delay here.

    Are you adding the CSS to an admin specific CSS sheet? Like the one you can use inside Ultimate Branding? There is a module called “Custom Admin CSS”.

    If you add that CSS into a regular custom css sheet like child theme css or Simple Custom CSS plugin it won’t apply to the admin side of WP.

    If you already are applying it to an Admin specific css sheet then can you grant support access again so I can have a closer look? :slight_smile:

    Talk to you soon!

    Cheers,

    Tyler