Navigation blurs out/in background images

Hi... At the risk of embarrassing myself, I'm adding my first post to this forum. Sorry, I'm a bit of a novice and what started out to be a simple background transition is proving to be a little harder than I first thought it would be. My problem is this:
I have a simple single main timeline for the website with 6 navigation buttons. Each button sending the playhead to a label keyframe (the site has 6 'pages'). I converted 6 photos to movie clips and added one to each of the 6 labels as a full page background. To each movieclip photo, I have added a fade in blur using one of the FLASHeff effects so when a nav button is clicked, the background fades/blurs in, I have given each background 20 frames to allow the blur to fully complete.
Now all that works as expected... but now the fun begins... what I would like to do is that when a navigation button is clicked, whichever of the 6 backgrounds is currently showing will fade/blur out first before the new background photo fades in. I could do this with 36 (the total combination of transitions with 6 photos and 6 buttons). A bit of an ugly solution!
Here is the code I have for the buttons:
teamBt.addEventListener(MouseEvent.MOUSE_DOWN, mouseTeamHandler);
function mouseTeamHandler(event:MouseEvent):void {
gotoAndPlay("team");
My question is: Is there a more elegant and dare I say, sexy actionscript 3 way to do all this and hopfully still be able to use flasheff for the blur effect?
I had better get up to speed using actionscript 3 to save myself further forum embarrassment.
Thanks in advance
Paul

Hi Craig
You are right, I had just pasted the code into the form. I've now selected the Insert/Syntax Highlighting/Plain button in the toolbar to paste in my code. As you can see, I've been beavering away with actionscript 3 with a little help from Greensock's TweenLight and TweenMax. Thanks so much for your advice on creating a tidier code. I was looking for just that as the lenght of my script is growing by the hour.
I'll put a link to the website but it's still very much a work in progress (have to DNS point the domain name to the hosting server soon). The timeline is still only one frame long. Wondering if that's the right way to go... all code on the first frame (some other code on other layers). I've checked the Bandwidth Profiler and that just sits solid at 1024 KB. If wondering about the video, I have used SlideShow Pro and thier Director so that my client can add videos through his browser. The current videos are just very short tests.
http://77.72.0.130/~everscom/test_5.html
Thanks again Craig. I'll take a closer look at your code suggestions.
Paul
import flash.media.SoundMixer;
import gs.*;
import gs.easing.*;
home_photo.alpha = 0;
what_photo.alpha = 0;
research_photo.alpha = 0;
team_photo.alpha = 0;
portfolio_photo.alpha = 0;
clients_photo.alpha = 0;
contact_photo.alpha = 0;
TweenLite.to(home_photo, 2, {autoAlpha:1});
TweenMax.from(home_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn}); 
my_ssp.alpha = 0;
scroller_bk.alpha = 0;
intro_text.alpha = 0;
intro_bk.alpha = 0;
TweenLite.to(intro_text, 3, {autoAlpha:.7, delay:2});
TweenLite.to(intro_bk, 3, {autoAlpha:.7, delay:2});
scroller_what_we.alpha = 0;
bar_what_we.alpha = 0;
scroller_research.alpha = 0;
bar_research.alpha = 0;
scroller_team.alpha = 0;
bar_team.alpha = 0;
contact_text.alpha = 0;
contact_form.alpha = 0;
yousendit_btn.alpha = 0;
whatBt.addEventListener(MouseEvent.MOUSE_DOWN, mouseWhatHandler);
function mouseWhatHandler(event:MouseEvent):void {
  SoundMixer.stopAll();
  TweenLite.to(home_photo, 2, {autoAlpha:0});
  TweenLite.to(what_photo, 2, {autoAlpha:1});
  TweenLite.to(research_photo, 2, {autoAlpha:0});
  TweenLite.to(team_photo, 2, {autoAlpha:0});
  TweenLite.to(portfolio_photo, 2, {autoAlpha:0});
  TweenLite.to(clients_photo, 2, {autoAlpha:0});
  TweenLite.to(contact_photo, 2, {autoAlpha:0});
  TweenLite.to(scroller_bk, 1, {autoAlpha:0});
  TweenMax.from(what_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn}); 
  TweenLite.to(scroller_bk, 3, {autoAlpha:.7, delay:2});
  TweenLite.to(scroller_what_we, 3, {autoAlpha:1, delay:2});
  TweenLite.to(bar_what_we, 3, {autoAlpha:1, delay:2});
  TweenLite.to(intro_text, 1, {autoAlpha:0});
  TweenLite.to(intro_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_research, 1, {autoAlpha:0});
  TweenLite.to(bar_research, 1, {autoAlpha:0});
  TweenLite.to(scroller_team, 1, {autoAlpha:0});
  TweenLite.to(bar_team, 1, {autoAlpha:0});
  TweenLite.to(my_ssp, 1, {autoAlpha:0});
  TweenLite.to(contact_text, 1, {autoAlpha:0});
  TweenLite.to(contact_form, 1, {autoAlpha:0});
  TweenLite.to(yousendit_btn, 1, {autoAlpha:0});
