Remove question box

Remove question box

by Robert Hegestedt -
Number of replies: 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.



Attachment cssrule.jpg
Average of ratings: -
In reply to Robert Hegestedt

Re: Remove question box

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of 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; }
In reply to Mary Evans

Re: Remove question box

by Robert Hegestedt -

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

In reply to Robert Hegestedt

Re: Remove question box

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

You could try...

.que .info { display: none;}

and see what happens?

In reply to Mary Evans

Re: Remove question box

by 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...

In reply to Robert Hegestedt

Re: Remove question box

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of 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...