We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42f4550 commit 72584c7Copy full SHA for 72584c7
skypilot/swap-next-previous-buttons-during-quizzes.css
@@ -0,0 +1,18 @@
1
+/**
2
+ * Swap the previous and next buttons during quizzes with the Sky Pilot theme.
3
+ *
4
+ * You can add this recipe to your site by creating a custom plugin
5
+ * or using the Code Snippets plugin available for free in the WordPress repository.
6
+ * Read this companion documentation for step-by-step directions on either method.
7
+ * https://lifterlms.com/docs/adding-custom-code/
8
+ */
9
+footer#llms-quiz-nav {
10
+ display: flex;
11
+ flex-direction: row-reverse;
12
+}
13
+button#llms-prev-question {
14
+ order: 2;
15
16
+button#llms-next-question {
17
+ order: 1;
18
0 commit comments