Home Forums Trusted Pro Trusted Pro – How to put image background in the Header Bar with Menu-Title

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4973
    professorpascal
    Participant

    Hello,

    In Trusted Pro – How and where would i tell wordpress/theme to put an image background in the Header Bar at the very top, the one with the Menu-Title-Logo.. ?

     

    THanks,

    Pascal

    #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;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Trusted Pro – How to put image background in the Header Bar with Menu-Title’ is closed to new replies.