form#login input#username, form#login input#password, form#login div.rememberpass, form#login button#loginbtn{ display:none }
I want to remove it as the username and password have been hidden. Can anyone help me?
From the login page use your browser's developer tools (for example, Page Inspector in Firefox). Search for these items and edit their style rules to remove or change the display:none
rule. Then when they're visible, log in and change the raw SCSS setting
| id | plugin | name | value |
+-----+-------------+------+-------+
| 200 | theme_boost | scss | |
Which version of Moodle is this?
With Moodle 4.1 if I use your Raw SCSS so my login fields are hidden I can search for the username element in my browser by typing "input#username" into the search field:
I can then uncheck the CSS rule display: none
to show the login fields and enter my credentials to log in. Then I go to the theme configuration page and remove the text in Raw SCSS.
I think you can add the following line in your config.php file to force Moodle to start in Classic.
$CFG->theme = 'classic';
Then, once in, you can go over to your Boost theme setting and delete the incorrect CSS.