My friends spa website I'm making for them is going good however I just have a quick question about CSS. If you resize the page you see the colour of the links change from the grey they are to blue, then red, then green. This is my testing method to know which Media Query I need to work with. I'd like to know why the logo isn't repeating along the top of the page?
I'm trying to have the image repeat and span the full width of the top of the the screen size but instead it's like the width is set to 100px?
Here is my code for the title-area for the media query with the red links:
#title-area {
position: relative;
width: 100%;
height: 204px;
top: 0px;
background: url(images/melt-logo.jpg) top center repeat;
text-indent: -99999px;
}
I've looked through firebug and can't seem to find the problem. Any help is appreciated!