• Resolved Peaceful Chimp

    (@peacefulchimp)


    Hello team,
    I would like to deactivate bold font and center of yarpp-related.
    I was looking on the forum and I found that for bold:
    .yarpp-related a {
    font-weight: normal !important;
    }
    But is not working!
    And how to center the container.
    In advance thank,
    Manuel

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author YARPP

    (@jeffparker)

    To customize the title:

    
    .yarpp-template-thumbnails .yarpp-thumbnail-title {
        font-weight: normal !important;
    }
    

    To customize card height:

    
    .yarpp-template-thumbnails .yarpp-thumbnail {
        height: auto !important;
    }
    

    To center container:

    
    .yarpp-template-thumbnails {
        text-align: center;
    }
    

    or

    
    .yarpp-template-thumbnails {
        display: flex;
        align-content: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    

    Note: these CSS customizations target the built-in “Thumbnails” theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Bold and center’ is closed to new replies.