runnerjp Posted February 19, 2007 Share Posted February 19, 2007 <style type="text/css"> <!-- html { background-image: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg; background-repeat: repeat-y; background-position:0px 155px} body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; } body { background-image: transparent url(http://www.runnerselite.com/images/line.jpg; background-repeat: repeat-y; background-position:15px 0px } --> </style> does nothing any idea why Quote Link to comment https://forums.phpfreaks.com/topic/39176-solved-any-1-able-to-help-me-out-with-this-it-does-not-work/ Share on other sites More sharing options...
dbrimlow Posted February 19, 2007 Share Posted February 19, 2007 You are leaving your url open. background-image: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg; should be background-image: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg); Quote Link to comment https://forums.phpfreaks.com/topic/39176-solved-any-1-able-to-help-me-out-with-this-it-does-not-work/#findComment-189017 Share on other sites More sharing options...
ToonMariner Posted February 19, 2007 Share Posted February 19, 2007 bacground image cannot have the color AND the image path ONLY the image path is valid. Runnerjp, I have given you the solution to you rproblem in another thread, use it adn stop placing repeat posts on the same issue. You can only get smae solution once if you chose to ignore it thats your problem - not our bandwidths... Quote Link to comment https://forums.phpfreaks.com/topic/39176-solved-any-1-able-to-help-me-out-with-this-it-does-not-work/#findComment-189049 Share on other sites More sharing options...
dbrimlow Posted February 20, 2007 Share Posted February 20, 2007 bacground image cannot have the color AND the image path ONLY the image path is valid. WHOOPS! Correct. This: html { background-image: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg; background-repeat: repeat-y; background-position:0px 155px} body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; } body { background-image: transparent url(http://www.runnerselite.com/images/line.jpg; background-repeat: repeat-y; background-position:15px 0px } should be changed to shorthand (drop the "image", "repeat" and "position") using just "background": html { background: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg) repeat-y 15px 0px; } body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; } body { background: transparent url(http://www.runnerselite.com/images/line.jpg) repeat-y 15px 0px; } Quote Link to comment https://forums.phpfreaks.com/topic/39176-solved-any-1-able-to-help-me-out-with-this-it-does-not-work/#findComment-189719 Share on other sites More sharing options...
weknowtheworld Posted February 20, 2007 Share Posted February 20, 2007 <style type="text/css"> <!-- html { background-image: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg; background-repeat: repeat-y; background-position:0px 155px} body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; } body { background-image: transparent url(http://www.runnerselite.com/images/line.jpg; background-repeat: repeat-y; background-position:15px 0px } --> </style> does nothing any idea why The code should be : <style type="text/css"> html { background-image: #FFFFFF url(http://www.runnerselite.com/images/linedown.jpg); background-repeat: repeat-y; background-position:0px 155px} body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; } body { background-image: transparent url(http://www.runnerselite.com/images/line.jpg); background-repeat: repeat-y; background-position:15px 0px } </style> Try it... Quote Link to comment https://forums.phpfreaks.com/topic/39176-solved-any-1-able-to-help-me-out-with-this-it-does-not-work/#findComment-189725 Share on other sites More sharing options...
runnerjp Posted February 20, 2007 Author Share Posted February 20, 2007 ty :) Quote Link to comment https://forums.phpfreaks.com/topic/39176-solved-any-1-able-to-help-me-out-with-this-it-does-not-work/#findComment-189799 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.