Centering the Mario Maker 2 Multiqueue (removing the left/right split)

Is it possible to remove the left side/right side division on the WarpWorld Multiqueue bar for Mario Maker 2, and just display your information in the center?

If you are using OBS, yes. In your WarpBar Browser Source, add the following CSS:

#app > div > div:last-child { display: none; }
#app > div > div:first-child { margin: auto; }

Then place all of your WarpBar info items in the left column.

I assume XSplit has similar functionality, but I don’t have it, so I don’t know.

2 Likes

That’s exactly what I was looking for. You’re the best. Thanks a ton.