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 #2298606
Featured image
Closed

Comments

  • art_jensen started the conversation

    Hi Penci,

    I have two questions this time : 

    1 - is there a way to hide post title on featured image as the longer title the more image is covered by white rectangle -  screen shot number 1

    2 - is there a way to add thumbs up and down graphics to Penci Review? I am thinking to do something like on the attached screen shot number 2


    Many thanks as always :)

    Artie J

  •  2,699
    PenciDesign replied

    Hi,

    1/ Unfortunately, there is no any option for that. If you have long post title, I recommend you edit this widget > un-check on "Display featured post style 2" to move the post title to display below the featured image.

    2/ Please try add more this code to Customize > Custom CSS to do that:

    .penci-review-stuff .penci-review-good .penci-review-title:before {
        content: "\f087";
        font-family: 'FontAwesome';
        display: inline-block;
        margin-right: 6px;
        font-size: 20px;
    }
    .penci-review-stuff .penci-review-bad .penci-review-title:before {
        content: "\f088";
    }
    

    Best Regards,

    PenciDesign

  • art_jensen replied

    Awesome Penci! I will try it this evening :)


    Best regards,

    Artie J

  • art_jensen replied

    Hi,


    Thumbs up and down worked :) but they're black. Any chance to add red for "no" and green for "yes"? 

    Thank you as usual. 


    Artie J

  •  2,699
    PenciDesign replied

    Hi,

    You can replace the code I sent to this code:

    .penci-review-stuff .penci-review-good .penci-review-title:before {
        content: "\f087";
        font-family: 'FontAwesome';
        display: inline-block;
        margin-right: 6px;
        font-size: 20px;
        color: #008000;
    }
    .penci-review-stuff .penci-review-bad .penci-review-title:before {
        content: "\f088";
        color: #ff0000;
    }
    

    Best Regards,

    PenciDesign

  •   art_jensen replied privately