Hi,
We need to create a specific layout for seating plans and hoping to do so with css (this post: https://eventespresso.com/topic/interactive-seating-plan-addon/ seems to indicate that this is possible). I have had some success by editing the css definitions on the page in Firebug (see image)
However, much of the css appears to be inline? I’m thinnking we will need to be able to ‘class up’ the outer wrapper (probably by seating chart ID), so we can apply different layouts to different charts. Can you point me in the direction of which file(s) I need to customise to get this to work?
Thanks for that. Is there a code to extract the seating chart id for the particular event? Ideally all I want to do is put class=”seating_chart_id_#” on <div id=”seating_chart_page”>, I figure this would allow us to apply styling on a chart by chart basis. (I’ve tested this in FireBug and it looks like it will work a treat!)
Using jQuery you could use the attr function and the javascript substring function on the event titles html
var getid = jQuery(‘.event_title’).attr(‘id’);
getid = getid.substring(12);
Will only work on the single registration page and it gets the ID from the event title, strips out the beginning bit to be left with the actual ID number only.
From there you can use it in further jQuery functions.
The support post ‘Modify Seating Chart Layout with CSS’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for the Seating Chart add-on for EE3.
This product has been discontinued and is no longer under development.