• Hello-

    I am wondering if there is code that will make the process vertical? I tried to make the mobile CSS to snap any time below 4000 (opposed to 1336) but it did not stick.

    Any help would be appreciated.

    Thank you.

Viewing 1 replies (of 1 total)
  • Plugin Author Nenad Obradovic

    (@nenad-obradovic)

    Hi nketola,

    Try to use custom css code below for that case

    .evc-process .evc-p-mark-vertical {
        display: block !important;
    }
    
    .evc-process .evc-p-mark-horizontal {
        display: none !important;
    }
    
    .evc-process .evc-p-inner {
        position: relative;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        padding: 0 0 0 76px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .evc-process .evc-process-item {
        width: 100%!important;
        min-height: 76px;
        float: none;
        padding: 0;
        margin-top: 0;
        text-align: inherit;
    }

    Best regards,
    Nenad

Viewing 1 replies (of 1 total)
  • The topic ‘EVC Process vertical?’ is closed to new replies.