Last modified by Carina Enke on 12.02.2024

Show last authors
1 With the help of CSS, you can customise the appearance of your course to match the corporate design of your institution, for example. Among other things, it is possible to adjust font and background colours or to reposition certain buttons.
2
3 (% class="box warningmessage" %)
4 (((
5 Attention
6
7 You should only adjust the course layout if you have a good knowledge of HTML and CSS. Please note that many classes are used multiple times, and not all changes may be visible at first glance. Test your adjustments with different screen sizes and mobile devices .
8
9 Make also sure that there is enough [[contrast between the font colour and the background to support accessibility>>doc:LMS.Benutzerhandbuch OPAL.Barrierefreiheit.WebHome]].
10 )))
11
12
13 **Inhalt**
14
15 {{toc/}}
16
17
18 == Activate course layout ==
19
20
21 (% class="box infomessage" %)
22 (((
23 With the release OPAL 11.3, the function to change the course layout has become available in the new user interface. How to activate the course layout in the old user interface is explained in the Activate course layout (old user interface) section.
24 )))
25
26 **Step 1: Upload CSS file to the course folder**
27
28 |First create your own CSS file and upload it to the **course folder** of your course. You can find this folder in the course editor.|(((
29 [[image:https://www.bps-system.de/help/download/attachments/55574597/Kurseditor%20-%20Aufruf%20Kursablageordner_de.png?version=1&modificationDate=1632463074362&api=v2||alt="Ablageordner im Kurseditor" width="400"]]
30 )))
31
32 **Step 2: Embed CSS file**
33
34 To activate the course layout from this CSS file, proceed as follows:
35
36 |(% colspan="1" %)(((
37 In the course view, open the [[image:LMS.Benutzerhandbuch OPAL.Icons.WebHome@Icon_zweiRädchen.png||data-xwiki-image-style="img-icon"]] **More settings** menu at the top right of the course.
38 )))|(% rowspan="2" %)(((
39 [[image:Kursrun - Kurseinstellungen aufrufen_de.png||alt="Einstellungen zum Kurs öffnen" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" height="270" width="295"]]
40 )))
41 |Select the first entry: **Settings**. The **Course settings **dialogue opens.
42 |In the course layout section of this dialogue, click on the small triangle in the **From storage folder **box. A list of all available CSS files opens. Now select your desired CSS file.|[[image:Kursrun - CSS auswählen_de.png||alt="Kursrun -CSS auswählen_de" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
43 |In the course layout section of this dialogue, click on the small triangle in the **From storage folder **box. A list of all available CSS files opens. Now select your desired CSS file.|(% colspan="1" rowspan="2" %)[[image:Kursrun - gewählte CSS_de.png||data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
44 |Save your changes and close the dialogue.
45
46 == Layout adjustment examples ==
47
48
49 {{toc scope="LOCAL"/}}
50
51
52 Adjustments to match the corporate design
53
54 ==== Replace logo in the header ====
55
56 Place your logo (.png, .jpg, .svg) in the same folder as your CSS file. Adjust the width and the size of the image (background-size) if necessary. In the example, we use the "logo-bps.svg" logo.
57
58
59 {{code language="none"}}
60 .logo {
61
62     width: 200px;
63
64     background-image: url(logo-bps.svg);
65
66     background-size: 150px;
67
68 }
69 {{/code}}
70
71
72
73
74 ==== Change background colour of the navigation bar (incl. mobile version) ====
75
76 The font colour and the design of other elements are based on a dark navigation bar. If the background colour is light, you may have to adjust other elements. In the example, the colour of the header is also modified in the mobile version.
77
78 {{code language="none"}}
79 .page .mobile-page-header,
80
81 .nav-container,
82
83 .nav-container + .clearfix {
84
85 background-color: #008079;
86
87 }
88 {{/code}}
89
90
91
92
93 ==== Adjust font/icon colour of links and buttons ====
94
95 Choose a different colour for interaction options such as hover and focus to give users feedback.
96
97
98 {{code language="none"}}
99 a, .btn {
100
101 color: #008079;
102
103 }
104
105
106 a:hover, a:focus, a:active,
107
108 .btn:hover, .btn:focus, .btn:active {
109
110 color: #004A46;
111
112 }
113 {{/code}}
114
115 [[image:Kursdesign - Logo und Farben_de.png||alt="Corporate Design Anpassungen" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" height="300" width="778"]]
116
117
118
119
120
121
122
123 === Hide main navigation ===
124
125 You can hide the navigation bar if necessary. Please note that the navigation to specific areas such as Teach & Learn or other opened courses is then no longer possible. For the mobile version, you should undo the hiding as shown in the example.
126
127
128 {{code language="none"}}
129 .nav-container {
130
131 display: none;
132
133 }
134
135 .mobile .nav-container {
136
137 display: block;
138
139 }
140 {{/code}}
141
142
143 [[image:Kursdesign - Navigation ausblenden_de.png||alt="Hauptnavigation ausblenden" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
144
145
146
147
148 === Add a course background image ===
149
150 Place your background image (.png, .jpg, .svg) in the same folder as your CSS file. Pay attention to the file size to allow the course to load quickly. [[Further file size information.>>doc:LMS.Benutzerhandbuch OPAL.Barrierefreiheit.WebHome]]
151
152 At [[W3Schools>>url:https://www.w3schools.com/cssref/css3_pr_background.asp]], you can find more information on how to embed background images in CSS.
153
154
155 {{code language="none"}}
156 #wrap {
157
158 background: url(background.jpg) no-repeat 0 0;
159
160 }
161 {{/code}}
162
163 [[image:Kursdesign - Hintergrundbild_de.png||alt="Kurs mit Hintergrundbild" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
164
165
166
167
168 === Coloured course elements in the menu ===
169
170 If you wish to highlight all course elements of the same type, e. g. all blogs in the menu on the left, use the following code:
171
172
173 {{code language="none"}}
174 .jstree-default>.jstree-container-ul a.node-blog {
175
176 background: darkblue;
177
178 color: #fff;
179
180 }
181 {{/code}}
182
183 Eine Liste der der restlichen Kursbausteine bietet die Seite [[CSS-Klassen der Kursbausteine>>doc:.CSS-Klassen der Kursbausteine.WebHome]]..
184
185
186 If you only wish to highlight a particular course element in the menu, e. g. the final test, you can use the ID of the course element. In the example, the ID reads **84915228820561**:
187
188
189 {{code language="none"}}
190 .jstree-default #id84915228820561_anchor {
191
192 background: darkblue;
193
194 color: #fff;
195
196 }
197 {{/code}}
198
199
200 [[image:Kursrun - Menü mit Beispiel CSS_de.png||alt="Beispiel zur CSS-Verwendung" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
201
202
203
204
205 === Adjust status colours for course progress ===
206
207 The progress for individual course elements is displayed in the course menu and the upper area of the content. You can customise the colours via //border-left-color//. [[Further information on the course progress indicator>>doc:LMS.Benutzerhandbuch OPAL.Lehren.Kurs.Kurs bearbeiten.Kursfortschritt.WebHome]].
208
209
210 **Adjust colours in the course menu**
211
212 {{code language="none"}}
213 .jstree-anchor.progress-0 {border-left-color: #fa9370;}
214
215
216 .jstree-anchor.progress-50 {border-left-color: #FBDFBD;}
217
218
219 .jstree-anchor.progress-100 {border-left-color: #5caa7f;}
220 {{/code}}
221
222 **Adjust colours in the course element's header section**
223
224 {{code language="none"}}
225 .resource-header.progress-0 {border-left-color: #fa9370;}
226
227
228 .resource-header.progress-50 {border-left-color: #FBDFBD;}
229
230
231 .resource-header.progress-100 {border-left-color: #5caa7f;}
232 {{/code}}
233
234
235
236
237
238 === Rename the "Start test" button for self-tests ===
239
240 If you wish to rename the button for starting self-tests (iqself class), e. g. from **Start test **to **Start mission**, you can use the following code:
241
242
243 {{code language="none"}}
244 .iqself .run-container .btn-big .fonticon+span {display: none;}
245
246 .iqself .run-container .btn-big:after {content: "Mission starten";}
247 {{/code}}
248
249 Use the **iqtest** class for a course element test:
250
251
252 {{code language="none"}}
253 .iqtest .run-container .btn-big .fonticon+span {display: none;}
254
255 .iqtest .run-container .btn-big:after {content: "Mission starten";}
256 {{/code}}
257
258
259
260 === ===
261
262 === Hide "Attempts" box next to the "Start test" button for self-tests ===
263
264 You can hide the box with information about the attempts at a solution, e. g. for self-tests (iqself class), with the following code:
265
266
267 {{code language="none"}}
268 .iqself .run-container .box-light {display: none;}
269 {{/code}}
270
271
272 [[image:Kursrun - Test-Infobox per CSS ausblenden_de.png||alt="Beispiel zur CSS-Verwendung" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
273
274
275
276
277 === Hide assessment information for self-tests ===
278
279 Use the following code to hide all assessment information during self-tests (iqself class):
280
281
282 {{code language="none"}}
283 .iqself .assess-container {display: none;}
284 {{/code}}
285
286
287 [[image:Kursrun - Bewertungsbox per CSS ausblenden_de.png||alt="Beispiel zur CSS-Verwendung" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
288
289
290
291
292 === Hide information on the course home page ===
293
294 To hide certain information such as the institution and semester or metadata, you can use the following code:
295
296 **Hide institution and semester**
297
298 {{code language="none"}}
299 .root .resource-details .content-preview-main>small {display: none;}
300 {{/code}}
301
302 **Hide metadata**
303
304 {{code language="none"}}
305 .root .resource-details .content-preview-info {display: none;}
306 {{/code}}
307
308 [[image:Kursrun - Infobox-CSS_de.png||alt="Beispiel zur CSS-Verwendung" data-xwiki-image-style="img-screen" data-xwiki-image-style-border="true" width="500"]]
309
310
311 Other ways to customise information displayed on the home page:
312
313 **Hide description in the detailed view**
314
315
316 {{code language="none"}}
317 .root .resource-details .repo-desc {display: none;}
318 {{/code}}
319
320 **Hide course owners**
321
322 {{code language="none"}}
323 .root .resource-details .content-preview-author {display: none;}
324 {{/code}}
325
326 **Hide entire section on the home page**
327
328 {{code language="none"}}
329 .root .resource-details {display: none;}
330
331 {{/code}}