• Resolved DickRaney

    (@dickraney)


    I manage a bunch of sites and rarely add a note unless there is something special I don’t want to forget when editing a page. It is too easy to overlook the note completely or only see it after you have already completed your edit. I think it would be helpful for the notes to show in the admin view with a yellow background to draw your attention that there is something special here.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support annaszalkiewicz

    (@annaszalkiewicz)

    Hello,

    You can style the note with this simple CCS

    td.spnote.column-spnote > div {
    background: #e3d535;
    padding: 5px 10px;
    border-radius: 5px;
    }

    Then it will look like this.

    Thread Starter DickRaney

    (@dickraney)

    I don’t see anywhere to add CSS in the settings. Adding to stylesheet doesn’t do anything.

    Thread Starter DickRaney

    (@dickraney)

    I fixed it by adding this to functions:

    add_action('admin_head', 'my_admin_styles');
    function my_admin_styles() {
      echo '<style>
        td.spnote.column-spnote > div {
            background: #e3d535;
            padding: 5px 10px;
            border-radius: 5px;
        }
        div#spnotes.postbox { background: #e3d535; }
      </style>';
    }

    While that fixes it, I still think it would be a nice upgrade to the plugin to make it easy for non-technical users to accomplish this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Feature request: Color Settings’ is closed to new replies.