• Resolved liplist1

    (@liplist1)


    Hello! I am looking for a solution for my client. We need to display each certificate earned in the list with a bullet point or a number before.

    Is there any possible solution to adjust the output of the shortcode?

    Thank you for your answer!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Uncanny Owl

    (@uncannyowl)

    Hi @liplist1 ,

    Thanks for the note. While this isn’t supported out of the box with UI controls, you could add bullets to the list using some CSS. Try this:

    /**
     * Uncanny Toolkit - Show Certificates 
     * Add a bullet to the list of Certificates
     */
    .certificate-list-container .certificate-list a {
    	display: list-item !important;
    }
    Thread Starter liplist1

    (@liplist1)

    Thank you so much for answer!

    Do you see a way to make numbers instead of bullets?

    “numbered list”

    Thank you!

    Plugin Author Uncanny Owl

    (@uncannyowl)

    Sure, you could try this instead:

    /**
     * Uncanny Toolkit - Show Certificates 
     * Add a bullet to the list of Certificates
     */
    .certificate-list-container .certificate-list a {
        display: list-item !important;
        list-style-type: decimal;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Certificate list Shortcode adjustment’ is closed to new replies.