This is my website: http://bigredsportfishing.com/
As you can see, I have a repeated image and I need that to stretch AND have my logo on the top. Any suggestions?
Here is what I am using. A simple html code. `
Big Red Sport Fishing
</body>
</html>
This is my website: http://bigredsportfishing.com/
As you can see, I have a repeated image and I need that to stretch AND have my logo on the top. Any suggestions?
Here is what I am using. A simple html code. `
Big Red Sport Fishing
</body>
</html>
You may put css style in body tag
.background{
background-image: url(backgroundmain.jpg);
background-repeat: no-repeat;
background-size: cover;
}
and use
<body class="background"></body>
If you add the style of background-size: cover; to your background image, it will always be exactly big enough to fit the browser window. Looks like your logo will already be on top from my understanding of your question. So that style should do it.