Setting Sidebar's Width to Zero?

Does someone know a way to set permanently the sidebar's width, and forall Finder windows?
This question has already been asked in the past and didn't receive a positive answer as far as I know. There doesn't seem to be a global variable anywhere, either in System Preferences, Finder Preferences or any of the .plist files.
There is a way to do this through AppleScript, but I wanted to know if anybody had an easier solution for this.
(BTW, the AppleScript I now have is a folder action... and it works. One must add the action to each folder though... So I still have to do some work to automatically add the action to the folder when it is created.)

Setting the sidebar to "zero"? In other words you
want to simply eliminate the sidebar in all Finder
windows? A double-click on the small dimple in the
center between your sidebar and the first column
should do it?
Oh yes, I know about that, macjack. Or I could drag it until it is hidden ("closed"). The problem with this is that it is not a global variable, nor is it an inherited one.
So, each time I create a new folder and open it, this folder's window has a sidebar, which I may not see if I chose "Open folders in the same window" AND created a new folder inside an existing one. Drag this folder to the desktop however, or simply create a new folder on the desktop, the sidebar is there.
Each folder remembers its window's sidebar status, but this is a case by case affair, not a global one.
Since seeing the sidebar may well be a matter of personal taste or working conditions, it would be fun to have a handle on a global variable managing this. I've looked at both com.apple.systempreferences.plist and com.apple.sidebars.plist, but to no avail. There is no such global variable as far as I can see.
The Finder will allow you to choose if you want column view or not as a general rule, but nothing about the sidebars...
RGauthier
G5 1.8Dual, 2GB RAM   Mac OS X (10.4.8)   20" App Dsplay, ext. Lacie, iPod, Bach on Al-Lansing, Canon 5D, Canon L glass

