Jump to content

I am pissed


buti

Recommended Posts

:( oki its friday the 13 :) just strange cause it worked for me. but didnt it creat a block with a scroll bar in it and the top menu are allwas on top.?i did it like that to get passed the img failors
have a nice weekend 
same to you :)
Link to comment
Share on other sites

the problem was with your inline cssyou had

<body style="background-images: url('myimagedir.gif'); background: no-repeat;">

the css element 'background' is a shortcut to control all background properties, like color, repeat, image, etc, see http://www.w3schools.com/css/css_background.aspso when you say "background: no-repat," it assumes there is no backtround-image. also, the element you want is background-image (not plural). try this instead

<body style="background: url(stars.gif) no-repeat;">or<body style="background-image:url(image.gif); background-repeat:no-repeat;">

-mpoer

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...