researchBt.addEventListener(MouseEvent.MOUSE_DOWN, mouseResearchHandler);
function mouseResearchHandler(event:MouseEvent):void {
  SoundMixer.stopAll();
  TweenLite.to(home_photo, 2, {autoAlpha:0});
  TweenLite.to(what_photo, 2, {autoAlpha:0});
  TweenLite.to(research_photo, 2, {autoAlpha:1});
  TweenLite.to(team_photo, 2, {autoAlpha:0});
  TweenLite.to(portfolio_photo, 2, {autoAlpha:0});
  TweenLite.to(clients_photo, 2, {autoAlpha:0});
  TweenLite.to(contact_photo, 2, {autoAlpha:0});
  TweenLite.to(scroller_bk, 1, {autoAlpha:0});
  TweenMax.from(research_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn});
  TweenLite.to(intro_text, 1, {autoAlpha:0});
  TweenLite.to(intro_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_what_we, 1, {autoAlpha:0});
  TweenLite.to(bar_what_we, 1, {autoAlpha:0});
  TweenLite.to(scroller_bk, 3, {autoAlpha:.7, delay:2});
  TweenLite.to(scroller_research, 3, {autoAlpha:1, delay:2});
  TweenLite.to(bar_research, 3, {autoAlpha:1, delay:2});
  TweenLite.to(scroller_team, 1, {autoAlpha:0});
  TweenLite.to(bar_team, 1, {autoAlpha:0});
  TweenLite.to(my_ssp, 1, {autoAlpha:0});
  TweenLite.to(contact_text, 1, {autoAlpha:0});
  TweenLite.to(contact_form, 1, {autoAlpha:0});
  TweenLite.to(yousendit_btn, 1, {autoAlpha:0});
teamBt.addEventListener(MouseEvent.MOUSE_DOWN, mouseTeamHandler);
function mouseTeamHandler(event:MouseEvent):void {
  SoundMixer.stopAll();
  TweenLite.to(home_photo, 2, {autoAlpha:0});
  TweenLite.to(what_photo, 2, {autoAlpha:0});
  TweenLite.to(research_photo, 2, {autoAlpha:0});
  TweenLite.to(team_photo, 2, {autoAlpha:1});
  TweenLite.to(portfolio_photo, 2, {autoAlpha:0});
  TweenLite.to(clients_photo, 2, {autoAlpha:0});
  TweenLite.to(contact_photo, 2, {autoAlpha:0});
  TweenLite.to(scroller_bk, 1, {autoAlpha:0});
  TweenMax.from(team_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn});
  TweenLite.to(intro_text, 1, {autoAlpha:0});
  TweenLite.to(intro_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_what_we, 1, {autoAlpha:0});
  TweenLite.to(bar_what_we, 1, {autoAlpha:0});
  TweenLite.to(scroller_research, 1, {autoAlpha:0});
  TweenLite.to(bar_research, 1, {autoAlpha:0});
  TweenLite.to(scroller_bk, 3, {autoAlpha:.7, delay:2});
  TweenLite.to(scroller_team, 3, {autoAlpha:1, delay:2});
  TweenLite.to(my_ssp, 1, {autoAlpha:0});
  TweenLite.to(contact_text, 1, {autoAlpha:0});
  TweenLite.to(contact_form, 1, {autoAlpha:0});
  TweenLite.to(yousendit_btn, 1, {autoAlpha:0});
