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 #2992872
Problems with categories pages
Closed

Comments

  •  4
    ISOLE-GRECHE started the conversation

    1) Post Categories Background Color is OK, but. Post Categories Hover Background Color doesn't work. I change it but accent color remains (1)

    2) How to have Post Title changing color if hover?

    3) How to change bg and hoverg bg of index page numbers?

    4) How to have post description text justify?

  •  2,580
    PenciDesign replied

    Hi,

    1. Please enable this feature on your site,

    2. Please go to Appearance → Customize → Additional CSS then add the following custom CSS code:

    .penci-archive__list_posts .penci-post-item .entry-title a:hover {
        color: #000;
    }

    Change #000 with the hover color,

    3. Please modify this CSS & change this color:

    .penci-pagination:not(.penci-ajax-more) span.current {
        border-color: #07f;
        background-color: #07f;
        color: #fff;
    } .penci-pagination:not(.penci-ajax-more) a:hover {
        border-color: #07f;
        background-color: #07f;
        color: #fff;
    } .penci-pagination:not(.penci-ajax-more) a {
        border-color: #ececec;
        color: #111;
        background-color: #fff;
    }

    4. Add this CSS code to your site:

    .penci-archive .penci-archive__content .entry-content {
        text-align: justify;
    }

    Regards,
    PenciDesign.





  •  4
    ISOLE-GRECHE replied

    1. Where can I enable it?

    2. OK!

    3. OK, but I can't understand what is the third one for:

    .penci-pagination:not(.penci-ajax-more) a {
        border-color: #ececec;
        color: #111;
        background-color: #fff;
    }

    4. OK!

  •  2,580
    PenciDesign replied

    Hi,

    1. Please send me a category page containing this element,

    3. This is a pagination link element.

    Regards,
    PenciDesign.