Similar Messages

  • Set sidebar width of (Finder window 1) to 0 - (no longer working for me)

    on script_title()
    Filename : finderwindowprops.scpt (Script Debugger)
    Author : Bill Hernandez
    Version : 1.0.0
    Updated : Thursday, December 14, 2006 ( 6:01 PM )
    end script_title
    -- ---------+---------+---------+---------+---------
    on script_notes( )
    Setting the sidebar width for finder windows is not working consistently,
    nor correctly for me. I had written several scripts to standardize the
    display of windows on screen several months ago, and they have quit working
    during the last couple of versions of the OS, not sure what has happened ?
    end script_notes
    -- ---------+---------+---------+---------+---------
    on run
    tell me
    set this_folder to (path to current user folder)
    SetupWindow(this_folder)
    if (ChooseTest() = 1) then
    TestOne(this_folder)
    else
    TestTwo(this_folder)
    end if
    set str to ""
    set str to str & "The Sidebar Width Should be Zero" & return & return
    set str to str & "It had worked well several months ago when I was doing some "
    set str to str & "window stacking, but it seems to be broken for me..." & return & return
    set str to str & "iMacG5 running OSX 10.4.8" & return & return
    ShowMsg(str, 10)
    end tell
    end run
    -- ---------+---------+---------+---------+---------
    on SetupWindow(whichFolder)
    tell application "Finder"
    activate
    set counter to 1
    try
    open whichFolder
    select Finder window 1
    on error
    set win to make new Finder window
    end try
    set bounds of (Finder window counter) to {20, 60, 700, 700}
    set current view of (Finder window counter) to icon view
    set toolbar visible of (Finder window counter) to true
    set sidebar width of (Finder window counter) to 300
    set w_props to get properties of Finder window 1
    set str to ""
    set str to str & "The Sidebar Width Should be 300" & return & return
    set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
    my ShowMsg(str, 0)
    end tell
    end SetupWindow
    -- ---------+---------+---------+---------+---------
    on TestOne(whichFolder)
    tell application "Finder"
    activate
    set counter to 1
    try
    open whichFolder
    select Finder window 1
    on error
    set win to make new Finder window
    end try
    set bounds of (Finder window counter) to {20, 60, 600, 600}
    set current view of (Finder window counter) to list view
    set toolbar visible of (Finder window counter) to true
    set sidebar width of (Finder window counter) to 0
    set w_props to get properties of Finder window 1
    set str to ""
    set str to str & "The Sidebar Width Should be Zero" & return & return
    set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
    my ShowMsg(str, 0)
    end tell
    end TestOne
    -- ---------+---------+---------+---------+---------
    on TestTwo(whichFolder)
    tell application "Finder"
    activate
    set w_props to {}
    set w_props to w_props & {sidebar width:0}
    set w_props to w_props & {current view:list view}
    set w_props to w_props & {toolbar visible:true}
    set w_props to w_props & {statusbar visible:true}
    set w_props to w_props & {bounds:{20, 60, 400, 600}}
    try
    open whichFolder
    select Finder window 1
    on error
    set win to make new Finder window
    end try
    set w_ref to Finder window 1
    set properties of w_ref to w_props
    set w_props to get properties of Finder window 1
    set str to ""
    set str to str & "The Sidebar Width Should be Zero" & return & return
    set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
    my ShowMsg(str, 0)
    end tell
    end TestTwo
    -- ---------+---------+---------+---------+---------
    on ChooseTest()
    tell application "Finder"
    activate
    set s to ""
    set s to s & "The sidebar width is inconsistent no matter which method I use." & return & return
    set s to s & "Sometimes there is a sidebar, sometimes there is none, particularly "
    set s to s & "with a window that already exists." & return & return
    set s to s & "Method one seems to work better, but does not always hide the sidebar." & return & return
    set s to s & "Please select a choice..."
    set b1 to "TestOne"
    set b2 to "TestTwo"
    set aReturn to display dialog s buttons {b1, b2} default button {b2}
    if (button returned of aReturn = b1) then
    return 1
    else
    return 2
    end if
    end tell
    end Choose
    -- ---------+---------+---------+---------+---------
    on ShowMsg(s, howLong)
    tell application "Finder"
    activate
    if (howLong = 0) then
    set theTIme to 3
    else
    set theTIme to howLong
    end if
    set b1 to "OK"
    display dialog s buttons {b1} default button {b1} giving up after theTIme
    end tell
    end ShowMsg
    -- ---------+---------+---------+---------+---------

    This is a re-post since I learned how to format the output a little nicer...
    on script_title()
       Filename : finderwindowprops.scpt (Script Debugger)
       Author : Bill Hernandez
       Version : 1.0.0
       Updated : Thursday, December 14, 2006 ( 6:01 PM )
    end script_title
    -- ---------+---------+---------+---------+---------
    on script_notes()
       Setting the sidebar width for finder windows is not working consistently,
       nor correctly for me. I had written several scripts to standardize the
       display of windows on screen several months ago, and they have quit working
       during the last couple of versions of the OS, not sure what has happened ?
    end script_notes
    -- ---------+---------+---------+---------+---------
    on run
       tell me
          set this_folder to (path to current user folder)
          SetupWindow(this_folder)
          if (ChooseTest() = 1) then
             TestOne(this_folder)
          else
             TestTwo(this_folder)
          end if
          set str to ""
          set str to str & "The Sidebar Width Should be Zero" & return & return
          set str to str & "It had worked well several months ago when I was doing some "
          set str to str & "window stacking, but it seems to be broken for me..." & return & return
          set str to str & "iMacG5 running OSX 10.4.8" & return & return
          ShowMsg(str, 10)
       end tell
    end run
    -- ---------+---------+---------+---------+---------
    on SetupWindow(whichFolder)
       tell application "Finder"
          activate
          set counter to 1
          try
             open whichFolder
             select Finder window 1
          on error
             set win to make new Finder window
          end try
          set bounds of (Finder window counter) to {20, 60, 700, 700}
          set current view of (Finder window counter) to icon view
          set toolbar visible of (Finder window counter) to true
          set sidebar width of (Finder window counter) to 300
          set w_props to get properties of Finder window 1
          set str to ""
          set str to str & "The Sidebar Width Should be 300" & return & return
          set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
          my ShowMsg(str, 0)
       end tell
    end SetupWindow
    -- ---------+---------+---------+---------+---------
    on TestOne(whichFolder)
       tell application "Finder"
          activate
          set counter to 1
          try
             open whichFolder
             select Finder window 1
          on error
             set win to make new Finder window
          end try
          set bounds of (Finder window counter) to {20, 60, 600, 600}
          set current view of (Finder window counter) to list view
          set toolbar visible of (Finder window counter) to true
          set sidebar width of (Finder window counter) to 0
          set w_props to get properties of Finder window 1
          set str to ""
          set str to str & "The Sidebar Width Should be Zero" & return & return
          set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
          my ShowMsg(str, 0)
       end tell
    end TestOne
    -- ---------+---------+---------+---------+---------
    on TestTwo(whichFolder)
       tell application "Finder"
          activate
          set w_props to {}
          set w_props to w_props & {sidebar width:0}
          set w_props to w_props & {current view:list view}
          set w_props to w_props & {toolbar visible:true}
          set w_props to w_props & {statusbar visible:true}
          set w_props to w_props & {bounds:{20, 60, 400, 600}}
          try
             open whichFolder
             select Finder window 1
          on error
             set win to make new Finder window
          end try
          set w_ref to Finder window 1
          set properties of w_ref to w_props
          set w_props to get properties of Finder window 1
          set str to ""
          set str to str & "The Sidebar Width Should be Zero" & return & return
          set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
          my ShowMsg(str, 0)
       end tell
    end TestTwo
    -- ---------+---------+---------+---------+---------
    on ChooseTest()
       tell application "Finder"
          activate
          set s to ""
          set s to s & "The sidebar width is inconsistent no matter which method I use." & return & return
          set s to s & "Sometimes there is a sidebar, sometimes there is none, particularly "
          set s to s & "with a window that already exists." & return & return
          set s to s & "Method one seems to work better, but does not always hide the sidebar." & return & return
          set s to s & "Please select a choice..."
          set b1 to "TestOne"
          set b2 to "TestTwo"
          set aReturn to display dialog s buttons {b1, b2} default button {b2}
          if (button returned of aReturn = b1) then
             return 1
          else
             return 2
          end if
       end tell
    end ChooseTest
    -- ---------+---------+---------+---------+---------
    on ShowMsg(s, howLong)
       tell application "Finder"
          activate
          if (howLong = 0) then
             set theTIme to 3
          else
             set theTIme to howLong
          end if
          set b1 to "OK"
          display dialog s buttons {b1} default button {b1} giving up after theTIme
       end tell
    end ShowMsg
    -- ---------+---------+---------+---------+---------

  • REP-1219: 'F_MONTH' has no size -- length or width is zero.

    Dear all,
    I want to create a .lis file through form call report. The statements in form are as below:
    lv_report_id := 'FAR017A';
    P_List := CREATE_PARAMETER_LIST(lv_report_id);
    if :ctl_blk.destype = 'FILE' then
    ADD_PARAMETER(P_LIST,'desformat', TEXT_PARAMETER,'wide180');
    ADD_PARAMETER(P_LIST,'mode', TEXT_PARAMETER, 'Character');
    ADD_PARAMETER(P_LIST,'desname', TEXT_PARAMETER,:global.path || lv_report_id || '.LIS');
    end if;
    ADD_PARAMETER(P_LIST,'destype', TEXT_PARAMETER,:ctl_blk.destype);
    ADD_PARAMETER(P_LIST,'p_company_id', TEXT_PARAMETER,:global.company_id);
    ADD_PARAMETER(P_LIST,'p_goods_no_from', TEXT_PARAMETER,NVL(:ctl_blk.goods_no_from,'00000000'));
    ADD_PARAMETER(P_LIST,'p_goods_name_from', TEXT_PARAMETER,:ctl_blk.goods_name_from);
    ADD_PARAMETER(P_LIST,'p_goods_no_to', TEXT_PARAMETER,NVL(:ctl_blk.goods_no_to,'99999999'));
    ADD_PARAMETER(P_LIST,'p_goods_name_to', TEXT_PARAMETER,:ctl_blk.goods_name_to);
    ADD_PARAMETER(P_LIST,'p_yymm', TEXT_PARAMETER,wrk_c1);
    ADD_PARAMETER(P_LIST,'P_WHERE_CLAUSE', TEXT_PARAMETER,vWhere);
    ADD_PARAMETER(P_LIST,'P_ZONE_CODE_TITLE', TEXT_PARAMETER,:ctl_blk.zone);
    ADD_PARAMETER(P_LIST,'p_cyear', TEXT_PARAMETER,:ctl_blk.accnt_cyear);
    ADD_PARAMETER(P_LIST,'p_month', TEXT_PARAMETER,NVL(:ctl_blk.accnt_period,SUBSTR(TO_CHAR(TRUNC(SYSDATE),'YYYYMM'),5,2)));
    ADD_PARAMETER(P_LIST,'paramform', TEXT_PARAMETER, 'no');
    RUN_PRODUCT(REPORTS, :global.path||lv_report_id||'.rep', SYNCHRONOUS, RUNTIME, FILESYSTEM, P_LIST);
    DESTROY_PARAMETER_LIST(P_List);
    When I press the button to produce the .lis file, I read the message in the report server log:
    Starting report FAR017A [Fri Jul 25 17:06:32 2003] ...
    REP-1219: 'F_MONTH' has no size -- length or width is zero.
    End report FAR017A [Fri Jul 25 17:06:34 2003].
    I have no idea what "has no size" means, does any know how to solve this problem?
    Thanks for your help in advance!!!
    Joseph

    rwconverter.exe is a separate executable(It is rwcon60.exe)
    1.Invoke rwconverter.exe executable.
    2. In the conversion page:
    a. Set document type to Report.
    b. Set Source Type to Report Binary File (RDF).
    c. Set Source to the name of the existing bit-mapped report, example "old.rdf"
    d. Set Destination Type to Report Binary File (RDF).
    e. Set Destination to the name of the new character-mode report, example "new.rdf".
    4. On the options page, set Destination Unit to Character.
    5. Click OK. This will convert the report to character mode repot.
    6. Use this new.rdf in your forms application. You don't need add any parameter. Just make sure you use this new report.
    This should solve the problem. If you still get the error, open the report and resize the field which gives the error.
    Regards,
    Siva

  • REP-1219 : 'Body' has no size - length or width is zero

    Hi.
    I am using reports 6i (6.0.8.11.3). There is a report which runs
    successfully, and suddenly after adding some fields to the
    layout, it start giving the error :-
    REP-1219 : 'Body' has no size - length or width is zero
    I have checked everything in the layout and it appears to be
    perfectly fine. In fact i have faced this problem several times
    on Reports 6i.
    Any help?
    Thanks

    There are two sets of circumstances that have caused this error
    for me.
    Firstly, when I have tried to run an .rdf that was written under
    version 2.5 or earlier of reports and I did not use the r25mrep
    executable to migrate the .rdf.
    Secondly, when a report is run in character mode it resizes and
    aligns objects to the nearest point on a grid 'x' characters in
    width and 'y' in height. If an objects top edge gets rounded
    down and the bottom edge gets rounded up, to the same point on
    the grid, then the object has no height or width and the error
    happens.
    Paul

  • REP-1219: 'MAIN_GRPFR' has no size -- length or width is zero.

    Hi ,
    I am working in reports 6i.I have a problem in character reports .I am modifying old character reports that is i am adding new data at the end.In my old report the report was extended to 154 vertically now i added some data and it increased to 200
    The report running fine in report builder but when i am trying to run the report in unix it is throwing an error
    REP-1219: 'MAIN_GRPFR' has no size -- length or width is zero.
    if the length is reduced from 200 to 154 it is running fine.Do i need to modify any properties of report height and width.
    report height =66
    width=120 in old one
    Really urgent ...
    Thanks in advance

    rwconverter.exe is a separate executable(It is rwcon60.exe)
    1.Invoke rwconverter.exe executable.
    2. In the conversion page:
    a. Set document type to Report.
    b. Set Source Type to Report Binary File (RDF).
    c. Set Source to the name of the existing bit-mapped report, example "old.rdf"
    d. Set Destination Type to Report Binary File (RDF).
    e. Set Destination to the name of the new character-mode report, example "new.rdf".
    4. On the options page, set Destination Unit to Character.
    5. Click OK. This will convert the report to character mode repot.
    6. Use this new.rdf in your forms application. You don't need add any parameter. Just make sure you use this new report.
    This should solve the problem. If you still get the error, open the report and resize the field which gives the error.
    Regards,
    Siva

  • Help with setting up full width site?

    Hello!
    I'm new, Been following a lot of videos. I'm mainly interested in creating a full width or full screen parallax site like:
    http://leicastorela.com/
    I'm getting stuck on the initial NEW SITE DIALOG. I'm setting 1100 as width, 500 as height. I've zeroed out the gutters, padding etc. But when I preview I still get gray bars on the side? See screen shot.
    What should I set the NEW SITE parameters as to achieve the full screen look? Thank you
    PS: I even tried extending the menu bar all the way past the gray bars, same results. I'm on 7.3. I notice when I stretxh the black bar to the edge it does not say 100%? I think I'm on the latest version. I know that feature is new?

    When you want to create a full sceen effect you have to extend your object/image outside the page size to the
    ends of the grey area. See attached image.
    Make sure you see the red lines appear on each side of the page when you extend your artwork to the edge.
    This effect works for base objects for photos make sure you have "scale to fill" marked when inserting
    it in a box.

  • Setting different pages widths in different sections - Pages 5.2

    In Pages 5.2, how does one set different page widths (margins) in different sections?

    You can't. Margins apply to the entire document.
    What you can do is set the margins to their max width and then use left and right indents for the sections you want narrower.
    Peter

  • Is there any way to set default column widths in the Finder's Column view

    When my Finder windows open in column view, all the columns are always VERY wide. I have to then spend time resizing them to a managable width. Is there any way to set default column widths in the Finder's Column view?
    <Re-Titled By Host>

    No, because you can't set a columns view default.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • OLE2 how to set a column width of an excel file i'm creating?

    how can i set the column width in an excel file i'm creating with ole?
    or even, haw can i set the auto-fix properties?

    Hallo !
    SORRY MY ENGLISH is very BAD.
    I tried to set page header and  footer in Excel sheet with abap ole
    DATA : BEGIN OF enter,
             x(1) TYPE x VALUE '0D',
            END OF enter.
    DATA : format(255) TYPE c.
    FORM set_page_sheet.
      CALL METHOD OF excel 'ActiveSheet' = sheet.
      CALL METHOD OF sheet 'PageSetup' = pagesetup.
      SET PROPERTY OF pagesetup 'Orientation' = xllandscape.
      SET PROPERTY OF pagesetup 'PrintTitleRows' = '$9:$12'.
      CLEAR format.
    ERROR
      CONCATENATE 'PAGESHEET' enter-x 'PAGE &P/&N' INTO format.
    ERROR
      SET PROPERTY OF pagesetup 'RightHeader' = format.
      CLEAR format.
      CONCATENATE ' Text 1 ' enter-x 'Text 2'
    enter-x 'Text 3 ' INTO format.
      SET PROPERTY OF pagesetup 'RightFooter' = format.
      FREE OBJECT pagesetup.
    ENDFORM.                    " set_page_sheet
    Activate report -
    ERROR - The enter-x must by data type c or another then data type x
    Thanks for answer.

  • How to set displayed column width for a search help

    I have created an elementary search help for a custom field with a value table behind it.
    The search help functions correctly, but when displayed the column widths are all 10 characters. The user has to adjust the column to view the descriptive text.
    Can anyone tell me how to set default column widths for the help?

    Please  open you Elementary search  help  and see the Column  width   behind the Fields of your ...there  increase the width of the fields
    "Activate it  and refresh
    reward  points if it is usefull .....
    Girish

  • How to set the column width in the PDF exports of interactive reports ?

    Hello,
    I have a huge problem with the PDF export for the Interactive reports. I'm using APEX 3.2.
    I have to produce a PDF report in landscape format that show 21 columns. My problem is that the columns have a ridiculous short width and that the text inside the columns do not wrap in the columns. So I get things like that :
    Date Name
    2011 Leina
    I should see 2011-08-01 and the name Leinad Jan
    I tried several things to format the columns, but none of the them has any effect on the PDF itself.
    1) I used HTML code in the report query. It works well with the interactive report, but display the HTML tags in the PDF.
    2) I used css to set the width of my columns. It works in the interactive report, but not in the PDF, the column width do not change.
    It's like the report do not notice that my page format is Legal 14 x 8.5 (Landscape) and still believe it's 8.5 x 11 (which is "portrait")
    Do you have any idea so set the columkn widths in the reports ?
    Thank you !
    Edited by: leinadjan on Aug 1, 2011 11:15 AM

    To "remember" the column widths, add a mouse listener to the table header. Upon mouseReleased(), get the column widths and save them to your file. When the application starts next time, get the stored widths and set them using:
    table.getColumn("XXX").setPreferredWidth(...);
    By default, your columns are adjustable, but you can use:
    table.getTableHeader().setResizingAllowed(true);

  • How to set a specific width to all the TextInputs used in a mxml file on its creation complete?

    How to set a specific width to all the TextInputs used in a mxml file on its creation complete?

    Hi subhajit nag,
    I think the best approach would what I say is if you can make use of a Global variable or using a Singleton class having a variable which can be accessed globally through out the application.
    Below is the sample what I am talking to:
    So in below example you can access the variables textInputWidth and textInputHeight globally throghout the application since you have decalred them in main mxml file.
    You can access these variabled in another mxml file as Application.application.textInputWidth and Application.application.textInputHeight. So if at all you are required to modify these values you are only required to modify at a single place in main mxml file..thats it.
    If you are use any Singleton classes like ModelLocator you can place these variables in this class and refer from that class.
    Hope this resoved your problem..
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
    <mx:Script>
      <![CDATA[
       [Bindable]private var textInputWidth:int = 250;
       [Bindable]private var textInputHeight:int = 25;
      ]]>
    </mx:Script>
    <mx:Canvas id="canvas1">
      <mx:TextInput id="txt1" width="{textInputWidth}" height="{textInputHeight}"/> 
    </mx:Canvas>
    <mx:Canvas id="canvas2">
      <mx:TextInput id="txt2" width="{textInputWidth}" height="{textInputHeight}"/> 
    </mx:Canvas>
    <mx:Canvas id="canvas3">
      <mx:TextInput id="txt3" width="{textInputWidth}" height="{textInputHeight}"/> 
    </mx:Canvas>
    <mx:TextInput id="txt4" width="{textInputWidth}" height="{textInputHeight}"/>
    <mx:TextInput id="txt5" width="{textInputWidth}" height="{textInputHeight}"/>
    </mx:Application>
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari 

  • Can you set a minimum width?

    Is there any way to set a minimum width for any point on the image that you're producing or already produced?

    Illustrator does not hava a find the stroke with the smallest width command, so you will have to locate that manually. Suppose the line you find is 1mm thick. You would scale all your artowrk 150% with scale strokes & effects on. Then double click on scale tool and turn off scale strokes and effects and enter 66.67%
    Your result will be all your strokes will be 150% their original size.
    Now if your artwork has nto storkes, you will have to add strokes to the atrwork to fatten everythign up for silk screen.
    Also if you want to just change all your 1. mm strokes to 1.5, you can select an element with a 1.0 mm stroke, use select >> same stroke  Weight , and then change the width to 1.5mm.

  • New to portal: Setting the column width in portal QBE report

    I'm trying to set different widths to different columns in the QBE report. One of the columns in the report contains long descriptive text. With the default column width the reports runs into many pages and user has to scroll a lot. I would like to set the column width for this column so that it does not wrap for every 2/3 words. In the customization tab, I'm setting the width type to "Char" and selecting the number of characters to be displayed in that coulmn. Percent/pixel width type also didn't help. Should I set the Header width also?. I'm not sure where to set this header column width.QBE report just ignores these customization parameters and displays the report in default format. Please let me know if you have any idea/solution to this problem.
    Thanks
    Surya

    Hi,
    This is a bug and has been fixed 30984.
    Thanks,
    Sharmila

  • How to set a fixed width for a box

    Hi there,
    Struggling here.... must admit. 
    I need a solution whereby I can set a fixed width for a box that is grouping two buttons.  I suppose generally, I want to know how to set a fixed width for anything element.
    See the picture below.  I want the two buttons to stay the same distance apart, and I want the grouped buttons to stay the same distance from the right edge of the window, even as a user resizes the window.
    This is what happens when you reduce the size of the window .....
    I would like to stop this from happening.
    I can't figure out how accomplish keeping the parent div a fixed width, and a fixed position from the right side of the window, so the buttons won't overlap.
    Perhaps I'm doing the whole thing wrong. 
    I mean, is there a way to accomplish this without grouping the buttons?  That is, make the buttons fixed width, fixed distance apart from each other, and fixed distance from the right side of the window, even as the user resizes the page?
    I am trying to accomplish this using the Min/Max width settings, but given that there are so many different units to choose from, and the fact that when I place a button or box on the screen, it seems to be creating that button or box with a percentage-based width, I don't know how many pixels to set it to.... sigh....
    Many thanks in advance for your help.
    Sam

    Okay after much futzing I figured out at least part of the solution I need, but if someone knows of a more efficent way to do this please let me know. 
    I set a fixed minimum width in pixels for both of the buttons at 156px.
    I then made the left button float left and the right button float right.
    I then made the parent div for the buttons float right.
    That made the buttons stay the same size.
    The only thing I need to figure out how to do now is make the parent div stay a consistent distance in pixels from the right.  I tried setting a right margin but that didn't work.  As you size the window down, the div gets closer to the edge, until it passes it.  

Maybe you are looking for