[Resolved] Add period and make listed dots bigger

Home Forums Support [Resolved] Add period and make listed dots bigger

Home Forums Support Add period and make listed dots bigger

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2044493
    Macca

    Hi there,

    I have a quiz website and I am looking at adding in a period (.) after the question numbers, and I’m also looking at making the listed bullet points (o) a big bigger with CSS changes. Do you know how I would do this?

    The website is https://www.ultimatequizquestions.com/january-quiz/

    Thank you!

    Macca

    #2044597
    David
    Staff
    Customer Support

    Hi there,

    1. Add period after the number:

    .mlw_qmn_question_number:after {
        content: '.';
    }

    2. Try this CSS for a custom radio:

    input[type="radio"].qmn_quiz_radio {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        border: 2px solid #999;
        transition: 0.2s all linear;
        margin-right: 10px;
    }
    
    input[type="radio"].qmn_quiz_radio:checked
    {
        border: 12px solid #000;
    }
    #2047298
    Macca

    That’s brilliant, thank you so much for this – great response time and information as ever!

    Cheers,

    Macca

    #2047412
    David
    Staff
    Customer Support

    Glad to be of help!!!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.