Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter juliegiles

    (@juliegiles)

    I have figured out the problem. The booking table is pushed very far to the right so the “cancel” button was hidden until I changed the size of my browser window. Where is the setting for this table?

    Thread Starter juliegiles

    (@juliegiles)

    I have since found that this table overflows onto the footer. The CSS ‘position’ ‘fixed’ is hard-coded in the file ‘templates/templates/my-bookings.php’ within the plugin, line 36, where the CSS class ‘fixed’ is included in the classes list for the bookings <table>, which in turn sets the ‘position’ to ‘fixed’ via a selector rule in the plugin’s external CSS file.

    For now I overwrote this default CSS rule with this custom selector:

    .css-my-bookings .em-my-bookings table.fixed#dbem-bookings-table {
    position: relative;
    }

    Is the a specific reason this table is coded this way?

    Plugin Support angelo_nwl

    (@angelo_nwl)

    you can check template file at events-manager/templates/templates/my-bookings.php

    to use templates: https://wp-events-plugin.com/documentation/using-template-files/

    eg. wp-content/themes/Your Theme/plugins/events-manager/templates/my-bookings.php

    Thread Starter juliegiles

    (@juliegiles)

    I have adjusted the CSS and the table looks fine. I just wanted to know if there was some reason you had coded that way. You did not answer my question.

    Nothing is coded without a particular reason, but I’m afraid I can’t comment on this exact situation.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Booking Page’ is closed to new replies.