portfolioBt.addEventListener(MouseEvent.MOUSE_DOWN, mousePortfolioHandler);
function mousePortfolioHandler(event:MouseEvent):void {
  SoundMixer.stopAll();
  TweenLite.to(home_photo, 2, {autoAlpha:0});
  TweenLite.to(what_photo, 2, {autoAlpha:0});
  TweenLite.to(research_photo, 2, {autoAlpha:0});
  TweenLite.to(team_photo, 2, {autoAlpha:0});
  TweenLite.to(portfolio_photo, 2, {autoAlpha:1});
  TweenLite.to(clients_photo, 2, {autoAlpha:0});
  TweenLite.to(contact_photo, 2, {autoAlpha:0});
  TweenLite.to(scroller_bk, 2, {autoAlpha:0});
  TweenMax.from(portfolio_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn});
  TweenLite.to(intro_text, 1, {autoAlpha:0});
  TweenLite.to(intro_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_what_we, 1, {autoAlpha:0});
  TweenLite.to(bar_what_we, 1, {autoAlpha:0});
  TweenLite.to(scroller_research, 1, {autoAlpha:0});
  TweenLite.to(bar_research, 1, {autoAlpha:0});
  TweenLite.to(scroller_team, 1, {autoAlpha:0});
  TweenLite.to(bar_team, 1, {autoAlpha:0});
  TweenLite.to(my_ssp, 3, {autoAlpha:1, delay:2});
  TweenLite.to(contact_text, 1, {autoAlpha:0});
  TweenLite.to(contact_form, 1, {autoAlpha:0});
  TweenLite.to(yousendit_btn, 1, {autoAlpha:0});
clientsBt.addEventListener(MouseEvent.MOUSE_DOWN, mouseClientsHandler);
function mouseClientsHandler(event:MouseEvent):void {
  SoundMixer.stopAll();
  TweenLite.to(home_photo, 2, {autoAlpha:0});
  TweenLite.to(what_photo, 2, {autoAlpha:0});
  TweenLite.to(research_photo, 2, {autoAlpha:0});
  TweenLite.to(team_photo, 2, {autoAlpha:0});
  TweenLite.to(portfolio_photo, 2, {autoAlpha:0});
  TweenLite.to(clients_photo, 2, {autoAlpha:1});
  TweenLite.to(contact_photo, 2, {autoAlpha:0});
  TweenLite.to(scroller_bk, 2, {autoAlpha:0});
TweenMax.from(clients_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn});
  TweenLite.to(intro_text, 1, {autoAlpha:0});
  TweenLite.to(intro_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_what_we, 1, {autoAlpha:0});
  TweenLite.to(bar_what_we, 1, {autoAlpha:0});
  TweenLite.to(scroller_research, 1, {autoAlpha:0});
  TweenLite.to(bar_research, 1, {autoAlpha:0});
  TweenLite.to(scroller_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_team, 1, {autoAlpha:0});
  TweenLite.to(my_ssp, 1, {autoAlpha:0});
  TweenLite.to(contact_text, 1, {autoAlpha:0});
  TweenLite.to(contact_form, 1, {autoAlpha:0});
  TweenLite.to(yousendit_btn, 1, {autoAlpha:0});
