hi guys.. take a look here, www.elegends.info you can clearly see that in the scrollable view, the background image is repeating.. i dont want that to repeat.. what should i do?
Where did you put it? Remove wherever you are declaring the background image now. You should do this all in CSS. E.g, If you are using <body background="image url"> remove it (just make it <body> Between you <head> and</head> tags add the following. <style type="text/css"> body { background: #000 url(image url) no-repeat; } </style> Code (markup): In the end you code should look something like this: <html> <head> <style type="text/css"> body { background: #000 url(image url) no-repeat; } </style> </head> <body> Your Content </body> </html> Code (markup): BP
still use the css: <style type="text/css"> body { background: #000 url(image url) no-repeat; background-attachment:fixed; background-position:center; } </style> i hope it help