Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #85133
    dsommer
    Member

    I am currently using Catch Box version 4.1 and would like to add an background image in the header title box, which is currently just a white background and change the title font color from black to another color.

    How would I go about doing this?

    #85180
    Mahesh
    Keymaster

    Hi @dsommer,

    For the above changes, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    /* Add background to Header */
    #branding {
        background-image: url('Put Your Image Link Here');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* Change site title's color */
    #site-title a {
        color: #0000ff;
    }
    /* Change site description's color */
    #site-description {
        color: #0000ff;
    }

    Note: Replace Put Your Image Link Here with your desired image link. Replace the color hex with your desired color.

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘add background image to header title’ is closed to new replies.