Help with centralising a box in the absolute middle og the browser screen

Hello there, i was wondering if someone could help me out
with a little problem im having.
im trying to design a site which basically has a box in the
middle of the browser where all the info is displayed.
now i know that if u set the horizontal alignment to middle
then the box will be in the middle of the screen, this much is fine
However, my problem comes when u try to make it the centre of
the vertical axis. i can place it a certain distance from the top
to give it this impression of being in the middle, however if u
view it from a higher screen size then it will no longer be in the
middle vertically.
ive tried setting the vertical alignment to middle but
dreamweaver ignores that. it seems to be totally blind to the
height of the screen, as when i have tried to put things at the
bottom of the screen by making a table 100% tall it just ignores
the height and these things that should be at the bottom are
actually in the middle of the page.
Could someone shed some light on this apparent shadow of
dreamweaver as its been buggin me for a while now
Cheers

http://www.apptools.com/examples/tableheight.php
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
==================
"The Scribe" <[email protected]> wrote in
message
news:eji5vg$992$[email protected]..
> Hello there, i was wondering if someone could help me
out with a little
> problem
> im having.
>
> im trying to design a site which basically has a box in
the middle of the
> browser where all the info is displayed.
> now i know that if u set the horizontal alignment to
middle then the box
> will
> be in the middle of the screen, this much is fine
> However, my problem comes when u try to make it the
centre of the vertical
> axis. i can place it a certain distance from the top to
give it this
> impression
> of being in the middle, however if u view it from a
higher screen size
> then it
> will no longer be in the middle vertically.
>
> ive tried setting the vertical alignment to middle but
dreamweaver ignores
> that. it seems to be totally blind to the height of the
screen, as when i
> have
> tried to put things at the bottom of the screen by
making a table 100%
> tall it
> just ignores the height and these things that should be
at the bottom are
> actually in the middle of the page.
>
> Could someone shed some light on this apparent shadow of
dreamweaver as
> its
> been buggin me for a while now
> Cheers
>

