Home › Forums › Trusted Pro › Trusted Pro – How to put image background in the Header Bar with Menu-Title › Reply To: Trusted Pro – How to put image background in the Header Bar with Menu-Title
June 15, 2018 at 10:44 pm
#4974
Andy
Keymaster
Hello Pascal
This can be acomplished with a small piece of ‘Additional CSS’ in the customizer
(image-url is the URL of an image in your media library)
if using a single image to cover the area:
#masthead {
background-image: url('image-url');
background-repeat: no-repeat;
background-size: cover;
}
or if using a repeating pattern image:
#masthead {
background-image: url('image-url');
background-repeat: repeat;
}