2-col to 3-col

My site in DW CS4 with templet index.dwt (home page) is a 2-col liquid header.  Can I convert the entire site to a 3-col liquid header without recreating all the pages?

-  In #container, does the "width: 990px; /**fixed width**/*" change the way the space will behave in different browsers since this is a "liquid" template?
Yes.  Your liquid layout isn't working well.  Resize browser  viewport to 800px and you'll see what I mean.  By changing from liquid layout to fixed-width, you'll have far fewer problems managing your layout. And your page will display centered on all displays greater than 990px.
-  On the #sidebar1, I already have CSS code for "*padding:  15px 0;"  Is the "6em 0;" that different?    
Yes.  I moved the menu down to put more focus on content.
   Why "background-color: maroon;* I didn't necessarily want to change the background color on the left space. Does this change just the menubar   itself or the background color from top to bottom in this entire left side space?
I put a background color on the sidebar1 for demonstration purposes.  You can change it to whatever you wish.
This doesn't change the menu.  Neither does it make the sidebar equal height with content.  For that you must use a repeating 2-toned background image and faux columns method.
http://alt-web.com/TEMPLATES/2-column-fixed-width-template.shtml
-  In #mainContent, is it the *margin: 25%; that keeps the text from wrapping under the sidebar?
Margin: top | right | bottom | left.   25% left margin keeps #mainContent from wrapping.
   Does the "border-left: 5px double gold;* create a vertical line between the maincontent and the sidebar1 area all the way to the page bottom?
