Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3633245
Post Status Styles
Open

Comments

  • Erik started the conversation

    Hello,  

    I'm working designing the user flow of freelance writers for the soledad magazine theme and I was wondering where and how to style post status?

    When contributors look at their "My Posts" page.  It lists the status of their posts but the default colors and font are not very visible.  I would like to change these to better suit my designs.  Where do I do this?

    Attached files:  Post Status Style.jpg

  •  2,252
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .penci_post_action.deleted {
        display: inline-block;
        padding: 3px 7px;
        border: 1px solid red;
        color: red;
        font-size: 12px;
        transition: 0.3s all ease-in-out;
    }
    .penci_post_action.deleted:hover {
        background: red;
        color: #fff;
    }

    Modify the CSS code above to fit your requirements.

    Regards,
    PenciDesign.