Directory Image
This website uses cookies to improve user experience. By using our website you consent to all cookies in accordance with our Privacy Policy.

How to Add JS and CSS to Drupal 8?

Author: Deepa Ranganathan
by Deepa Ranganathan
Posted: Jul 30, 2015

In a recent update made by Drupal 8, they have changed the way the asset libraries for both JS and CSS are attached to the theme. You will need to think of adopting these strategies for a variety of scenarios. Here are some of the widely thought of strategies that you can use to add JS and CSS libraries to your Drupal 8 application or website.

Global Styles and Scripts

If you want to add the CSS or JS assets through global libraries then here's how you can possibly achieve that.

The name of the global library is global-styling which will help in creating global styles, and it has been declared within the theme_name.libraries.yml. It is also added within the theme_name.info.yml. You can avail this library through the website, as it has been declared as the global library. The theme_name.libraries.yml file will appear as follows

global-styling:

version: VERSION

css:

theme:

css/style.css: {}

Declare the file that you have just created to theme_name.info.yml file

name: Example

type: theme

core: 8.x

libraries:

  • theme_name/global-styling
Next, you need to declare the scripts to the same path

global-scripts:

version: VERSION

js:

js/script.js: {}

Now, add the following libraries

name: Example

type: theme

core: 8.x

libraries:

  • theme_name/global-styling
  • theme_name/global-scripts
Combine both CSS and JS assets into one

global-styles-and-scripts:

version: VERSION

css:

theme:

css/style.css: {}

js:

js/script.js: {}

Deleting or Overriding the Styles in Core

Go to theme_name.info.yml and

stylesheets-remove:

  • normalize.css
You can even override the core's stylesheets

Declaring Dependencies

Generally, you won't find any default additional scripts. You can look in the following path to get an idea of the core assets: /core/assets/vendor. Here's how you can declare a dependency in Drupal 8 for your CSS or JS assets

global-scripts:

version: VERSION

js:

js/script.js: {}

dependencies:

  • core/jquery
  • core/jquery.once
  • core/modernizr
Scope of JS File

If you want to change the position of an asset from the header to the footer, you can easily specify the scope and venture to do so. You can specify the scope in theme_name.libraries.yml

js/

Specify Media Type

Specify a particular print stylesheet with a media parameter for the theme_name.libraries.yml

css/

Conditional CSS or JS for Old IE Browsers

Specify the IE conditionals by specifying the parameters in theme_name.libraries.yml file

http://yui.yahooapis.com/3.18.1/build/yui/ }

Deepa is a passionate blogger associated with Semaphore Software. She loves sharing information regarding drupal web development tips & tricks. If you are looking for hire drupal developers then just get in touch with her.

About the Author

Deepa is a technical writer with Semaphore Software.

Rate this Article
Leave a Comment
Author Thumbnail
I Agree:
Comment 
Pictures
Author: Deepa Ranganathan

Deepa Ranganathan

Member since: Mar 29, 2015
Published articles: 42

Related Articles