- This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- The forum ‘CSS’ is closed to new topics and replies.
The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Hello.
Just playing around an prating with my footer skills I can’t seem to get my back ground image to start just above the footer h3
had it working once but think missed step.
You will see a dark line go through part of the top li a
that line is the image but should be above the h3
I think you should change the background image itself for that: http://s3.postimg.org/isuiqappf/bg_footer.jpg
There is some white padding above the dark line there :P
perhaps you had top padding on the footer to push the content below that line (something like 50px)
No Padding seems very strange will image image bigger see if that works
Hi,
It’s because of your image has large space from top down to the grey line. If you do not want to change the image you have to set the background position for #fframe.
#fframe{
background: url(“http://s21.postimg.org/4gfyg4exj/bg_footer.jpg”) repeat-x 0 -45px;
position: relative;
padding: 0px;
}
Thanks all