Need help big time with pop-up window!

This is probably an easy answer, I'm not a programmer or a back end guy whatsoever, I'm a graphic designer trying to make his way through a project for a client.
I'm working up a Flash template, and I need to make a simple pop up window that will view a more detailed version of an image.  The template has a pop up window system where you add your photo to a certain frame of a movie clip.  The problem is, the pop ups have scroll bars built in, and for the life of me I couldn't figure out how to get rid of them, so I duplicated one of the movie clips that looked like it housed the framework of the pop up and deleted the scroll bar (I didn't delete any of the scroll bar code because I had no idea what I was doing).  It actually kind of worked, but the pop up window is a bit too wide and doesn't look right.
You can view my hack job here...
http://truetilldeathhq.com/main8_v7/main8_v7.html
Stay on the "Print" page and click the first "01" button and an ad for Ford will come up.  Click the "Detailed View" button in the description to see the pop up window.
My question is, there MUST be an easier way to make a pop up window than the workaround I'm using with the template.  What I'm trying to do is have a pop up for each sample of the work (all images would be the same size) for the first four buttons, and then for the "Online Banners" page, have the pop up open up to the dimensions of the particular banner ad and play the swf.  The pop ups shouldn't have scroll bars, only a title and the button to close the window.
To view the template files, you can download them at:
http://truetilldeathhq.com/main8_v7/main8_v7.fla
The "descripton" movie clips have the descriptions and the "Detailed View" links in the frames, and the movie clips I not so gracefully butchered to get the pop up to work were TM_page_content_scroll (where you're supposed to put an image in a certain frame and then put the # of that frame in the Actionscript of the "Detailed View" button), and the TM_main_cont_page2 and TM_pop_up_main3, which were the ones I duplicated.
If ANYONE can offer even the slightest bit of help, I gratefully appreciate it.  I've been working on this thing for like 15 hours a day and I can't even think straight at this point, thanks!

I admit to not having read everything you wrote... there's just too much of it. But...
Hashtable (and HashMap, which you should really be using unless you have some external constraint requiring the use of Hashtable) map each key to a single value object.
That is, you can map from the key string "4996" to one single other object. And then you can also map from a different key to a different object.
In you put() method, you add a mapping from "4996" to "good", and then you replace that mapping with one from "4996" to "home". There is only ever one value associated with a given key.
To map multiple values to a single key, you need the value object to be a collection of some kind (or an array). So, you could map your string "4996" to a List, and that list could contain the strings "good", "home", etc.

Similar Messages

  • NEED HELP BIG TIME!

    I wrote a few days ago about this and was told that gathering
    information from a form using Post as the method and having the
    results emailed to someone wasn't a good idea and that it didn't
    work very well. People basically told me to investigate scripting
    or hiring someone, or use a pay service like MailChimp. None of
    these are options for me right now, I absolutely have to get this
    site done tonight and the person I'm doing it for will not pay for
    a service.
    The client wants to have a form on his site to collect email
    addresses so he can compile them into a mailing list to send out
    infrequent emails notifying people of upcoming events he's putting
    on. He's a local artist with a very modest following, nothing big
    time. I have no idea about databasing or MySql, and the person
    doesn't want to pay for a service, so basically I'm stuck doing it
    the "unreliable" way.
    Can someone walk me through how to do this in Dreamweaver? I
    assume I add a form field, and put a text field and submit button
    inside of it. Here's my questions, to get this to work and use the
    mailto: thing, what do I put for...
    Form Field: Name, Action, Method, Target, Enctype
    Text Field: Name
    Button: Type, Name, ID, Value
    Any help would be greatly appreciated by one stressed out,
    hack web designer, thanks!

    If this client doesn't want to pay for a service then tell
    him the best
    you can do is gather INDIVIDUAL emails from his site and have
    them
    emailed to their email address. Then it's up to them to mail
    out to
    their modest following INDIVIDUALLY.
    Basically you put a form on the site to collect the email
    address of the
    user. Like this:
    <form name="emailForm" method="post"
    action="formmail.php">
    <p><label for="email">Enter email
    address</label><br>
    <input type="text" id="email" name="email"> </p>
    <input type="submit" name="Submit" value="Submit">
    </form>
    You would then need to send the submitted form to a formmail
    script
    which will then send it on to the clients email address.
    A free script named Formmail does exist if you search for it
    in google
    under Free formmail script
    You would need to alter the script as per the instructions
    which should
    come with it and then upload it to your cgi-bin assuming you
    have one on
    your server.
    You then point the form at the script by filling in the
    action attribute
    like:
    <form name="emailForm" method="post"
    action="
    http://www.yourdomain.com/cgi-bin/formmail.cgi">
    I no longer use formmail because it can be a bit of an issue
    to set up
    for beginners.
    I now tend to use server side scripting like php to gather
    the
    information. IF you have php running on your server then
    NateMail is
    FREE and very very simple script to set up. It comes with
    clear pdf
    instructions that will do the job in about 10-15mins.
    http://www.mindpalette.com/scripts/index.php#NMAnchor
    xslamx wrote:
    > I wrote a few days ago about this and was told that
    gathering information from
    > a form using Post as the method and having the results
    emailed to someone
    > wasn't a good idea and that it didn't work very well.
    People basically told me
    > to investigate scripting or hiring someone, or use a pay
    service like
    > MailChimp. None of these are options for me right now, I
    absolutely have to
    > get this site done tonight and the person I'm doing it
    for will not pay for a
    > service.
    >
    > The client wants to have a form on his site to collect
    email addresses so he
    > can compile them into a mailing list to send out
    infrequent emails notifying
    > people of upcoming events he's putting on. He's a local
    artist with a very
    > modest following, nothing big time. I have no idea about
    databasing or MySql,
    > and the person doesn't want to pay for a service, so
    basically I'm stuck doing
    > it the "unreliable" way.
    >
    > Can someone walk me through how to do this in
    Dreamweaver? I assume I add a
    > form field, and put a text field and submit button
    inside of it. Here's my
    > questions, to get this to work and use the mailto:
    thing, what do I put for...
    >
    > Form Field: Name, Action, Method, Target, Enctype
    >
    > Text Field: Name
    >
    > Button: Type, Name, ID, Value
    >
    > Any help would be greatly appreciated by one stressed
    out, hack web designer,
    > thanks!
    >

  • Need help big time. I need to change my apple ID but the original email address I set it up under is no longer used so i can't get my proper password sent to me. I don't want to set up a new account and lose all my old apps I have purchased.

    need help.  Before I set up my I-pad i need to regain access to my I-Tunes account, easy enough. The problem is I cannot re-set password.  I have tried to re-set and send to my designated email but it does not work. How can i get someone from Apple on the phone to help?

    Have you forgotten your password? - if so, you have a problem if the email address has gone dead.
    If you know your password, go to the iTunes Store, click on Account. log in and you can change the associated email address.
    If you don't know your password, and have no email address, you are going to have problems because it's difficult to see how Apple are going to identify you as the authorised owner of the account. Contact iTunes Support: go to http://www.apple.com/support/itunes/ - click on 'Other iTunes Store Features' in the list and then on 'Podcasts'. You will see a link to either 'Express Lane', which will guide you eventually to some contact options, or you may see a link to email them.

  • Need help.Big problem with battery

    Hello all! I have HP Mini 110-3864sr for 3 years. I  rarely used the battery but if I do it , my notebook was working for 3-6 hours. 15 of August I left for business trip and  my HP stayed at home. When I came back on 22 of August, I switched it on, but I found that the battery doesn`t work at all. I have  Windows 7  and I see that the battery status is 0% and no  charging. I have done everything that I have found in the internet. I installed HP support assistant and did diagnostic from BIOS etc. Nothing helped, but HP support assistant says that the battery is OK. During  the test it starts charging for 15 sec and that is all. I suspect that when I left the battery was about 10% and during the  week It lost the power.
    I know that it must work because as I have said before it  cat run notebook for 3 hours +++. Please help what I have to do???
    This question was solved.
    View Solution.

    "I know that it must work because as I have said before it  cat run notebook for 3 hours +++. Please help what I have to do???"
    If you remove the battery and plug in the power adapter are you able to boot into Windows?
    If that is posssible, then your battery has most likely failed and requires replacement regardless of what the diagnostic test has told you.
    Notebook or netbook batteries are only guaranteed from new for one year. If you get three+ years of service life out of a notebook's battery, you can consider yourself quite fortunate.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • I've just got my first iPhone and it won't let me verify my email to go in the app store need help big time the phone is useless without apps

    Any ideas

    Leave the iPhone alone for a minute and go to your PC/Mac. Try and set up the Apple ID on there (again leaving the iPhone to sit and look pretty for a while). Check your emails (not on the iPhone) and see if you are receiving the email into your inbox that way, if you aren't make sure you have put the correct email address in the App store. If you are definitley sure you are putting the correct email address in go to the web interface for your email provider (e.g. hotmail or yahoo) and check the junk mail folders etc.
    Do all the above whilst the iPhone is sat around, don't do any of the above on the iPhone. If you manage to crack it and get the email address verified and your account up and running just log in to the App Store on your iPhone once it's all done

  • I need help. every time i turn on my laptop an error message pops up: the procedure entry point sqlite_wao -checkpoint could not be located in the dynamic link library SQLite3.dlll  HOW DO I FIX THIS?

    i need help. every time i turn on my laptop an error message pops up: the procedure entry point sqlite_wao -checkpoint could not be located in the dynamic link library SQLite3.dlll  HOW DO I FIX THIS?

    Hi whatsthe77,
    Welcome to Apple Support Communities.
    You may want to follow the steps in this article to reinstall iTunes:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Have a great day,
    Jeremy

  • Anyone having problems with pop up windows?

    Very recently (roughly just after performing the most recent Security Update) I have had trouble with pop up windows in Safari. Haven't had the problem before and the strange part is that my setting to block pop up windows keeps becoming unchecked in the Safari menu. My workaround has been to refresh the page, which removes the pop up, and then re-check the block pop up window option. Next time I open up Safari, I get the pop up again and my setting is unchecked.
    Anybody else have this experience. Any malicious software out there that might be causing this? Any suggestions?
    Thanks,
    jack
    G4/933 Quicksilver 2002; Boot ROM 4.3.3f2   Mac OS X (10.4.9)   Safari 2.0.4 (419.3), MyYahoo homepage

    Hi
    Welcome to Apple Discussions
    Oddities in Safari happen, not from viruses etc, but from some of the complexities of the program itself. In this case, a corrupted preference file may be causing the problem.
    In the Finder, drag to the desktop the com.apple.safari.plist folder found in your User Account>Library>Preferences folder.
    Restart Safari. Select the pop-up block. Quit/Restart Safari.
    If the pop-up selection held, you'll need to reset your Safari preferences to your liking, plus any custom settings found in the Edit Menu (spelling) or View Menu (status bar, bookmarks bar, custom icons in the "Customize Address Bar" ).
    Otherwise, move the file back to its original location.
    Post back

  • Having trouble with pop-up windows and ads for MacKeeper

    I've been having trouble with pop-up windows and ads for MacKeeper and similar "services." Tried to download "MPlayerX" a week ago and it all started then. I thought I deleted the file but I'm still having trouble. I've been digging for solutions on here, but nothing I've found on here has worked yet--the VSearch stuff (I think) isn't on my hard drive. Any advice?

    You installed a variant of the "VSearch" trojan. Remove it as follows.
    This malware has many variants. Anyone else finding this comment should not expect it to be applicable.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.venus.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.venus.daemon.plist
    /Library/LaunchDaemons/com.venus.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/venus
    /System/Library/Frameworks/v.framework
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Hi I need help first time here converting a file

    Hi I need help first time here converting a file

    Thank you for your subscription to our service.  Please see below.
    How to convert your file to PDF file:
    Using Adobe Reader:
    Launch Adobe Reader X or Reader XI
    Select “Tools” and click “Sign In” link to sign in with your Adobe ID and password
    Select “Create PDF” then click “Select File” button
    Click “Convert” after select your file
    Click “Download Converted File” link to download the file to your computer after the process is completed.
    Using Web UI
    Log into https://createpdf.acrobat.com/signin.html with your Adobe ID and password
    Select “Convert to PDF”
    Click “Select Files” button then choose your file Click “Download” button in the progress bar after completion of the process to download the PDF file to your computer.
    Converted PDF files are stored at https://files.acrobat.com and you can log in with your Adobe ID and password.  You can share your files with others or download them to your computer.
    Please let me know if you have further questions.
    Hisami

  • I have problems with pop up windows after earlier today I updated the software

    I have a macbook pro, and I updated the software today, I have OS X 10.9
    After I did this I started having problems in safari with pop up windows, before it only happened with some sites, but now almost every site I try to open it also opens 
    pop up windows, and some sites have underlined words that link to other sites for advertising.
    I really don't know what to do and I've read several posts of people that also have had my problem but I don't the solutions.

    Mail troubleshooting - Yosemite
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • Problem with Pop up windows and struts

    Hi
    I have problem in working with pop-up windows and struts.
    I have parent page which basically lists some data and has a button for adding new record. when I press that button a child windndow will be opened for data entry. The child window has submit button to save data.
    when I press the button for save, It will go to action class and saves it in a database and forwards a new page.
    but I do not want to forward any new page. If any exception is raised during database saving, a message should be showed in child window otherwise the child window should close and the parent window should get refreshed.
    Can any one write me how we can handle this in struts.
    Thanks in Advance,
    SR

    This has nothing to do with struts, you can do the same with some plain JavaScript. Do the following...
    1) On error, forward to a error page
    2) On success, forward to a temp.html page.
    The code in temp.html would be like this
    <html>
    <head><script>
    window.opener.reload();
    self.close();
    </script></head>
    <body>Closing...</body>
    </html>Cheers
    -P

  • I need help getting past the installation error "windows cannot fint TEMP file"

    I need help getting past the installation error "windows cannot find TEMP file"

    Seems like some who have tried two devices on the JMICRON IDE port have had trouble. Try without the hard drive and see if you get that error. If that is the case I would try a PATA to SATA converter for your hard drive and connect it to one of the Intel SATA Ports.
    http://www.newegg.com/Product/Product.aspx?Item=N82E16812107112
    http://www.amazon.com/ADDONICS-IDE-SERIAL-CONVERTER-ADIDESA/dp/B000090169
    http://www.compusa.com/products/product_info.asp?product_code=339900#ts
    http://www.xpcgear.com/ide2sata.html
    http://www.ubuyitdirect.com/-p-1045.html?currency=USD
    http://www.satasite.com/sata-ide-converter.htm
    http://www.pcgears.com/default.aspx?oid=187150
     

  • Almost finished with site, really need help with pop up window!!!!!

    I've got one last thing to finish up on this site I've been working on.  I've posted what I've worked up so far at:
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    I still have to finish linking the actual banner swfs on the Online Banners page, which will display animated banner ads for the portfolio.  Ideally, when the user clicked the View Banner link, I wanted to have the banners display in a similar pop up window like the other examples of the work (with same title area, close button, etc., click the Detailed View button on Merchandise page for example).  That was problematic due to different frame rates of the banner swfs, getting the pop up window to contain just the stage area of the swf and not the working area, getting the window to pop up in the middle and not get cut off at the right side, etc.  Like I said, ideally I'd like to do this, so if anyone has a relatively quick fix, I'm all ears.
    I figured my best route now is to somehow have Flash trigger an html pop up window when the link is clicked and have it display in the middle of the page at the exact dimensions of the banner.  Anybody know the best way to do this?  I'm at my wits end and I really have to have this finished for Monday so any help is more than appreciated, thank big time in advance!

    Forgive me for my ignorance, but I'm new to Flash and any kind of scripting and I didn't quite follow that page you directed me to.  Right now I'm working up a Flash template and the action on the link for the banner pages looks like this:
    on(rollOver) {
    this.gotoAndPlay("s1");
    on(rollOut, releaseOutside) {
    this.gotoAndPlay("s2");
    on (release) {
    _root.popup_pressed=1;
    _root.scrHEIGHT=240
    _root.scroller.scroller.gotoAndStop(2);
    _root.TM_title = "Work 1 read more";
    _root.READ = 1;
    _root.scroller.gotoAndPlay("s1");
    How can I work up the on (release) so I'll get a simple pop up window, say 728x90, no scrollbars or resizing, that will open somewhere in the middle of the site?  If I wanted a title to the pop up window, how would I do that?
    Again, thanks so much for your time and excuse my newbieness.

  • Need help with pop up window!

    I'm working on an online graphic design portfolio and one of the pages features online animated Flash banners.  The site can be viewed here...
    http://truetilldeathhq.com/Skiz/main8_v7.html
    I created a pop up window that displays a swf of the banner by putting this code on the View Banner link of each example of work...
    on (release) {
    var jscommand:String = "window.open('http://www.truetilldeathhq.com/Skiz/banners/336x280DuvalCX9.html','win','height= 296,width=352,left=112,top=330,toolbar=no,resizable=no,location=no,scrollbars=no ');";getURL("javascript:" + jscommand + " void(0);");
    Two problems though.  First is in Firefox the location bar with the url to the swf is visible, even though I set location=no as a variable in the code (it works ok in Safari).  The window is also resizable in Firefox and Safari even though the variable is set to resizable=no.  How can I fix this?
    Second problem, even though I painstakingly set the left and top variables by trial and error to get the pop up window to open exactly in the center of the "stage" area of the site, when I post it and view it in a browser, the window pops up lower.  When I'm in the fla of the site and I preview it in a browser, it's fine, but for some reason when I post the files online and then open it from http://truetilldeathhq.com/Skiz/main8_v7.html, the pop ups come in lower.  Any fixes or advice on this?
    Thanks for your help!

    Forgive me for my ignorance, but I'm new to Flash and any kind of scripting and I didn't quite follow that page you directed me to.  Right now I'm working up a Flash template and the action on the link for the banner pages looks like this:
    on(rollOver) {
    this.gotoAndPlay("s1");
    on(rollOut, releaseOutside) {
    this.gotoAndPlay("s2");
    on (release) {
    _root.popup_pressed=1;
    _root.scrHEIGHT=240
    _root.scroller.scroller.gotoAndStop(2);
    _root.TM_title = "Work 1 read more";
    _root.READ = 1;
    _root.scroller.gotoAndPlay("s1");
    How can I work up the on (release) so I'll get a simple pop up window, say 728x90, no scrollbars or resizing, that will open somewhere in the middle of the site?  If I wanted a title to the pop up window, how would I do that?
    Again, thanks so much for your time and excuse my newbieness.

  • Need help with pop up windows!

    I'm working on a page that's very long and it has your basic
    "click on a small thumbnail of an image and a larger version opens
    up in a pop up window". I downloaded a free extension from the
    Macromedia exchange called Open Picture Window Fever, but it has a
    couple of problems. First, there's no option to center the pop up
    window, only dimensions you can manually put in. Plus when you
    click on the picture, the new window opens but the original page
    with the thumbnails automatically goes to the top when the pop up
    opens (this is a problem because the page is very long and the user
    would have to scroll back down each time they clicked on an image,
    a big pain). The only other option I have is to use the Dreamweaver
    Open Browser Image Behavior. The problems with that is that you
    have to make a html page for each image, which is a drag. Also, I
    can get the pop up window to center with a different extension I
    downloaded, but I still have the same problem with the original
    page jumps to the top.
    What can I do to fix this? Anybody have other ideas or free
    extensions I haven't tried yet?

    > Plus when
    > you click on the picture, the new window opens but the
    original page with
    > the
    > thumbnails automatically goes to the top when the pop up
    opens
    Go to PVII and look for a free extension called Fix Null
    Links....
    http://www.projectseven.com/
    That'll take care of that one.
    > The only other option I
    > have is to use the Dreamweaver Open Browser Image
    Behavior.
    Go to E. Michael Brandt's site, and examine JustSo Picture
    Window. It's
    commercial but it's way nicer than PWF, in my opinion....
    http://www.valleywebdesigns.com
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "xslamx" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm working on a page that's very long and it has your
    basic "click on a
    > small
    > thumbnail of an image and a larger version opens up in a
    pop up window".
    > I
    > downloaded a free extension from the Macromedia exchange
    called Open
    > Picture
    > Window Fever, but it has a couple of problems. First,
    there's no option
    > to
    > center the pop up window, only dimensions you can
    manually put in. Plus
    > when
    > you click on the picture, the new window opens but the
    original page with
    > the
    > thumbnails automatically goes to the top when the pop up
    opens (this is a
    > problem because the page is very long and the user would
    have to scroll
    > back
    > down each time they clicked on an image, a big pain).
    The only other
    > option I
    > have is to use the Dreamweaver Open Browser Image
    Behavior. The problems
    > with
    > that is that you have to make a html page for each
    image, which is a drag.
    > Also, I can get the pop up window to center with a
    different extension I
    > downloaded, but I still have the same problem with the
    original page jumps
    > to
    > the top.
    >
    > What can I do to fix this? Anybody have other ideas or
    free extensions I
    > haven't tried yet?
    >

Maybe you are looking for

  • Can I use one waveform to subtract from the other one in labview?

    Here is the thing. I am using DAQ to aquire amplified signal to measure its noise of output.However DAQ would contribute a little noise to the whole system.My thinking is to capture two waveforms of noise from DAQ itself and the whole system(amplifie

  • Yellow Cast to HVX200 Footage in FCP - but fine on NTSC Monitor

    Dear Folks: I am shooting two cameras with an HVX200 and an HMC150 in a room where the only light source is daylight-bulbed Kinoflos. The lights are fixed, as it the set. Nothing changes. There are no windows. I have two NTSC monitors, both set to ca

  • EFashion sample Universes and best practices?

    Hi experts, Do you all think that the eFashion sample Universe was developed based on the best practices of Universe design? Below is one of my questions/problems: Universe is designed to hide technical details and answer all valid business questions

  • "An error has occurred. Please try again later"

    Hello,  I got a problem with my Blackberry Curve9300 3G. It worked properly for the past year but since today, whenever I want to log myself into the Blackberry App World,  "An error has occurred. Please try again later" is displayed. I tried almost

  • Still having a little trouble with template

    Hi, Can anyone please take a look at the following page and tell me what's going on with my faux columns? BPI Test Site - Activities Page. Since my pages are varying heights I eliminated the "page height" command for my center content div, using the