• HI Guys,

    I’ve just recently started dipping my toes with WordPress, and have a lot of knowledge with HTML and am slowly coming to grips with PHP. I’ve been busy trying to cutomise the free Fusion template provided on the WordPress site. The template had no background footer graphic so I created one and inserted it as a pagewrap div at the end of footer.

    Thing is this. It displays perfect on the home page, but on the inside pages it floats much further up the page. Any help would be grealy appreciated as I’m at my wits end with investigating it. You can see the wordpress site here:

    https://www.creamgraphics.ie/wordpress/

    Many thanks,

    Jasper

Viewing 6 replies - 1 through 6 (of 6 total)
  • At first glance, the header-bg.jpg which I see across middle of my screen in FF is background in #page-wrap1 and #page-wrap3. What was the name of the graphic you wanted for the footer div?

    Thread Starter jaspercarrot

    (@jaspercarrot)

    HI I was just using the same graphic for the footer as I was for the header. The thing is if I just put the header graphic within the footer div it doesn’t stretch to the entire width of the screen. Many thanks for the reply.

    did you get this resolved?

    @jaspercarrot:

    — HTML: add a closing div to your <div id="page-wrap3"> therefore,
    <div id="page-wrap3"> </div>

    — CSS: in style.css, my suggestion would be

    #page-wrap3 {
    clear: both;
    width: 100%;
    margin: 0 auto;
    height: 300px;         /* change if you want it shorter */
    background: transparent url(images/header-bg.jpg) top left repeat-x;
    text-align: center;     /* if you want to add text */
    }

    Thread Starter jaspercarrot

    (@jaspercarrot)

    HI Guys thanks for replying. Mercime, will give that a try and see if it helps. Wil let you know. Thanks,

    Jasper

    Thread Starter jaspercarrot

    (@jaspercarrot)

    Mercime,

    That worked like a charm. Many thanks for your help with this. Greatly appreciated.

    Cheers,

    Jasper.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Help with misbehaving Footer file!’ is closed to new replies.