• Resolved USREC

    (@hawaiirealestate)


    How can we hide with CSS?

    </div>
    <div class="wpcf7cf_step" data-title="Step 21" data-id="step-21" >
    <div class="wpcf7cf_step_inner">
    <div class="step-title">Step 21</div>
    </div>
    • This topic was modified 4 years, 6 months ago by USREC.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Jules Colle

    (@jules-colle)

    .wpcf7cf_multistep .wpcf7cf_steps-dots {
      display: none;
    }
    

    Here’s some (still basic) information about styling: https://conditional-fields-cf7.bdwm.be/docs/faq/styling/

    Thread Starter USREC

    (@hawaiirealestate)

    Any way to hide DOTS, but keep progress Bar?

    Plugin Author Jules Colle

    (@jules-colle)

    Yes, you hide dots with some CSS:

    .wpcf7cf_multistep .wpcf7cf_steps-dots .dot {
        padding:0;
        height: 0;
        overflow: hidden;
    }

    I don’t have any extensive documentation about this because you can achieve almost any visual modification with some basic CSS knowledge. The trick is to inspect the element with developer tools, and find you selectors and modify the rules accordingly.

    Thread Starter USREC

    (@hawaiirealestate)

    Works, Thank you.

    Anyway to change the Progress Bar Color (green)

    Plugin Author Jules Colle

    (@jules-colle)

    This should work:

    .wpcf7cf_multistep .wpcf7cf_steps-dots .dot {
        border-bottom: 5px solid green;
    }

    (pretty sure this will work, but I didn’t test it..)

    EDIT:

    And for the active and completed steps:

    .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active,
    .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed {
        border-bottom: 5px solid green;
    }
    • This reply was modified 4 years, 6 months ago by Jules Colle.
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘How can we hide STEP Circles with CSS?’ is closed to new replies.