Question: I'm using Outdoor Life for a website with the Video header on the home page. The Video text looks good, but I'd like to move the position of it to the bottom right corner. Is there a div style or something already configured that can do that? Or does this require something in the custom.css? Thanks.

    Hi dustyken

    You can try this custom css:

    .video_text .readon {
        position: absolute;
        right: 0;
        top: 650px;
    }

    Thanks, saguaros!

    That works great for the readon button, but doesn't work for the logo/video_image that's laid on top of the video. What should be done to move the logo/image to the bottom right with the readon button?

    Thanks again!

      dustyken

      You can try change the top value of above code to 440px and also add this new code:

      img.video_text_img {
          position: absolute;
          right: 0;
          width: 655px;
          top: -40px;
      }

      Thanks! I think that does it. I just need to do some resizing to the image to make it look better, but I think that does it.

      Thanks again!

        Write a Reply...
        You need to Login to view replies.