Page 1 of 1

Hiding prolog in No-tag mode

Posted: Fri Sep 09, 2016 2:46 pm
by Raga Mounika
Hi Team,

Is it possible to hide prolog section in no-tag mode in oXygen?
If so please provide me the CSS code for that.

Thanks!

Regards,
Mounika

Re: Hiding prolog in No-tag mode

Posted: Mon Sep 12, 2016 9:18 am
by alex_jitianu
Hello,

Unfortunately you can't style the author mode depending on the tags display mode. Hiding the prolog is easy:

Code: Select all

*[class~=" topic/prolog "] {
display:none;
}
You can put this rule inside a new alternate CSS named "Hide prolog". The user will select this CSS from the Styles item on the toolbar and it will hide the prolog.

Best regards,
Alex

Re: Hiding prolog in No-tag mode

Posted: Tue Sep 13, 2016 8:53 am
by Raga Mounika
Thanks for the information :)