Hallo and a question

Jul 15, 2009 11:10

Hi there!

I am trying to teach myself how to html/css code to build myself a website. Most of the stuff I manage through trial and error and much searching in manuals, but I have a problem that I cannot seem to get past.

As you can see in these screenshots (FireFox, Internet Explorer), the banner doesn't do what I want. I want it to sit there in ( Read more... )

Leave a comment

Comments 2

babyelefant July 15 2009, 10:58:00 UTC
1) it's background-repeat:no-repeat

and 2)

does this work:

div#banner-right
{
position:relative;
float:right;
width:750px;
height:300px;
margin:0 10px 0 auto;
padding: 5px 5px 5px 5px;
background-image: url(TRAINING-pic.gif);
background-repeat: no-repeat;
border-width:2px;
border-color:#FF0000;
}

Reply

delilahdraken July 15 2009, 11:58:57 UTC
Thank you so much. That did it.

Reply


Leave a comment

Up