• Hi,

    When I set a custom image to the header using,

    header.tc-header{
    background: url (xxxxxx);
    }

    the image shows up. But the image doesn’t automatically fit the header space. Instead, a proportion of the image is shown. I want it to show the entire image at its full width in the header screen. How can I achieve that?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need more specific with the css rules:

    background-color: white;
    background-image: url(logo.gif);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;

    and so on, if you use any debugging tool, such firebug, it will give you more options and you can use the ones that fit your needs.

    A link to your site might help for further help in debugging ??

    Thread Starter shey456

    (@shey456)

    Hi,

    Thank you for posting it. I’m going to try them. Hopefully I will be able to fix it. Thanks again. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom header image size / position problem’ is closed to new replies.