A vertical line, yes.  All the way to the bottom of the page depends on how much content there is.
-  Even though I don't want the text to fill the left 24% of the #container, I do want to use this space for ads, links, entry field, etc.  Does the space below the sidebar and to the left of the maincontent div become usable for various functions with these coding changes?
Sure.  Just put ads or links inside #sidbar1 and below your menu.
Good luck,
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    Hi,
    Use NVL or COALESCE:
    NVL (col_a, col_b)
    Returns col_a if col_a is not NULL; otherwise, it returns col_b.
    Col_a and col_b must have similar (if not identical) datatypes; for example, if col_a is a DATE, then col_b can be another DATE or it can be a TIMESTAMP, but it can't be a VARCHAR2.
    For more about NVL and COALESCE, see the SQL Language manual: http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions119.htm#sthref1310
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • Bug in "SELECT @sResult = CASE_WHEN LEN(@sResult) = 0 THEN col ELSE @sResult + ',' + col END "

    Hello, I want to
    report a bug in all versions of SQL
    Server
    The database I
    set collation: SQL_Czech_CP1250_CI_AS
    The following script
    will return 3:
    DECLARE @sResult nvarchar(4000) -- variable to store the resulting string
    DECLARE @tab table(col varchar(10) , id int)
    --DECLARE @tab table(col nvarchar(10) , id int) -- It works well, but the column in the database is varchar
    SET @sResult = ''
    insert into @tab(col, id) values ('1',1)
    insert into @tab(col, id) values ('2',2)
    insert into @tab(col, id ) values ('3',3)
    SELECT @sResult = CASE WHEN LEN(@sResult) = 0 THEN col ELSE @sResult + ',' + col END
    FROM
    @tab
    ORDER BY id,col -- works incorrectly
    --ORDER BY col -- works incorrectly
    --ORDER BY id -- works correctly
    SELECT @sResult
    When I set
    the database Collation: Czech_CI_AS, the script
    returns the correct result: 1,2,3.
    Stanislav Skalický
    pracovník IT
    EFG CZ spol. s r.o.
    Na Jarově 4, 130 00 Praha
    Tel.:     +420 222 746 337
    Mobil: +420 775 864 814
    Czech Republic

    That is not a good way to concatenate a comma delimited string. There are known issues with the method. 
    DECLARE @sResult nvarchar(4000) -- variable to store the resulting string
    DECLARE @tab table(col varchar(10) , id int)
    SET @sResult = ''
    insert into @tab(col, id) values ('1',1)
    insert into @tab(col, id) values ('2',2)
    insert into @tab(col, id ) values ('3',3)
    SELECT @sResult = CASE WHEN LEN(@sResult) = 0 THEN col ELSE @sResult + ',' + col END
    FROM
    @tab
    -- ORDER BY id,col -- 1,2,3
    -- ORDER BY col -- 1,2,3
    -- ORDER BY id -- 1,2,3
    -- ORDER BY col COLLATE SQL_Czech_CP1250_CI_AS -- 3
    -- ORDER BY id, col COLLATE SQL_Czech_CP1250_CI_AS -- 3
    -- ORDER BY col COLLATE Czech_CI_AS -- 3
    -- ORDER BY newid() -- 3
    -- no ORDER BY 1,2,3
    SELECT @sResult
    Use the XML PATH method instead:
    http://www.sqlusa.com/bestpractices/training/scripts/commadelimitedlist/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Qualify row_number over(Partition by col order by col) and char2hexint() functions in informatica

    How to implement qualify row_number over(Partition by col order by col) and char2hexint in informatica in a way that is supported by pdo?
    Apart from sql overriding or using stored procedure ,is there any other solution?Can rank transformation help here? ....But, I guess rank transformation cannot be pushed down..
    help please !

    Hi Saichand,
    The links were helpful. But i am not getting how it is working in test and not in live.
    I found one difference while deploying . The column names of the object both in Test and Production had spaces.For E.g: Full Name
    When this column Full Name is pulled to the repsository in test , it automatically put double quotes for the column names in the physical sql when it hits the database.
    But, In production , when I pulled the column the report gave error as Invalid Identifier since OBIEE generated column name as Full Name without double quotes.
    Then I changed the column in Phyiscal Layer repository by having double Quotes for all columns. Afte that report worked fine.
    Whether this has caused any issue in Row Partition.
    Is there any setting to have column name in Double Quotes ?
    Thanks,
    Johnny

  • Getting the average of two cols into third col when user inserts or updates

    I hav a table with three column a,b,c.
    now i have to insert the average of the col a & b into c when user inserts or updates
    any of the row?
    i tried using row level trigger for this but not workin fine..
    can anybody of u give me an idea as how to proceed?
    thanks in advance..

    Sorry to be late to reply....
    actually..for the trigger i used i got a mutating error.
    if there is any other option for doing this,u teel me how.
    i used the followin trigger and placed AT to avoid the mutating error.But still
    create or replace trigger trg_xyz after insert or update of m1,m2
    on xyz for each row
    declare
    v1 number;
    pragma autonomous_transaction;
    begin
    v1 := (:new.m1+:new.m2)/2;
    if inserting then
    update set m3=v1 where m2=:new.m2 and m1=:new.m1;
    elsif updating then
    update set m3=v1 where m2=:new.m2 and m1=:new.m1;
    end if;
    commit;
    end;
    this does not throw any error, but doesnt inserts the value.i checked using dbms_output..i showed the average value for v1..but its not updating..

  • Hide zero rows - have values in hidden col, but formula col in rpt is -0-

    In Hyperion Reporting Studio, I have a report that's set up as follows:
    Row1: Descendants of Projects
    Columns: A - C are data columns (hidden)
    D - formula [A] - - [C] (shown on report)
    Basic suppression is chosen for row1. In the report, column D still shows any projects with -0- value. What settings do I need to use to suppress any rows where the formula (col D) = 0?
    I've been going in circles with the Advanced Options, rounding, etc.
    Thanks in advance for any help.

    Basic suppression is chosen for row1. In the report, column D still shows any projects with -0- value. What settings do I need to use to suppress any rows where the formula (col D) = 0?From above what I can understand is that you want to suppress row when formula(col D)=0. Is so then this can be done by Using the Advanced Option in Conditional Suppression "Suppress Row If Data/FormulaValue in Cell" say D,1 Is Zero.

  • Help - column that would show col A or Col B val based on presentation var

    We are having difficulty in getting this to work.
    Here is what we have in the column formula:
    CASE WHEN @{variables.nabc}='Mgmt $' THEN SR_QUOTA_ACHIV_AGGR.MGMT_DOLLARS_MTD_AMT ELSE SR_QUOTA_ACHIV_AGGR.LGL_DOLLARS_MTD_AMT
    We get Syntax error.
    The variable is set in the prompt using a fake SQL
    SELECT CASE WHEN 1=0 THEN SR_QUOTA_ACHIV_AGGR.MGMT_DOLLARS_MTD_AMT ELSE 'MGMT $' END FROM ROAD_RUNNER UNION ALL SELECT CASE WHEN 1=0 THEN SR_QUOTA_ACHIV_AGGR.LGL_DOLLARS_MTD_AMT ELSE 'LGL $' END FROM RPT_TBL
    Any help will be greatly appreciated.

    tHEHi,
    Thanku for reply.
    I used the same approach what did u reply. But still i am facing the similar issue once i say ok to the query.
    It is showing the following error:-
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <,>: Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: {call NQSGetQueryColumnInfo('SELECT CASE WHEN ''MGMT $''=''MGMT $'' THEN SR_QUOTA_ACHIV_AGGR.MGMT_DOLLARS_MTD_AMT ELSE SR_QUOTA_ACHIV_AGGR.LGL_DOLLARS_MTD_AMT, GEO_DIM.AREA, GEO_DIM.AREA_DESC, ORDER_SPLIT.BOOKED_DT, ORDER_SPLIT.ORD_SHIP_TO_SITE_CITY, ORDER_SPLIT.ORD_SHIP_TO_SITE_NBR, ORDER_SPLIT.ORD_SOLD_TO_SITE_CITY, ORDER_SPLIT.ORD_SOLD_TO_SITE_NBR, SR_QUOTA_ACHIV_AGGR.PROD_LINE_CD, SR_QUOTA_ACHIV_AGGR.QUOTA_CREDIT_COUNTRY_KEY, SR_QUOTA_ACHIV_AGGR.SALES_ORG_ID FROM ROAD_RUNNER')}
    SQL Issued: SELECT CASE WHEN 'MGMT $'='MGMT $' THEN SR_QUOTA_ACHIV_AGGR.MGMT_DOLLARS_MTD_AMT ELSE SR_QUOTA_ACHIV_AGGR.LGL_DOLLARS_MTD_AMT, GEO_DIM.AREA, GEO_DIM.AREA_DESC, ORDER_SPLIT.BOOKED_DT, ORDER_SPLIT.ORD_SHIP_TO_SITE_CITY, ORDER_SPLIT.ORD_SHIP_TO_SITE_NBR, ORDER_SPLIT.ORD_SOLD_TO_SITE_CITY, ORDER_SPLIT.ORD_SOLD_TO_SITE_NBR, SR_QUOTA_ACHIV_AGGR.PROD_LINE_CD, SR_QUOTA_ACHIV_AGGR.QUOTA_CREDIT_COUNTRY_KEY, SR_QUOTA_ACHIV_AGGR.SALES_ORG_ID FROM ROAD_RUNNER
    Thanks

  • Flexible Report - choose the cols (and # of cols) on the fly - PDF

    Hi
    I have a user community who would like to be able to choose the columns in a "Flexible Report" when they want to run a report to output to the browser, and then to PDF.
    Now, I've played around a bit with setting up a number of page items - say 5 - called COL1..COL5 and setting the values from list-boxes and then running a report SQL:-
    Select :col1 COL1,
    :col5 COL5
    from my_table
    etc.
    This produces the data, but its pretty tacky and the column names are COL1, COL2.... - also tacky, and the number of columns is fixed.
    Anyone got any slick ideas on how to do this so the column names and # are variable?
    I have tried a javascript example (posted elsewhere in the forum) that runs the report with all it's columns, and allows the columns to be shown / hidden depending on the state of a ccheckbox. This is very cool but it doesn't translate the flexibility to PDF output.
    For those who have used Discoverer - I need a mini-Discoverer reportwriter!!
    Any input greatfully received - Thanks in anticipation.
    Mike
    Message was edited by:
    Mike Mac

    hi
    see this thread,it may help you...
    column name/table name
    regards
    vally.s

  • Portal Page layout from 1 col to 2 col

    Can any one guide me how to see properties of a portal page and change layout from 1 column to 2 columns?

    Hi
    You need to create a custom page layout. You can edit the JSP pages of 1 column layout and allocate 50% width for both the columns which previously was 100%.
    You can refer this documentation
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9242a890-0201-0010-32a9-8516639c5afa
    Will certainly help you out....
    Regards,
    Ganesh N
    Reward points for useful answers!

  • Adding taskpads to MMC getting information from $COL i where i 2

    I am writing some scripts to help our servicedesk to some of their tasks, and I wanted to add it as Taskpads in MMC
    What I have done, open MMC, add ADUC . Then create a "taskpad" for an OU, and create a task to do "X", when I choose parameters and for instance choose "Name" it will write  $COL<0> in the parameters input field.
    That works fine. 
    If I use $COL<1> (type) or $COL<2> (description) it works fine as well, but if I choose for instance "Pre Windows-2000 logon Name" $COL<9>, then the Taskpad task does not show up at all. As soon as I change the parameter from
    $COL<9> to $COL<0> it shows up again.
    I have tried getting multiple different things from $COL<2+> but they all fail, resulting in the task not showing.
    I have tested this on Windows 8, 8.1, Server 2008R2 all with the behaviour, anyone has a clue as to what is happening ?

    Hi Claustn,
    Do you follow this article to add RDP taskpad:
    Custom MMC and How to Create Add TaskPad
    If so, the “/v:$COL<0>“ means selected computer name you want to remote cnnoect.
    You can run the cmd like:mstsc.exe /v:"Target computer IP address"
    If I have any misunderstanding, please let me know.
    If you have any feedback on our support,
    please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • Re-Numbering Col values

    Hi,
    I have a table containing data in the following format. It is required to
    change the values of column FF to values starting from 1,2,... depending on
    the total number of records presents for each value of column B.
    AA BB CC DD FF
    ILI00029 I891 MONIES 2 5
    ILI00029 I891 CUT 2 6
    ILI00029 I891 ELIGR 2 7
    ILI00033 I1186 MONIES 2 3
    ILI00033 I1186 COPAY 2 4
    ILI00033 I1187 CUT 2 10
    ILI00033 I1187 ELIGR 2 11
    ILI00033 I1187 REFUND 2 12
    ILI00033 I1187 MONIES 2 13
    Eg: For Col BB value I891 the FF Col Value should be changed to 1,2,3
    For Col BB value I1186 the FF Col Value should be changed to 1,2
    For Col BB value I1187 the FF Col Value should be changed to 1,2,3,4
    The value of FF needs to be re-numbered based on the col AA and Col BB values.
    Can anybody provide help in doing this? Can it be done by writing a single query?
    Regards
    Swadhin

    Hello Swadhin
    Is this what you want?
    select AA, BB, CC, row_number() over (partition by BB order by BB) as FF,
                       row_number() over (partition by BB||CC order by BB||CC) as HH
    from (
    select  'ILI00029' AA, 'I891' BB, 'MONIES' CC from dual union all
    select  'ILI00029' AA, 'I891' BB, 'CUT' CC from dual union all
    select  'ILI00029' AA, 'I891' BB, 'ELIGR' CC from dual union all
    select  'ILI00033' AA, 'I1187' BB, 'CUT' CC from dual union all
    select  'ILI00033' AA, 'I1187' BB, 'MONIES' CC from dual union all
    select  'ILI00033' AA, 'I1187' BB, 'ELIGR' CC from dual union all
    select  'ILI00033' AA, 'I1187' BB, 'MONIES' CC from dual union all
    select  'ILI00033' AA, 'I1187' BB, 'MONIES' CC from dual
    ) test
    result:
    AA       BB    CC             FF         HH
    ILI00033 I1187 CUT             1          1
    ILI00033 I1187 ELIGR           2          1
    ILI00033 I1187 MONIES          3          1
    ILI00033 I1187 MONIES          4          2
    ILI00033 I1187 MONIES          5          3
    ILI00029 I891  CUT             1          1
    ILI00029 I891  ELIGR           2          1
    ILI00029 I891  MONIES          3          1-Marilyn

  • af:table LOV Col clearing data on row selection

    Hi
    There is a table with one LOV column.it is a readonly table except LOV col (Select one choice with readonly property true).ADD,EDIT buttons are provided in table toolbar .Clicking on these buttons open Add/Edit popup .Save buuton is also provided in poup. The view object used is entity based viewobject.
    The issue Im facing is during record selection data is losing in LOV col.All other cols working fine.
    Thanks
    Raji

    Hi,
    Try setting autoSubmit=true for the LOV field ?
    Ramandeep

  • Use cast('12345' as tab.col%type) as a substr - PLS-00220

    Hello,
    I like to make sure that my constructed string fits into my variable, in a flexible way.
    The variable is like
    declare  t_comment tab.col%type; -- tab.col%type = varchar2(4)
    and in the PLSQL I would like to do concat a string and make sure it fits in my variable, just cut the right end if it is too long. I want it to be dynamic, so NOT
    t_comment := substr('1234567', 1, 4)
    CAST () works like a substring operator if casting to a smaller data type, but also leads to hardcoding.
    t_comment := cast ('1234567' as varchar2(4))
    But I want
    t_comment := cast ('1234567' as tab.col%type)
    But that gives me a
    PLS-00220: simple name required in this context.
    And when I define a subtype
    subtype comment_type is tab.col%type;
    t_comment := cast ('1234567' as comment_type)
    gives me a 
    PLS-00382: expression is of wrong type
    The documentation is also clear:
    CAST converts one built-in datatype or collection-typed value into another built-in datatype or collection-typed value.
    But it would be so nice to prevent hardcoding, to the varchar2(4) datatype in this case.
    Any suggestions on how to make this flexible?

    Hello,
    you can read the column length from the data dictionary and then use it in your SUBSTR instead of the hard coded value:
    SELECT data_length
    INTO v_length
    FROM user_tab_cols
    WHERE table_name = 'TAB'
    AND column_name = 'COL';
    t_comment := SUBSTR('1234567', 1, v_length);
    Not as simple as a %TYPE, but just as flexible.
    Regards
    Marcus

  • FSCM-COL program FDM_COLL_SEND_ITEMS checks business partner in KNA1

    We have a requirement to create a Business partner in FSCM-COL without creating any Customer master in FI (KNA1 table).  For each Customer invoice we have populated the Business partner (UDM_BP) in a free field (BSEG table).  Say customer ABC invoice #10000 will have the business partner XYZ assigned in BSEG field XREF1.  XYZ is not created as Customer in KNA1 but is created as Business partner in UDM_BP only. 
    For sending FI-AR data to FSCM, we have changed the BADI logic of determination of Branch/Payer to get the Business partner from BSEG-XREF1 field not from KUNNR.   When FI-AR data is sent to FSCM using the program FDM_COLL_SEND_ITEMS, system checks whether Business partner XYZ is created in KNA1 table.  Is there any way to avoid creating XYZ as Customer in KNA1 since we would be duplicating 5k+ customer records.
    Request your ideas on this.
    Thanks,
    Siva Parvathala

    Hi,
    This is kind of strange as to why you want to do this.  Anyway you have 1 customer in FI-AR for whom you are generating the invoices.  So there is already a customer ABC.  You also have a BP XYZ.  Now why not use the standard itself and link the customer ABC with XYZ which is going to save all the efforts required for custom modifications.  For linking BP and Customer, it is not necessary that both should have the same number range.
    Also I don't think you can do the transfer without linking customer and BP.  Anyway I will check this and let you know.  But I am sure this is redundant work and you can use the standard itself for this.
    Regards,
    Ravi

  • How to read the content of a blob col along with other cols as pipe delimit

    Hi,
    I would like to read the blob content along with the other columns . Assume table TAB1 has columns Response_log, Empcode and Ename. Here Response_log col is a blob data type, and the content of the blob is an xml file.Now i would like to read the content of the xml file of response_log column along with Empcode and Ename as pipe delimited . or else the best option would be to write to a text file with name extract.txt with the data being pipe delimited .
    create  table tab1(
    response_log blob,
    empcode  number,
    ename  varchar2(50 byte)
    )Sample code goes something like the one below .
    select xmltype( response_log, nls_charset_id( 'char_cs' ) ).getclobval() || '|' || empcode || '|' || ename
    from tab1 Can I have any other alternate way for this.
    Please advice

    Just Now one example is given in HOW TO WRITE ,SAVE A FILE IN BLOB COLUMN

Maybe you are looking for

  • Open pdf doc with reader 9 when acrobat 8 installed

    Hello, I created a form with acrobat 9 and distributed it. It appears that on a windows xp computer that already has acrobat 8 installed, it is impossible to open the form with reader 9, (after installing it, of course...). Then, I'd rather create an

  • Will Photoshop Elements 7 work with Windows 7?

    I am considering upgrading my laptop's operating system from Windows Vista to Windows 7 and just wanted to make sure that my photoshop (ver7) which i payed for when i bought the laptop, would still work even with the upgraded operating system. Thanks

  • In app purchase refund never recieved?

    Hi guys. I can't remember exactly when, it was a little over a week ago, I accidently bought two 20$ gem things in clash of clans. I didnt mean to at the time. I sent in both refund requests about 9 days ago. I recieved a confirmation for both from A

  • Stock Transfer order Block one supplying plant

    Hi, We are using standard Stock transfer Orders (UB) for transfer the stock from one Plant to another plant. Our receiving plant is 1000 and others plants available in the organization structures are 1100, 1200 and 1300. Standard SAP allows to order

  • Time scale tool tip

    Hello there! How can I create a function to write a tool tip that gives details of the date that the mouse is pointing in the time scale bars?? All and any help would be appreciated.