Working with CSS and width -


my friends spa website i'm making them going have quick question css. if resize page see colour of links change grey blue, red, green. testing method know media query need work with. i'd know why logo isn't repeating along top of page?

i'm trying have image repeat , span full width of top of the screen size instead it's width set 100px?

here code title-area media query 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 , can't seem find problem. appreciated!

looks #title-area has fixed width of 700px. change 100% (approx line 210 in style.css).

the background on set no-repeat. example in post more correct - change repeat (approx line 214 in style.css).

#title-area has left:-350px set logo appears in left though it's on right of logo.jpg. make width 175% cover up, otherwise better idea put logo on left of image, set left 0px , leave width @ 100%.


Comments