Remove question box

Remove question box

od Robert Hegestedt -
Število odgovorov: 6

Hello, 

I want to remove the question box in a quiz, the one where you can flag a question.

I could set display:none in a css rule but I can't find the rule, when I inspect the element I get this:

http://mattesnille.se/app/theme/styles.php/joomdlebs/1504380150/all, see attached image.

How do I find the css for this box? I'm using JoomdleBs as a theme.



Priponka cssrule.jpg
Povprečje ocenitev: -
V odgovor na Robert Hegestedt

Re: Remove question box

od Mary Evans -
Slika Core developers Slika Documentation writers Slika Peer reviewers Slika Plugin developers Slika Testers

Find the CSS class in the text below just above the "info" box (blue line).

so that the CSS looks like this:

.que.geogebra.immediatefeedback.notyetanswered .info { visibility: hidden; }
V odgovor na Mary Evans

Re: Remove question box

od Robert Hegestedt -

I've already tried it, but it doesn't even appear as a rule, probably I'm just tired nasmeh

V odgovor na Robert Hegestedt

Re: Remove question box

od Mary Evans -
Slika Core developers Slika Documentation writers Slika Peer reviewers Slika Plugin developers Slika Testers

You could try...

.que .info { display: none;}

and see what happens?

V odgovor na Mary Evans

Re: Remove question box

od Robert Hegestedt -

It solves the problem when I  change  the rule while inspecting. When I put it in a css-file it doesn't affect the box...

V odgovor na Robert Hegestedt

Re: Remove question box

od Mary Evans -
Slika Core developers Slika Documentation writers Slika Peer reviewers Slika Plugin developers Slika Testers

If you add it to a stylesheet you need to click on the link to

Clear Themes Cache

Which can be found at the top of the page where you select the themes in your site

Site Administration > Themes > Theme Selector

this then resets all the CSS 

Which is possibly why you don't see the changes...