Http://thetest.ch/

Hello,

I’m setting up the E&P form builder and am facing a few issues.

Firstly the blue bubble is too small to contain the price. How do I make it bigger?

Second issue:

I would like to move the button between the title and the description in the introduction step

THank you

http://thetest.ch/

Hi @LordGavin

Thanks for writing in, this is the CSS code snippet that you can add to (Theme Options > CSS) to enlarge the circle:

#estimation_popup.wpe_bootstraped .genPrice .progress .progress-bar-price {
    height: 90px;
    width: 90px;
    border-radius: 80px;
    top: -30px;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .progress-bar-price.lfb_subsPrice {
    line-height: 80px;
}

I’m not really sure which button you want to move and where exactly you want to show it, perhaps you can share some screenshots that would make it easier for us.

Thanks.

Hi this is great,

However the circle is now too big for mobile.

G

Hi @LordGavin,

Please change it to this,

@media ( min-width: 980px ) {

#estimation_popup.wpe_bootstraped .genPrice .progress .progress-bar-price {
    height: 90px;
    width: 90px;
    border-radius: 80px;
    top: -30px;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .progress-bar-price.lfb_subsPrice {
    line-height: 80px;
}

} 

That shouldn’t affect the mobile view anymore.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.