How to center align the Start Quiz button in Game Component

Hello!

I would like to move the Start quiz button to the center of the component (and only for this article style), but I can’t seem to find the theme option for it. Could someone be so kind enough to point me to it?

Thank you!

:thinking: as far as I know there is no ‘quiz component’. What kind of component are you using here?

Whoops, sorry about that! I meant the Game component.

Hi,

We wanted to do this too but there does not seem to be a way to do it in the editor. So, we found a way to do it after publishing the course, notes below…

Nick


Edit the index.html file in the root of the folder.

Add this CSS anywhere withing the existing HTML tags near the top of the HTML:

    .ev-game-widget.ev-component-widget  {
		text-align: center;
	}

Thank you so much for this!

1 Like