Change Background 2
The following section covers each step in changing the middle panel of your content page area, which is called background 2, before following the guide make sure to have Access to CSS and an understanding in Identifying CSS Elements.
For video guidance see the following Itch.io - Change Background Image 2.
Guidelines
- Find and Locate the Desired Page Resource:
- Visit your content page change the
usernameandproject nameand use the following link (user_name.itch.io/assetOrGame) asset pages using Browsers such as: Microsoft Edge, Internet Explorer, or Chrome.
- Visit your content page change the
- Open inspect element and locate Background 2 class:
- Right click on Chrome or Edge and use
InspectorInspect elementa new panel opens. - In the panel locate
select and view elementoption or useCtrl + Shift + Cshortcut to use it. - Click on the desiered area such as in this example “ Background 2 “ which is under the element class
inner_column size_large family_latoand under IDinner_column - Now locate the main class of the previous, which is called
game_page_primary_column
- Right click on Chrome or Edge and use
- Open “Edit Theme”
- For the following use this method How to Add edit css
- Click
Edit Themeon top left of the project page panel. - A new panel opens up, now in that panel locate
Custom CSS.
- Edit Css and reference the main class:
- Read about Css modification conditions and use the same formating.
- Inside the
<style> and </style>use the following.game_page_primary_column{}.inner_column { } - Add inside the brackets
{ }the followingbackground-image: url(" ");and in the(" ")add your href or location of the image you wish to use in your page.
#wrapper
<style id = "NewStyle">
.game_page_primary_column{}.inner_column
{
background-image: url(" ");
}
</style>