Okay
  Public Ticket #2759174
RSVP Form cut off and limited
Closed

Comments

  •  4
    Dan started the conversation

    Hello,
    I have three issues
    1. the RSVP form is cut off in the browser window, so you can't click on the buttons anymore. How can I change this? (see attached file)
    2. how can I offer a RSVP for a limited time. For example, I want to allow registration for a course only from May first to June the fourth.

    3. How can I align the checkbox and the text on the right side of the checkbox? See also in the attached file. I added your code from this ticket: https://stachethemes.ticksy.com//ticket/2566254/

    Regards

  •  4
    Dan replied

    I have changend my RSVP form with custom fields. RSVP Form is still cut off. See attached file. Code i used to creat for this RSVP in attached file.

    So still got all three issues. Please help. Maybe there is a way to make the RSVP form two columned or scrollable?

  •  799
    Zhivko replied

    This css will make the settings container scrollable:

    @media only screen and (min-width: 768px) {
        .stec-rsvp-popup-wrapper-settings {
           max-height:300px;
           overflow: auto;
           scroll-behavior: auto;
           scrollbar-width: thin;
        }     .stec-rsvp-popup-wrapper-settings::-webkit-scrollbar {
            width: 5px;
        }     .stec-rsvp-popup-wrapper-settings::-webkit-scrollbar-thumb {
            -webkit-border-radius: 3px;
            border-radius        : 3px;
            background-color     : #ececec;
        }
    }

    Stachethemes Developer

  •  4
    Dan replied

    Thank you, this works fine!

    Still got this problem:

    How can I offer a RSVP for a limited time. For example, I want to allow registration for a course only from May first to June the fourth.

    Can you help me with this issue as well?


  •  799
    Zhivko replied

    Hi Dan,

    I don't think this is achievable at the moment. I think you should have to turn on/off the rsvp manually for this period of time.


    Stachethemes Developer