elgg.css

Sorry, very very new to the program. Already built a web page on my localhost, want to do some more things.  Where do I find elgg.css  file be able to edit.

thanks.

  • You shouldn't edit any of the core files directly.

    What you can do is create your own theme.

    1. create the directory: mod/mytheme

    2. create the manifest.xml - copy it from one of the core plugins and change the name/info

    3. create start.php

    elgg_extend_view('css/elgg.css', 'css/mytheme.css', 1000);

    4. create your css file

    mod/mytheme/views/default/css/mytheme.css

     

    Now all of your changes can safely be done inside your own theme.