IP.Board Tutorials

[IPB 4Add a background image to the header

Submitted by Admin, , Thread ID: 6906

Thread Closed
Admin
Novice
Level:
0
Reputation:
3
Posts:
41
Likes:
3
Credits:
5
11-07-2015, 06:46 AM
#1
This tutorial will teach you how to add a background image to the header in the default IPS 4.x.x theme, as shown below.

BEFORE:

[Image: 3ziOPt6.jpg]

AFTER:

[Image: BPWEhuq.jpg]

1. To begin, log into your ACP and browse to Customization > Themes. Click the arrow to the right of your theme and select Manage Resources. Click the + Add Resource button at the top right.


2. Change the location from admin to global and use the Choose single file... button to upload your background image. This tutorial uses header.jpg as the file name, however you are welcome to use whatever name you like. Press Save.

[Image: OqNIcox.jpg]

3. You will be taken back to the resources page. Use the Search: Name field at the top right to search for your file name (header.jpg). Under the Template tag column, you'll see your resource code which allows you to reference that image in your css and HTML. We'll need this code in the next step:

Code:
{resource="header.jpg" app="core" location="global"}

4. Go to Customization > Themes > Edit HTML and CSS. Click the CSS tab and choose custom.css. Paste the following code:


Code:
@media screen and (min-width:980px){

  #ipsLayout_header header{
   background-image: url('{resource="header.jpg" app="core" location="global"}');
   background-size: cover;
   background-position: 50% 0%;
   background-repeat: no-repeat;
  }

  #elSearchNavContainer{ background: rgba(0,0,0,0.5); }

}

The first line, starting with @media restricts the css to desktops and laptops. The background image will not be shown for tablets or mobiles (which is ideal for loading times). If you wish to show the image on all devices, remove the top line, and the } in the very last line.

background-image simply defines our image URL, using the template tag from step 3.
background-size defines if the image should be stretched to occupy the entire space of the header. Remove this line if you don't want the image to use it's natural image size
background-position defines the position of the image (centered horiztontally, positioned at the top vertically).
background-repeat defines how the image should be repeated (no-repeat, repeat, repeat-x, repeat-y)

For an added effect, the background of the navigation bar has been changed to a semi-transparent black, which allows your background image to show beneath it. You are welcome to remove that code if you wish since it may not look correct for all images.

Done!

Users browsing this thread: 1 Guest(s)