Positioning Locked, Again

On the following page, I’ve tried to move the red box as I have a class called video and I tried, relative positioning, margins and padding. I’m unable to position the box to the right of the screen, this is a similar problem to another message I had posted recently.

Unless I have to add a style sheet to the <id=inner> and position that with relative positioning ?

Thank You Ralph :slight_smile:

Try this:

.video {
  background-color: #CC3300;
  margin: 0px 0px 0px 0px;
  position: relative;
  width: 400px;
  height: 250px;
  [COLOR="Red"]float:right;[/COLOR]
}

[COLOR="Red"]#inner {
  overflow:hidden;
}[/COLOR]

have you tried float:right; in your video class?