Adjusting Column Widths Via the CSS in 6.5+

It is pretty easy to adjust column widths in the CSS on 6.5+
One issue that we encountered that was slightly trickier (for non-css folks like me) was ensuring that the columns were set at 100% for the 2 column layouts.
The below code will set the narrow columns on 2/3 column layouts to be 200px wide, and ensure that the wide column maintains 100%
.columnOne               { text-align: left;}
.columnTwo               { text-align: center; }
.columnThree               { text-align: left;width:200; }
.layoutOneColumn               { table-layout: auto; }
.layoutOneColumn .columnOne     { width: 100%; }
.layoutTwoColumnNarrowWide     { table-layout: auto; }
.layoutTwoColumnNarrowWide .columnOne          { }
.layoutTwoColumnNarrowWide .columnOne .portletBody     {  }
.layoutTwoColumnNarrowWide .columnTwo .portletBody     { background-color: #FFFFFF; }
.layoutTwoColumnWideNarrow               { table-layout: auto; }
.layoutTwoColumnWideNarrow .columnOne .portletBody     { background-color: #FFFFFF; }
.layoutTwoColumnWideNarrow .columnTwo          {width: 200; }
.layoutTwoColumnWideNarrow .columnTwo .portletBody     { width: 200; }
.layoutThreeColumn                    { table-layout: auto; }
.layoutThreeColumn .columnOne               { }
.layoutThreeColumn .columnOne .portletBody          {  }
.layoutThreeColumn .columnTwo .portletBody          { background-color: #FFFFFF; }
.layoutThreeColumn .columnThree               { }
.layoutThreeColumn .columnThree .portletBody          {  }
/* Set the invisible image */
#portletColumnFormatter_0 img {width:200px;}
#portletColumnFormatter_1 img{width:100%;}
#portletColumnFormatter_2 img{width:200px;}

I don't understand?  I launch PSE 9 from the task bar.  This is the screen I get.
I've tried right clicking everything I can think of w/o success.
Once I click "organize", it's too late.  The organizer is coming up.
Maybe I don't know for sure what the "Organizer icon" is or where it is?  Or, maybe I shouldn't start it from the task bar?

Similar Messages

  • Why can't you adjust column width in pages for ipad?

    Why can't you adjust column width in pages for ipad?

    It's just one of the many, many features that have been removed. It all appears to be deliberate, not an oversight. Leave feedback for the Pages team using the link in the Pages menu.

  • Visual Composer 7.2 SP3 - Adjust column widths of ALV tables by end user

    Hello,
    we're using ALV tables with values coming out of function modules and queries.
    Unfortunately I can't see an opportunity to adjust column widths at runtime by the end user. This is in contrast to VC 7.0 using flex.
    Is there a way to archieve this?
    Kind regards
    Stefan

    Hello Stefan,
    This is a feature of Webdynpro Flex runtime. You can adjust column widths at Flex runtime in 720 SP3 also.
    This is not supported by Webdynpro HTML runtime.
    Regards,
    Talia

  • 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

  • How can i set the column width in the jtable?

    how can i set the column width in the jtable?
    can anybody send me a simple example??

    TableColumn column = table.getColumnModel().getColumn( columnIndex );
    column.setWidth( desiredColumnWidth);
    column.setMinWidth( desiredMinColumnWidth);
    column.setMaxWidth( desiredMaxColumnWidth);

  • 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);

  • Applescript/Pages and adjusting column width (and paragraph style)

    I was hoping that some someone might know how to adjust the width of individual columns in Pages using Applescript. It seems like it should be a simple task, and I can adjust the overall width/height of the table, but I haven't found a way to adjust the column width. Alternatively, I could have the program create the table in Numbers and copy/paste it into Pages, but I'd imagine that would get a bit messy and wouldn't allow me to use a hanging indent in the cells (to the best of my knowledge).
    Also, is there a way to adjust the paragraph style used by the text in the table? Otherwise, I could just use a templet and define the the default table style appropriately. (Though not the most elegant solution).
    Thanks in advance for your help!
    (In case it helps, the script I'm working on parses an unformatted inventory and parses it into paragraphs/tables.)

    Try this:
    set tableCount to 0
    --open file to be pased here, excluded for example
    tell application "Pages"
        activate
        set theDoc to (make new document)
        tell theDoc
            --makes paragraph styles used
            make new paragraph style with properties {name:"Folio", font name:"Times New Roman", font size:12, bold:true, alignment:left, space after:5, keep with next paragraph:true, space before:15}
            make new paragraph style with properties {name:"Place", font name:"Times New Roman", font size:12, bold:false, alignment:left, line spacing type:relative, line spacing:100}
            make new paragraph style with properties {name:"Description", font name:"Times New Roman", font size:12, bold:false, italic:true, alignment:left, line spacing type:relative, line spacing:100}
            make new paragraph style with properties {name:"Table", font name:"Times New Roman", font size:12, alignment:left, left indent:0.5, first line indent:0.0}
            --begin repeat, gathers MS info from one doc (unformatted) and writes it into another with formatting, setting variables directly for example
            set MSName to "new Manuscript"
            set MSPlace to "place where MS is stored"
            set MSDesc to "description of MS"
            set tableData to {{"folio", "title", "composer"}, {"", "subtitle", ""}, {"etc", "next", "next"}}
            --write paragraph information from earlier
            set currentPar to (make new paragraph at end of paragraphs with data MSName)
            set paragraph style of currentPar to "Folio"
            set currentPar to (make new paragraph at end of paragraphs with data MSPlace)
            set paragraph style of currentPar to "Place"
            set currentPar to (make new paragraph at end of paragraphs with data MSDesc)
            set paragraph style of currentPar to "Description"
            --create table, add data, and format
            tell application "System Events" to tell process "Pages"
                key code 125 using {command down} -- move the insertion point to the end
                tell menu bar 1
                    -- Insert a new table:
                    click menu item "Table" of menu 1 of menu bar item "Insert"
                    -- Delete the header row:
                    tell menu 1 of menu bar item "Format"
                        click menu item "Delete Row" of menu 1 of menu item "Table"
                    end tell
                    -- Show the Inspector:
                    tell menu 1 of menu bar item "View"
                        if menu item "Show Inspector" exists then
                            click menu item "Show Inspector"
                        end if
                    end tell
                end tell
                tell window 1 -- the Inspector window
                    click radio button 7 of radio group 1 -- select the Table Inspector
                    perform action "AXRaise" -- activate the Table Inspector
                    tell tab group 1 of group 1
                        click radio button "Table" -- select “Table”
                        -- Reduce width of all three columns:
                        repeat 3 times
                            set value of text field 2 to "0.5 in"
                            set focused of text field 2 to true
                            keystroke return
                            keystroke tab -- next column
                        end repeat
                        key code 126 -- the Up Arrow
                        -- Set width of each column:
                        repeat with theValue in {"0.75 in", "4.25 in", "1.5 in"}
                            set value of text field 2 to theValue
                            set focused of text field 2 to true
                            keystroke return
                            keystroke tab -- next column
                        end repeat
                        key code 126 -- the Up Arrow
                    end tell
                end tell
                keystroke "i" using {option down, command down} -- hide the Inspector
                -- Add the data:
                repeat with i from 1 to 3
                    set thisRow to item i of tableData
                    repeat with j from 1 to 3
                        keystroke (item j of thisRow)
                        if (i * j = 9) then exit repeat
                        keystroke tab
                    end repeat
                end repeat
            end tell
            set tableCount to tableCount + 1
            tell table tableCount
                select
                set stroke width to 0.0
                set wrap to center
                set name to MSName
            end tell
            --after which it would continue with the next MS and repeat the process until all are done
        end tell
    end tell

  • Auto adjust column width in multicolumn listbox

    Hi
    May I know, does multicolumn listbox has a function / control to auto adjust the column width?  If not, how can I solve this problem, as user could not view the full data if the width that I set is too small. It would be annoying if the user need to adjust it manually each time they get the data from database....
    Any advise??? TQQQQQ......

    Hello 222,
    I've already seen a few threads about "auto adjust multi-column listbox column width", as far as I can remember, there is not such option in LV 7.1 (I don't know about LV 8).
    Meanwhile I think there are option that can allow the user the modify column width at runtime. This plus an horizontal scrollbar should be the alternative... I know it is not "perfect" for the user.
    You also have the possibility to do a function that will compare the string length to the column width, and to programatically increase the width if needed.
    Personnaly I wouldn't go for this but this is your choice
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • How to adjust Column width using SHD0 for FB60

    Hi,
    How can adjust ( i have to reduce the length) Assignment filed in the FB60 transaction using SHD0.
    Please help in this regard.
    Regards,
    Kishore

    HI,
    I think you can adjust the column width and save it as Screen Variant in the SHD0.
    When you create a screen variant for the MIRO, adjust your column width and position than save it the variant. Once you save and activate the variant, it will appear in the Layout dropdown box on MIRO.
    OR
    Please check in spro with ur functional consultant to explore if the field can be made not mandatory..
    menu path:
    AR and AP -> Customer Accounts -> Line Items -> Display line items -> display line items without ALV

  • Suddenly cannot adjust table width via sizing handles

    I have found the cause of this, and it is rather bizarre:
    Using Structured FM, 10.0.2.419, on a Windows 7 Ultimate (32-bit) OS.
    Today I noticed I cannot resize table columns in the usual way, by selecting more than one row in the column and dragging the sizing handles that appear at the edge of the column.  The sizing handles appear there when rows are selected, but I cannot "grab" them.  Instead, when I try to click on a handle, the row selection is lost.  The table has no straddled columns or rows, no hidden/conditional text.  I have tried on several different types of tables all with the same non-result.  The document is otherwise editable.
    I am forced to use the Resize Column dialog box, which is not so fast or easy as just grabbing the column edge and visually adjusting it.
    I have rebooted my machine with no change in the problem.
    ====================
    Resolution:
    The problem appears to occur when I have various panels/pods open (and set to stay open, not iconify after use).  In this case I was working with conditional text, deleting some no-longer-used conditions from my documents.  I had three conditional text panels open in my workspace, ADD/EDIT CONDITION TAG, SHOW/HIDE CONDITIONAL TEXT, and CONDITIONAL TEXT.  The last two were "merged" into a single panel, and all panels were set permanently open using the double right-arrows in the panel dark frame at the top.
    It turns out when I collapse some or all of these open panels, I can select the table resize handles and adjust the column widths visually.  When I have all three pod panels expanded, the resize handles are ungrabbable.
    Forgive me if I'm not using "pod" and "panel" precisely accurately - I just use them (or more often try to work around them) rather than worrying about the names Adobe has chosen.  By giving users SO much flexibility, I personally think they have made an awful usability mess of the product.
    In any case, the problem seems to be solved, and I am posting this in case it can be helpful to anyone else.
    Thanks.
    -- garyZ

    This sounds like a bug. Please post a formal bug report here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform The engineers can't fix it if they don't hear about it.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices    

  • Change the column width on the fly

    Dear all,
    I have a problem, i have a matrix report, the row is "the project name" and the column is "the items" using within each project, and the problem is the items are variable from time to time the report run for each project, so its exceeds the paper width.
    And the question is, is there any way to change the width of the column on the fly, i mean dynamiclly change the column width each time the report is called to make all items fit the paper width.
    Thank u

    i don't think that we can change the layout of the column in reports
    The simple solution for that problem is that u have to
    fix the horizontal and vertical layout of the text item
    better is to post this problem at reports forum
    Najeeb

  • Change column width in the run time

    Hi, everyone:
    I have a form with a master and a detail block. The detail block has a tabular layout. I want the user of the form being able to ajust the width of the particular column(s) in the run time by, e.g. dragging the border of the column(s) to the left or to the right. I've seen the examples of these forms, but want to know how easy would it be to implement that.
    Thanks a lot.
    Eugene.

    Hi, everyone:
    I have a form with a master and a detail block. The detail block has a tabular layout. I want the user of the form being able to ajust the width of the particular column(s) in the run time by, e.g. dragging the border of the column(s) to the left or to the right. I've seen the examples of these forms, but want to know how easy would it be to implement that.
    Thanks a lot.
    Eugene.

  • How to increase size of individual column width in the filter screen of WAD

    Hello all ,
    Have a web application built in WAD. I have ran it  in portal and want to put the filter on material.When the filter screen displayed , I selected the filter value on material and added it to selections.  I am not able to see the full description of the material due to the width of the column is less which is hided to drag. Do we have any option to increase the individual column width in filter screen?
    Request you to respond .
    Regards,
    Lakshmi.

    Hi Vijay,
    Iam doing fine .Thank you.
    We tried different options in WAD . still it is not working . once the filter screen displayed in your report result (Portal) ,it will show you two tabs screen , will select and transfer the selections from left had side to right hand side.iam able to drag the left tab but not the right one due to iam not able to see the full description of info object.By dragging we can increase the full screen size but not the individual tab size.
    Regards,
    Lakshmi.

  • CSS: Centering via the CSS box model

    I have a page where I want a short line of text to center both horizontally and vertically. I've successfully used margin:0 auto in the past to center horizontally, but it's not working vertically. Any tips on why not and what route I should take?

    Murray *ACP* wrote:
    Better try that again....
    The code got stripped out by this wonderful Jives Forum System.  Try again, of course:
    1) HTML CODE:
     <div id="test">
    <p>The quick brown fox jumps over the lazy dog.  The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.  The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
    <p>The quick brown fox jumps over the lazy dog.  The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.  The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
    <p>The quick brown fox jumps over the lazy dog.  The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.  The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
    </div>
    2) The CSS code to go with it:
    #test {     border: 5px  double #eee;     display: table-cell;     background-color: blue;     color: yellow;     height: 600px;     width: 800px;     margin: 0 auto;     font-size: 16px;     vertical-align: middle;     text-align: center; }
    I hope this satifies Murray in all material respect.  Perhaps he should also complain to JIVES about their wonderful forum software which most people love to hate.  I will try to post a test page on a server in due course when I am at my real watertight desktop!  I don't want to be hacked!
    hth

  • Adjusting column width or disable word wrapping

    Dear,
    I am new at Sharepoint and need your help.
    I have a column in a list that is displaying the content like this:
    123125D-3423
    34343-998373
    -378373
    Since we correlate the information present in a same row in a sharepoint list, this wrapping is causing some confusion.
    Is it possible to disable the word wrapping?

    Hi Ricardoaor, easy method: make your column title like this "________________Column Title_____________"
    Harder method: use SharePoint Designer to increase the width of the column.
    cameron rautmann

Maybe you are looking for

  • ADDT multiple image upload: "error 500"

    Right now, I have managed to get the update record form wizard working, the right input ends up in the correct fields in the database. So I'm left fighting with the "multiple image upload", which gives me an "error 500" message (error connecting to s

  • Encoding in UNIX

    I am trying to print unicode characters from my java program to unix console, even though my default file encoding is UTF8, My character is printing garbage. here is my program and the output System.out.println(System.getProperty("file.encoding")); O

  • APD Failure with  Exception condition "OBJECT_NOT_FOUND" raised.

    Dear All, I am executing an APD in my system to clear the contents  of 2 of its Fields in a Master data by loading data to itself and initializing  the 2 fields that needs to be cleared off. I have executed the APD  few times and am getting the same

  • No email addresses with web site hosting?

    From what information I've seen, email addresses are not included in the web hosting part of creative cloud? Why? I think many of assume that's included in most ISP hosting plans, whether or not it's charged for separately. If true, I hope Adobe will

  • My ipod 2nd generation will not work because I forget my passcode

    I am trying to wipe my ipod