Hi
I am applying a background image to the header and footer using css. I notice that the image does not cover the entire header or footer. There is a fine white line of about 3px at the top of the header and at the bottom of the footer.
This is my css.
to disable the heading......
.ui-header .ui-title {
display: none;
to display the image....
.header {
background-image: url("../img/header.jpg");
background-repeat: no-repeat;
background-size: cover;
}
Thank you