Skip to content

Commit 72584c7

Browse files
authored
Create swap-next-previous-buttons-during-quizzes.css
1 parent 42f4550 commit 72584c7

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)