@Black-Square said in Dynamic registrations - problems still exist post-beta:
@jmarkows I had a hunch you might do that Hm. Similar, but not identical. Maybe the font size is not being picked up, and the CSS doesn't properly constrain the container size, so the bounding box grows the font size until it pushes the other registrations out of frame? Since you're already in the Registration folder, you could try deleting this section from bksq_bonanza_registration.js.
var sidesize = url.searchParams.get("ss");
if (sidesize) {
this.sidesize = parseFloat(sidesize);
}
var tailsize = url.searchParams.get("ts");
if (tailsize) {
this.tailsize = parseFloat(tailsize);
}
var wingsize = url.searchParams.get("ws");
if (wingsize) {
this.wingsize = parseFloat(wingsize);
}
I'm not sure this is entirely useful testing, but you can see why I went here as a possible explanation for what we are seeing.
[image: 7639fb67-0aab-460c-8278-700064aece23.png]
I took out
var sidesize = url.searchParams.get("ss");
if (sidesize) {
this.sidesize = parseFloat(sidesize);
}
var tailsize = url.searchParams.get("ts");
if (tailsize) {
this.tailsize = parseFloat(tailsize);
}
from the TBM registration file and this was the result. I had the .css filed enabled originally, but even after disabling it it looks like this.