Edit Background Of Your Training Center
Objective
To customize the background of your Training Center.
Background
The background of your Training Center can be customized by adding an image or by changing the color. For further assistance, please reach out to your Training Center Specialist or training-management@procore.com.
Things to Consider
When changing the background, it's generally reccommended to choose colors that provide maximum contrast, such as dark-colored text with a light background, or light-colored text with a dark background.
Steps
Change background color
- Navigate to the Training Center page you want to change the background color for.
- Click Edit and select Edit Live.
- Place your cursor anywhere in the page.
- Click the Style drop down and select CSS.
- Copy and paste the background code below into the CSS block.
body {
background-color: black !important;
background-repeat: no-repeat !important;
background-position: right !important;
}
- Customize the background-color line to be any color or enter a hex code for a specific color.
- To change the Page Title background color, repeat steps 3 and 4 to insert a CSS block on your page.
- Copy and paste the Title background color code below into the CSS block.
body #title {
color: white; !important
}
- Customize the color line to be any color or enter a hex code for a specific color.
- Click Save.
Add background image
- Navigate to the Training Center page you want to add a background image to.
- Click Edit and select Edit Live.
- Place your cursor anywhere in the page.
- Click the View drop down and choose Source.
- Scroll to the bottom and place your cursor.
- Copy and paste the background code below into the bottom of the page.
body {
background-image: url(HERE) !important;
background-repeat: no-repeat !important;
background-size: cover !important;
}
- Scroll to the Attachments section at the bottom of the page and select Attach a File.
- Browse for the file you want to upload or drag and drop files into the window from your computer.
- After the file is uploaded, right click on the file and select Copy Link Address.
- Paste the link address in the background code within the background-image: URL parentheses.
- Click Save.