• Hi there,
    I’d like to display a text line like (Please scroll all the way down to Accept) right under the popup header. How can i achive this with custom css. Thanks in advance.

Viewing 1 replies (of 1 total)
  • Plugin Author RazyRx

    (@razyrx)


    Plugin do not have option like this.
    You can try this custom CSS

    #br_popup .br_popup_header {
        overflow: visible!important;
    }
    #br_popup .br_popup_header:after {
        content: "TESTSESDFFDS";
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: 20px;
        background-color: #f0f0f0;
        line-height: 20px;
    }
    #br_popup .popup_animation.with_header {
        padding-top: 90px!important;
    }

    Regards,
    Oleg

Viewing 1 replies (of 1 total)
  • The topic ‘How to insert a short text line after Header’ is closed to new replies.