custom.css

  1. 6.x themes/how_to_customize/custom_fp6_clean/custom.css
  2. 5.x themes/basic/custom.css
  3. 5.x themes/fp5_clean/custom.css
  4. 5.x themes/classic/custom.css

This is where your custom CSS goes, to keep it separate from the "default" CSS definitions in style.css and mobile.css.

You may edit this file freely to override any CSS styles you wish to change in fp6_clean.

Depending on the situation, you may need to use the !important directive.

File

themes/how_to_customize/custom_fp6_clean/custom.css
View source
  1. /**
  2. * @file
  3. * This is where your custom CSS goes, to keep it separate from the "default" CSS definitions
  4. * in style.css and mobile.css.
  5. *
  6. * You may edit this file freely to override any CSS styles you wish to change in fp6_clean.
  7. *
  8. * Depending on the situation, you may need to use the !important directive.
  9. *
  10. */
  11. /**
  12. * This is an example of how to change the login wallpaper. It assumes you've placed a jpg file
  13. * called "my_custom_login_wallpaper.jpg" under custom/themes/custom_fp6_theme/images
  14. */
  15. /*
  16. .page--login #page-login-page__wallpaper {
  17. background: url("images/my_custom_login_wallpaper.jpg") top left no-repeat;
  18. background-size: cover;
  19. }
  20. */