contactBt.addEventListener(MouseEvent.MOUSE_DOWN, mouseContactHandler);
function mouseContactHandler(event:MouseEvent):void {
  SoundMixer.stopAll();
  TweenLite.to(home_photo, 2, {autoAlpha:0});
  TweenLite.to(what_photo, 2, {autoAlpha:0});
  TweenLite.to(research_photo, 2, {autoAlpha:0});
  TweenLite.to(team_photo, 2, {autoAlpha:0});
  TweenLite.to(portfolio_photo, 2, {autoAlpha:0});
  TweenLite.to(clients_photo, 2, {autoAlpha:0});
  TweenLite.to(contact_photo, 2, {autoAlpha:1});
  TweenLite.to(scroller_bk, 2, {autoAlpha:0});
  TweenMax.from(contact_photo, 2, {blurFilter:{blurX:80, blurY:80}, ease:Back.easeIn});
  TweenLite.to(intro_text, 1, {autoAlpha:0});
  TweenLite.to(intro_bk, 1, {autoAlpha:0});
  TweenLite.to(scroller_what_we, 1, {autoAlpha:0});
  TweenLite.to(bar_what_we, 1, {autoAlpha:0});
  TweenLite.to(scroller_research, 1, {autoAlpha:0});
  TweenLite.to(bar_research, 1, {autoAlpha:0});
  TweenLite.to(scroller_bk, 3, {autoAlpha:.7, delay:2});
  TweenLite.to(scroller_team, 1, {autoAlpha:0});
  TweenLite.to(my_ssp, 1, {autoAlpha:0});
  TweenLite.to(contact_text, 3, {autoAlpha:1, delay:2});
  TweenLite.to(contact_form, 3, {autoAlpha:1, delay:2});
  TweenLite.to(yousendit_btn, 3, {autoAlpha:1, delay:2});

Similar Messages

  • Self adjusting background image

    Check out this background image on the Palm site.
    http://www.palm.com/us/index.html
    It is cool how it shrinks and stretches to fill the back.  Any ideas on how to do it?
    Steven Houtzager
    intuitionusa.com

    The image is handled with CSS...
    #bg-blur{width:100%;height:800px;position:absolute;top:0;left:0;z-index:0;opacity:0;filter:alpha(opacity=0);
    It is always 100% wide to fill the browser window and 800px tall.

  • How can you make a background image change to a faded state at a certain point in scroll?

    I'm referring to a technique I've seen used in Relevant Magazine's iPad app if anyone has used it. I understand having a shape behind text that has a feathered gradient and when you scroll the text the shape gradually fades out the background image. But this is not the effect I'm trying to acheive. On some of the articles in Relevant, the screen is a full image and as you scroll the type up, the entire background dims when you scroll to a certain spot.
    I've tried searching for hours, but I feel like I'm getting no where because I don't really know what to search for. I feel like it requires use of something other than what DPS is capable of. Hopefully this makes sense and I'd greatly appreciate any suggestions and help!
    Thanks!

    Try applying the feathered gradient to the scrollable content frame, not the background frame. It will appear to change the color of the background frame.

  • How do I change the blurred background image on the Select User Screen

    I have changed the desktop image on all of my users, as well as the screen savers.  However, when I logout of one user and the screen where you select another user comes up, there is an image on the background of this particular screen that I cannot figure out how to change.
    This is crucial because I do not want to see my crazy, abusive ex-wife every time I select a different user...even if it is a blurred image.
    This blurred out image does not appear anywhere else on any of the different user accounts as a background/desktop image.
    How do I change this background image?
    Please help.

    This seems to be a bug that goes away w/ 10.10.1
    Yosemite login screen possible bug
    "if I put my Mac in sleep mode, when I wake up it, the password request screen uses the default Yosemite wallpaper in blurred mode instead of the wallpaper I have chosen for my desktop."
    or maybe not:
    "And it still happens after the 10.10.1 update."
    This seems to work.
    "The only way I was able to fix this problem was to go Mission Control and close all extra desktops I was using except Desktop 1 (which you cannot delete if it is the last one). After deleting the extra desktops besides Desktop 1, I went into preferences and set my wallpaper. Once I complete both of these steps I returned to the login screen. The wallpaper I used for Desktop 1 was now my background for the login screen. Hope this helps."

  • Washed out background image on Treo Pro

    Hi:
    When I set my background image on my today screen (check the box in settings, browse to image - use 320x320 resolution) I get a "washed out" version of the image regardless of its original color, tone or intensity. Images from the preinstalled themes are fine - vibrant and clear - but the user set images are very light (almost like a 50 percent transparency in Photoshop for example). I have tried both .jpg format and .png. Backlight settings do not cure this either.
    Any ideas?
    Thanks.
    Post relates to: Treo Pro T850 (Bell)
    This question was solved.
    View Solution.

    Hi Again:
    Upon further investigation, I have discovered that the options for setting background and transparency levels is found through the pictures and videos explorer not the file explorer.
    As suggested I have set the transparency to 0 and the image (Crab Nebula through the Hubble space telescope) is as bright and vibrant as it should be.
    Thanks again for the direction - it's much appreciated.
    Post relates to: Treo Pro T850 (Bell)

  • How do I change the background image for a single tab on the navigation bar

    I'm creating a movie website for TDKR and for the navigation bar, I intend to have a different character for each tab. However, I'm having trouble putting a single image each separate tab. Instead one image appears on each of the tabs. Here's an example of the source and CSS.
    <td width="200"><ul id="navigation"><br />
          <li><a href="../pages/index.html">Home</a></li><br />
          <li><a href="../pages/cast.html">Cast</a></li><br />
          <li><a href="../pages/pictures.html">Pictures</a></li><br />
          <li><a href="../pages/soundtrack.html">Music</a></li><br />
          <li><a href="../pages/interview.html">Interviews</a></li><br />
          <li><a href="../pages/links.html">Links</a></li><br />
        </ul>
        </td>
    #navigation {
              list-style-type: none;
              padding: 0px;
              margin: 0px;
    #navigation li {
              margin: 0px;
              padding: 0px;
              list-style-type: none
    #navigation li a:link, #navigation li a:visited {
              display: block;
              width: 200px;
              height: 100px;
              text-decoration: none;
              text-align: center;
              line-height: 100px;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-weight: bold;
              -webkit-transition: 1000ms ease;
              -moz-transition: 1000ms ease;
              -ms-transition: 1000ms ease;
              -o-transition: 1000ms ease;
              transition: 1000ms ease;
              color: #648AAE;
              background-repeat: no-repeat;
              background-image: url(../Images/gifs/Batman-still-2.gif);
              background-position: center bottom;
              text-transform: uppercase;
              letter-spacing: 0.79em;
              border-radius: 5px;
    #navigation li a:focus, #navigation li a:hover, #navigation li a:active {
              color: #000000;
              background-image: url(../Images/gifs/Batman-animation-2.gif);
              background-repeat: no-repeat;
              background-position: center bottom;
              background-color: #454545;
              border-radius: 25px;
    So, how do I put a single image on each tab (home, cast, pictures, etc). Thank you for your help in advance.

    Assign a class to the item and use CSS to apply an image as in
    <li><a href="../pages/index.html" class="home;">Home</a></li><br />
    <li><a href="../pages/cast.html">Cast</a></li><br />
    <li><a href="../pages/pictures.html">Pictures</a></li><br />
    <li><a href="../pages/soundtrack.html">Music</a></li><br />
    <li><a href="../pages/interview.html">Interviews</a></li><br />
    <li><a href="../pages/links.html">Links</a></li><br />
    and the CSS
    #navigation li a:link.home, #navigation li a:visited.home {
         background-image: url(../Images/gifs/Batman-still-2.gif);

  • Background image for a KM Navigation iView

    Hi Friends,
    I would like to put an image, that is a part of the KM repository (/documents/myPic/abc.jpg) as a background image to my KM Navigation iView. Could you please let me know all the available solutions to achieve this?
    EP/KMC 04s (7.0 SP06).
    Thanks in advance,
    Debasis

    Hi Debasis,
    This is a general Flex UI collection renderer setting
    for the Collection Renderer Settings Group:
    rndBgImagePath
    Look here:
    http://help.sap.com/saphelp_nw04/helpdata/en/87/3d48475ee8bd448c4031aa98d90524/frameset.htm
    For a specific folder you could even set this using
    the folder's details under Presentation Settings >
    Additional Parameters.
    Regards,
    Darin

  • Adding background image to navigation tabs

    I am adding a backgraound image to a navigation tab and so far have found the only way to do this is by modifying the HTMLTableCell class and adding a method that sets the background image. The closest existing method is setBgColor - which doesn't work.
    I'm sure there has to be a better way to do this?
    Thanks

    My favorite technique is to use CSS. Try this in a stylesheet:
    BODY { background-image: url(marble.gif);           background-color: #cccccc; } P { background-image: none;           background-color: #cccccc; }
    For more information visit http://css.nu/.
    You can apply that style to a <DIV> you use to bound your header, for instance.
    David Phipps
    Plumtree Software

  • Background image is gone when printing out the page

    I have a region with table and created a style as follows:
    th {font-size:9pt;font-weight:bold;background-image: url(#WORKSPACE_IMAGES#blue.gif)}
    when i print out the page, the image color for TH is gone. How to change to show the color in the print-out.
    Thanks for your help.
    Jen

    Hi,
    IE - Tools/Internet Options/Advanced - scroll down to printing and make sure the check is on "Print background colors and images"

  • How to blur out background

    How do you blur out the back ground of a photo?

    Hi,
    Hopefully, you have found the Guided edit mode and can see the Depth of Field in the Photo Effects list.
    The simple mode just produces a circle of the image that is in focus. The Advanced mode enables you to pick out an irregular shape section to be kept in focus.
    Have a play with it and if you need more help then come back.
    Brian

  • Trying to put a background image into my div but it closes out. What gives?

    I keep trying to put a background image into my div but it always closes out when I try to pick an image from the browse button and then I get the spinning colored wheel of death. I've tried it on the CSS Designer Properties section and in the Properties Box on the bottom of the layout.

    Could be a memory issue. Try closing Dreamweaver and re-start your computer.
    Nancy O.

  • Background, Images, & text is blacked out. I can not see any menus to edit anything... Help

    Background, Images, & text is blacked out. I can not see any menus to edit anything...
    The curser shows there are links when you move over. I have uninstalled and re-installed Firefox and restarted my computer with no luck.
    I can not see the menus to try and reset Firefox or change any settings.
    HELP Please

    hello obrienn214, other users with this problem all had an embedded intel hd3000 graphics card with an old driver present. in case this also applies to you, here would be a link to update the driver, which in turn should also address the black firefox problem: https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=23764 (for win7 64 bit)
    in case this doesn't solve the issue or does not apply to your system, start firefox into safemode '''by pressing the shift key while the application is launching''' & disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • How can I create a scrolling effect where when the user scrolls down the image will blur out?

    How can I create a scrolling effect where when the user scrolls down the image will blur out?

    Hi there,
    You can create a scroll motion where the image will fade out on scrolling, you need to use the Opacity tab under Scroll Effects Panel.
    If you particularly need the image to be blur out, then you need to edit that image in any image editing program and make one copy of that image as blurred, then place both images (actual and blurred) on that page and use scroll motion or fade option to replace images.

  • 2 out of 6 pages not loading browser background image

    Does anyone know why out of 6 pages on my website, only 2 of them are not loading the choosen browser background image? All other pages load them in when uploaded to the site online. They appear to be correct in iWeb before publishing.
    Once they are published, it is just white. If I select a color instead of the image, the color displays. Thoughts?
    All the best
    iMac G5 20   Mac OS X (10.3.9)  

    One more question. I know that when you publish your
    site to a non .mac acct, the podcasting code needs to
    be changed. Can someone help me out with that? You
    click the subsribe button and it launches iTunes, but
    then it errors out. Thoughts?
    Your RSS URL is invalid: http://www.onetvshow.com/ONE/our%20podcast/rss.xml
    www.onetvshow.com is not listed with WHOIS.
    Does anyone know of a free/cheap program I can use to
    edit some of the code. I need to insert some form
    mail code and then also for the podcast code edits.
    You are asking the wrong guy if it repetitive and on going basis, I say AppleScript

  • How to create a full page background image that is fluid?

    I'm creating a website for my portfolio, and one of the things I wanted to have is a full page background image that the div tags are in.  I know there is a way to put it in via page properties, but that doesn't allow you to add CSS styles and I want the image to re-size with window changes.  This requires putting the image in a div tag, but then it pushes the other div tags (such as my header section and navigation) so that they aren't over the image like I want.  Is there a way to push the image div tag to the back so that the other div tags go over it.
    I'm using HTML5, and it will also be a responsive design, but the fluid background is only for desktops.
    I don't go on the adobe website often, so if you have an answer to this, or need more information to figure it out please email me at [email protected] and you'll get a faster reply than on this forum.
    Thank you everyone for your help.

    You should set this forum to email you on a reply.
    I don't have a link in your question to determine how you are trying to do this, but here's a technique I have used:
    Take a look at this website and see if it doesn't have what you are trying to do. You'll see the flag in the background and I have used opacity in the layers on top of it to keep the flag somewhat visible.
    Now, what the flag does not do is re-size itself with the viewport (the browser window). But the flag is in a div that sits on top of the body. My code is accessible, but you're looking for the flag div and it's defined in CSS thusly:
    #flag {
              width: 100%;
              background-image: url("../images/polish-flag.png");
              background-repeat: no-repeat;
              min-height: 900px;
    Now, CSS3 adds a new attribute you can apply to the background image thusly:
         background-size: 100% 100%;
    That would make your background fill the viewport.
    I chose to not do that, because I was worried about versions of Internet Exploder before 10.

Maybe you are looking for