Similar Messages

  • I need help with event structure. I am trying to feed the index of the array, the index can vary from 0 to 7. Based on the logic ouput of a comparison, the index buffer should increment ?

    I need help with event structure.
    I am trying to feed the index of the array, the index number can vary from 0 to 7.
    Based on the logic ouput of a comparison, the index buffer should increment
    or decrement every time the output of comparsion changes(event change). I guess I need to use event structure?
    (My event code doesn't execute when there is an  event at its input /comparator changes its boolean state.
    Anyone coded on similar lines? Any ideas appreciated.
    Thanks in advance!

    You don't need an Event Structure, a simple State Machine would be more appropriate.
    There are many examples of State Machines within this forum.
    RayR

  • Iam using a table in numbers to plot daily graph lines. If I fill a cell with a text box  at say zero it plots the graph. I can't actually set the cell value until the actual day but the graph plots it at zero when I don't want it to plot anything. Is tho

    I am using a table in Numbers to plot daily graph lines. Mood swings of how I am on the day, i"m a depressive.
    If I fill a cell with a step box at say zero it plots the graph. I can't actually set the cell value until the actual day but the graph plots it at zero when I don't want it to plot anything. Is there a work around. so thatbgraph only plots on the day?

    The answer is (sort of) in your subject, but edited out of the problem statement in the body of your message.
    When you use a stepper or a slider, the value in the cell is always numeric, and is always placed on the chart if that cell is included in the range graphed by the chart.
    But if you use a pop-up menu cell, you can specify numeric or text values in the list of choices for in the menu. Numeric values will be shown on the chart. Text values will not.
    For the example, the values list for the pop-up menu was:
    5
    3
    1
    Choose
    -1
    -3
    -5
    The first pop-up was set to display Choose, then the cell was filled down the rest of the column. Any text value (including a single space, if you want the cell to appear blank) may be used instead of Choose.
    For charts with negative Y values, the X axis will not automatically appear at Y=0. If your value set will include negative values, I would suggest setting the Y axis maximum and minimum to the maximum and minimum values on your menu list, rather than letting Numbers decide what range to include on the chart. Place a line shape across the chart at the zero level, and choose to NOT show the X axis.
    Regards,
    Barry

  • Welcome. At the outset, I'm sorry for my English :) Please help with configuration Photoshop CS6 appearance. How to disable the background of the program so you can see the desktop. (same menus and tools) Chiałbym to be the same effect as CS5.

    Welcome.
    At the outset, I'm sorry for my English
    Please help with configuration Photoshop CS6 appearance.
    How to disable the background of the program so you can see the desktop. (same menus and tools)
    i wantto be the same effect as CS5.

    Please try turning off
    Window > Application Frame

  • In the absolutely new 5S the gyroscope does not work, error are stable three degrees, calibration is hindered

    in the absolutely new 5S the gyroscope does not work, error are stable three degrees, calibration is hindered

    Also, I probably should have added that I am with Vodafone, and I'm currently using the Blackberry Curve 3G (9300) on the version 5 software. I also have no access to the Internet, which is telling me I have no signal. I have full 3G signal, so there is no issue whatsoever with my signal. I don't use the BBM on the phone, so I'm not sure if the issue is affecting that also, but I assume it would.

  • GetColumnPathIndexOf returns the absolute index of the path or -1 if the pa

    hi all,
    GetColumnPathIndexOf returns the absolute index of the path or -1 if the path cannot be found.
    if the path cannot be found it will return -1 , i want to change -1 to 0 value, due to this  my formula  kicking as error gridvalueat outof range..
    how to change those setting's of grid column path index. what steps i need to take into consider.

    Have you tried with a small test case, by giving temp(0) and temp(1)?
    SQL> declare
      2      type test_varray is varray(10) of varchar2(1);
      3      t1 test_varray;
      4  begin
      5      t1 := test_varray('a','b','c','d','e','f');
      6  --   
      7      dbms_output.put_line('The value at position : 0 is '||t1(0));
      8  --   
      9      for i in t1.first..t1.last loop
    10          dbms_output.put_line('The value at position :'||i||' is '||t1(i));
    11      end loop;
    12  end;
    13  /
    declare
    ERROR at line 1:
    ORA-06532: Subscript outside of limit
    ORA-06512: at line 7
    SQL> declare
      2      type test_varray is varray(10) of varchar2(1);
      3      t1 test_varray;
      4  begin
      5      t1 := test_varray('a','b','c','d','e','f');
      6  --   
      7      for i in t1.first..t1.last loop
      8          dbms_output.put_line('The value at position :'||i||' is '||t1(i));
      9      end loop;
    10  end;
    11  /
    The value at position :1 is a
    The value at position :2 is b
    The value at position :3 is c
    The value at position :4 is d
    The value at position :5 is e
    The value at position :6 is f
    PL/SQL procedure successfully completed.
    SQL> Cheers
    Sarma.

  • How determine the absolute path of the aep-project?

    As in the script to determine the absolute path of the project?

    Try this for the platform-specific path:
    app.project.file.fsName
    or this for the URI path,
    app.project.file.fullName
    Dan

  • My keyboard keeps popping up in the top middle of the screen.Any ideas how to fix this?

    My keyboard keeps popping up in the top middle of the screen no matter which orientation I use.
    Re sync,turn off or restore didn't help either.
    Any ideas?

    Go to Settings>General>Keyboard>Split keyboard<Off

  • I would like to have at least 1 of my toolbars displayed at the BOTTOM of my open browser screen.How do I move a toolbar from the top to the bottom of the page?

    I would like to have at least one of my toolbars displayed at the '''BOTTOM''' of my open browser screen. How do I move '''a''' toolbar from the top to the bottom of the page? I do NOT want to do this by using an extension, and when I read about the extension, I really did not see how it would move the toolbar from the top to the bottom any open browser page.
    Thank you in advance for supply the answer and procedure to get this accomplished.

    Try this extension to create extra toolbar at the bottom and drag items from other toolbars on it.
    *TotalToolbar: http://totaltoolbar.mozdev.org/
    ''(compatibility is at 13.0a1, so you may need to override the installation to check if the extensions works)''

  • HT1595 When watching a movie on Apple TV first generation, a black triangle will appear in the lower middle of the screen.   Anyone know how to resolve?

    When watching a movie on Apple TV first generation, a black triangle will appear in the lower middle of the screen.   Anyone know how to resolve?

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/ht1551
    -Griff W.

  • Can anyone help with clearing space on my Mac Mini, it says the hard drive is full and runs slowly.

    Please help, we got the Mac Mini from a family member so it may have his stuff on it but no longer required, we have only put a smal amount of data on it so don't believe we have over filled it. I backed up to a hard drive all photos etc as I thought it may be them filling it, now I cannot even scan a document to it. Is there any way to Defrag it as you can normally do to a windows system as well as either declutter it or restore the whole thing.
    Best Regards
    Smithy

    The first thing to do with a second-hand computer is to erase the internal drive and install a clean copy of OS X. You — not the previous owner — must do that. How you do it depends on the model, and on whether you already own another Mac. If you're not sure of the model, enter the serial number on this page. Then find the model on this page to see what OS version was originally installed.
    1. You don't own another Mac.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc from the Apple Store or a reputable reseller — not from eBay or anything of the kind. If the machine has less than 1 GB of memory, you'll need to add more in order to install 10.6. Preferably, install as much memory as it can take, according to the technical specifications.
    If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for some MacBook Air models. For early MBA models, you may need a USB optical drive or Remote Disc. You should have received the media from the previous owner, but if you didn't, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc or a flash drive, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, you don't need media. It should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    2. You do own another Mac.
    If you already own another Mac that was upgraded in the App Store to the version of OS X that you want to install, and if the new Mac is compatible with it, then you can install it. Use Recovery Disk Assistant to create a bootable USB device and boot the new Mac from it by holding down the C key at the startup chime. Alternatively, if you have a Time Machine backup of OS X 10.7.3 or later on an external hard drive (not a Time Capsule or other network device), you can boot from that by holding down the option key and selecting it from the row of icons that appears. Note that if your other Mac was never upgraded in the App Store, you can't use this method.
    Once booted in Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive.
    After partitioning, quit Disk Utility and run the OS X Installer. You will need the Apple ID and password that you used to upgrade. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    Then run Software Update and install all available system updates from Apple. To upgrade to a major version of OS X newer than 10.6, get it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.
    If the previous owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Mac App Store Customer Service has sometimes issued redemption codes for these apps to second owners who asked.
    If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able to  authorize it immediately under your ID. In that case, you'll either have to wait up to 90 days or contact iTunes Support.

  • Need help with 'hover' text box

    Hola
    Why the 'hover' text box don't appear in this page? Welcome to TummyTime, 3D 4D Ultrasound, Modesto, Salida, Ceres, Turlock area.
    The 'hover' text should appear as you go over the pictures at the bottom of the page under  RECENT ANGELS section.
    As you see in this page (Under "Our Projects") :HOME - Arctic Template
    the 'hover' text box appear as you go 'over' the picture, but in 'my' page it doesn't.
    Now, when I 'preview' in my computer, I can see the 'over text box' appear but when I upload it, it just doesn't.
    Can you please check it out and help me with this problem please?
    Thanks.

    This code is what is on the original template
    <li onclick="location.href='index.html';">
      <img src="imgs/project1.jpg" alt="" />
      <div class="item-info">
      <a class="plus-big bg-color" href="#">+</a>
      <div class="item-title txt-highlight-color">Lorem Ipsum Project 1 <br/><span>04-07-2012</span></div>
      <div class="item-desc">Autem vel eum iriure dolor in hendrerit in vulputate velit esse</div>
      </div>
      <div class="triangle-up"></div>
    </li>
    This code is what is on the my page
    <li onclick="location.href='index.html';">
      <img src="imgs/project1.jpg" alt="" />
      <div class="item-info">
      <a class="plus-big bg-color" href="#">+</a>
      <div class="item-title txt-highlight-color">32 Weeks <br/><span>03-09-2014</span></div>
      <div class="item-desc">Autem vel eum iriure dolor in hendrerit in vulputate velit esse</div>
      </div>
      <div class="triangle-up"></div>
    </li>
    As you can see, it's the same code, and it works on my computer but NOT online . . .
    So, where should I put this;
    (<a href="link_to_some_page.html" title="this is what you are talking about, no?">some page</a>)?

  • Popup screen with two check box and a text area for the user to enter value

    hi,
    i have a requirement when a button is clicked a popup screen should appear with two check box and a text box where the user can enter a value.
    is there any function module which has that functionality

    Hello,
    You can create a new screen and select the screen type as <b>model dialog box</b>.This will give you a<b> pop-up screen</b> and you can call this model dialog box screen in the PAI of the screen where the button is present.(At user-command).
    <b>case ok_code.
    when 'BUTTON'.
    call screen 200 starting at 10 10.</b>
    You can design the PBO of this pop-up screen as per your needs.
    Regards,
    Beejal
    **Reward if this helps.

  • Need help with dependent lists boxes with ADF.

    Hello,
    I am doing a project that use tree dependent list boxes.
    Ex. State---->
    College---->
    List of courses of the college chosen above----->
    The way this should work is when I select the state automatically I want it to change to the correspondent list of colleges of that state and after i choose the colleges I want to be able to get all the courses that are given in that college.
    To implement the first two list boxes I create tree views on JDeveloper and and using SelectOneChoice for both State and Colleges. In the binding editor I bind the first View with the second and then the second view with the third and at this point if I execute the first SelectOneChoice would give me all the state and the second SelectOneChoice would give me the list of all the colleges that exist.
    Now on the third view that I create a binding variable and i put a Where state=:TheBindingVariable on the query.
    Also I set the first SelectOneChoice the outoSubmit property to true, id to StateId and PartialTrigger property to CollegeId.
    On pageDef.xml in the bindings I create action form where I select the third view from Date Collection and select Action as ExecuteWithParams. And I set the value under the parameters section to #{bindings.state.inputValue}.
    Under executables still in pageDef.xml I create a invokeAction and I set binds = ExecuteWithParams.
    On first SelectOneChoice on the ChangeValueListener i create a new ManageBeans which generate me a java class and I create a new method as well to use it to change the binding variable on the second SelectOneChoice.
    Here is the method:
    public void Change_StateId(ValueChangeEvent valueChangeEvent) {
    String StateId;
    valueChangeEvent.setPhaseId(PhaseId.INVOKE_APPLICATION);
    FacesContext adi = FacesContext.getCurrentInstance();
    ValueBinding vb = adi.getApplication().createValueBinding("#{bindings}");
    DCBindingContainer bc = (DCBindingContainer)vb.getValue(adi);
    if(valueChangeEvent.getNewValue().toString().equals("0")){
    StateId = "MA";
    OperationBinding opBindingCollegeLovIter = (OperationBinding) bc.get("ExecuteWithParams");
    opBindingCollegeLovIter.getParamsMap().put("TheState",StateId);
    opBindingCollegeLovIter.execute();
    }else{
    DCIteratorBinding statesLovIter = (DCIteratorBinding) bc.get("CollegeProvaView1Iterator");
    Row rw = statesLovIter.getRowAtRangeIndex(((Integer)valueChangeEvent.getNewValue()).intValue());
    StateId = (String) rw.getAttribute("State");
    OperationBinding opBindingCollegeLovIter = (OperationBinding) bc.get("ExecuteWithParams");
    opBindingCollegeLovIter.getParamsMap().put("TheState",StateId);
    opBindingCollegeLovIter.execute();
    I don't know what I have done wrong because I am new in this field and a little support would be really helpful.
    I am using JDeveloper 10.1.3.1.0 and Oracle SOA Suite 10.1.3.1.0.
    I would appreciate any help.
    Thanks a lot.

    user8116089 wrote:
    For some reason the first selectonechoice doesn't give me all the states that are in the database it gives me just the first 10.check the value of RangeSize for itarator in pageDef. in this case to show all items it must be set to -1
    Also there is a way to assign the first value of the first selectonechoice to null at the start.this is a problematic requirement since all items are bound to iterator and basically this should serve for navigation purpose so the first item is set as selected, but maybe some workaround exists...
    regards,
    Branislav

  • Help with linking combo boxes so that some options are made unavailable

    Hello!
    I'm having trouble setting up an interactive PDF form with multiple combo boxes.
    I have designed an interactive PDF form in InDesign CS6 but am doing the final preparation and formatting in Adobe Acrobat XI Pro.
    First of all, I am not sure if I should be using combo boxes or list boxes, but the combo box seemd to look better after I export the PDF and also left the field blank, ready for selection from the drop-down menu.
    Basically I have a list of drop-down lists, but not all combinations are compatible. For example, after maing "Selection 1" in "Combo box 1", I need only "Selection 1", "2", and "3" [out of the total 5] to be available in "Combo box 2".
    I need to be able to apply this algorhythm to the next few combo boxes as well.
    Moreover, I would need some of the checkboxes disabled [the user won't be able to check them at all]when I make a certain selection in some of the combo boxes.
    Needless to say, I don't know any Java, coding or making calculations in LiveCycle Designer, so I don't even know where to begin.
    I have attached a screen grab of my form and what I want to achieve.
    Any help would be very much appreciated.
    Thank you!

    If it is static data, I would suggest you to cache it rather than having it in each of the user session. You can have configuration/code to refresh when needed. Please look at any available caching frameworks (EhCache, OSCache etc...)

Maybe you are looking for

  • Applet Event Handler

    Would someone please help me. I am new to applet development and I get a compile error associated with the event handling in my first ever applet code as follows: C:\j2sdk1.4.2_01\bin>javac trajectory_j.java trajectory_j.java:248: illegal start of ex

  • Using Catalyst 3550 Switch with Linksys Home Router and Cable Internet

    I've about pulled what little hair I have out of my head on this one, and need some configuration help. I have a Cisco Catalyst 3550 switch with five Windows 7 desktops, an Avaya PBX and five Avaya IP phones attached.  All of these devices are on a 1

  • Can we upgrade our X300 6478-1TU with open-line 3G/HSPDA modem?

    I bought a Lenovo Thinkpad x300 (6478-1TU) in US and want to upgrade it with an embedded Sierra Wireless MC8775 PCI Express Mini Card specified in Lenovo's Hardware Manual which is compatible with the 3G GSM service provider system where I am based,

  • Cannot see all photos in my photo stream on iPhone 6

    IBjust upgraded to iOS 8.1 in hopes of being able to see the photos in my photo stream on iPhone 6.  I can only see a few of the photos from my photo stream mainly recent photos

  • Photos appear distorted/glitchy on web pages

    Hi all, For the past week or so, I've noticed that random images are being distorted while surfing the www using both Firefox and Safari. I'm using the most recent versions of both, and my OS is up to date. My iMac is the 2010 27" with 8GB ram. This