Table of Contents
To get started with customizing your Blackboard theme, you’ll first need to download the original theme and create a custom.css file.
Download the Original Theme
- Navigate to System Admin.
- Click Brands and Themes under the Communities module.
- Click
Theme and Palette Catalog. - Hover your mouse over “Bb Learn 2016” and click the contextual menu icon.
- Click Download.

Create custom.css
Once you’ve downloaded and unzipped the file, you’ll notice it contains Core and Plugins folders. We’ll be working in the Core folder as this is where the main theme files are located.
You’ll want to create a custom.css file in the core folder as this is where all the theme customizations will be housed.

Link the custom.css file
After creating your custom.css file, you’ll want to open the theme.css file. Locate the line that says
@import url("theme_specific.css");
Right below this line, add the following line of code:
@import url("custom.css");
This will link your custom.css file with your theme. You’re now ready to begin adding your customizations.
Add comment