Problem with 2 columns.

, I work with Dreamweaver 8 through the tutorials to create a web site with two columns.  Of course, I'm a newbie.  Below is the code in my CSS file, but my main problem is that when I added the "left margin" my selector "#content" it does not separate the column, the content is always leaning on my sample image.  Can someone identify an error in the code because I am confused.  The sample site is http://mediatracks.com/basiclayout1.html If that helps.

Thank you in advance.

HTML, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {}

margin: 0;

padding: 0;

border: 0;

}

{body

background-color: #666666;

color: #666666;

fonts: 80% Verdana, Arial, Helvetica, without serif.

margin: 0px;

padding: 0px;

text-align: center;

}

{#wrapper}

width: 770px;

background-color: #FFFFFF;

margin: auto 10px;

border: 1px solid #000000;

text-align: left;

}

#banner {}

height: 110px;

background-image: url (.. / graphics/bmw.jpg);

background-repeat: no-repeat;

}

#nav {}

border-bottom: 1px solid #000000;

}

#nav ul {}

padding: 0;

margin: 0;

background-color: #00FF99;

}

#nav ul li {}

display: inline;

padding: 0;

margin: 0;

}

#nav ul li a {}

do-size: 80%;

color: #FFFFFF;

background-color: #3333CC;

text-decoration: none;

Padding: 25px 0 0 25px;

border-right: 1px solid #000000;

text-align: center;

Width: 9è;

}

#nav ul li a: hover, #nav ul li a: focus {}

background-color: #990000;

}

#content p {}

margin left: 200px;

margin: 20px;

}

#content h1 {}

color: #003366;

padding: 0;

margin: 20px;

}

#content h2 {}

color: #003366;

padding: 0;

margin: 20px;

}

{.leftimage}

float: left;

margin: 20px 0 10px 0;

border: 1px solid #000000;

}

{.rightimage}

float: right;

margin: 0 0 20px 15px;

border: 1px solid #000000;

Width: 150px;

}

{.clearit}

display: block;

clear: both;

}

#footer {}

border-top: 1px solid #000000;

background-color: #003366;

color: #FFFFFF;

}

#footer p {}

-font size: 70%;

padding: 3px;

}

{#leftcol}

margin-left: 10px;

top of the margin: 20px;

float: left;

Width: 170px;

height: 150px;

background-color: #FFFF00;

}

You are welcome!

and for learning, please refer to the following links:

http://www.dynamicdrive.com/style/layouts/category/C9/

http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-Col/

Kind regards

Vinay

Tags: Dreamweaver

Similar Questions

  • Problem with comparison column multi Nested Tables

    Hello

    I am facing a problem while comparing two collections using operator of type MULTISET. Below I pasted code examples referring to the Employees table in the HR schema.
    program works very well, if it's a single column if I declare that, tab type is table of varchar2 (n);

    Example code:
    --create type base_type as object (id number,name varchar2(10));
    --create type type_tab is table of base_type;
    declare
    v type_tab :=type_tab();
    v2 type_tab :=type_tab();
    v3 type_tab :=type_tab();
    v1 number;
    begin
    select base_type(employee_id,last_name) bulk collect into v from employees where employee_id in (100,101,102);
    select base_type(employee_id,last_name) bulk collect into v2 from employees where employee_id in (100,101);
    
    v3:= v MULTISET EXCEPT v2;
    end;
    Error
    ERROR on line 10:
    ORA-06550: line 10, column 6:
    PLS-00306: wrong number or types of arguments in the call to 'MULTISET_EXCEPT_ALL '.
    ORA-06550: line 10, column 1:
    PL/SQL: Statement ignored

    Could you please address the issue and guide me how to solve this problem.
    Thank you.
    Renji

    Why would you use collections like this in the first place?

    When the data is the engine of SQL, then use the SQL engine to to deal with - not PL/SQL. And no - nested tables have no place in a good, working, flexible, high-performance and scalable relational design in Oracle.

    To do this, use the multiset SQL function - example

    .. your plsql code..
    
      select
        v MULTISET EXCEPT v2 into  v3
      from dual;
    end;
    
  • Problem with special characters in a column

    Hello, I call data from a database and I don't have the rights to the database, the name of the columns have points on behalf here: Parameters.12V_Prog_IccType_A

    Is there a way to solve this problem with the name change? Like using (de), [,], "", or something like that?

    BR,

    Robin

    Try the square brackets.

    Mike...

  • Problem with update of a column by using the procedure of database and refreshing or put in value programmatically

    Dear all,

    I am a beginner in the ADF and am under Jdeveloper Studio Edition Version 12.2.1.0.0.

    I have a page that consists of two taskflows.

    First workflow has a fragment which is to have a table based on view object salespersons (not editable)

    Second task flow contains a form of ADF from the same view object Salespersons.

    As the user selecting a line in the table of the same record is displayed as no problem.

    Now, I have added two buttons Activate and Deactivate that is to change the status of the sales.

    I tried to use two ways an updated using the procedure of database and then put in value by programming and I have different questions with two of them:

    Now, here's the code of the Java bean for activation:

    Option A - the problem with this is the value of the column in the list (the first task rate displayed) is not synchronized

    and Activate and Deactivate buttons are not disabled and active properly.

    {} public void confirmActivation (DialogEvent dialogEvent)

    If (dialogEvent.getOutcome () == DialogEvent.Outcome.yes) {}

    DBSequence vId;

    vId = dcId.getValue ((DBSequence));

    Links BindingContainer = getBindings();

    OperationBinding operationBinding;

    operationBinding = bindings.getOperationBinding ("changeSalespersonsStatus") (OperationBinding);

    operationBinding.getParamsMap () .put ("pId", vId.getValue ());

    operationBinding.getParamsMap () .put ("pStatus", "A");

    Object result = operationBinding.execute ();

    dcStatus.setValue ("A");

    } else {}

    return;

    }

    }

    Option B - the problem with this is that the value of input for status text appears in the Active form for all records in form regardless of its database.

    {} public void confirmActivation (DialogEvent dialogEvent)

    If (dialogEvent.getOutcome () == DialogEvent.Outcome.yes) {}

    -no doubt this two lines are not needed here

    DBSequence vId;

    vId = dcId.getValue ((DBSequence));

    dcStatus.setValue ("A");

    BindingContainer links = getBindings();

    OperationBinding operationBinding;

    the operationBinding = bindings.getOperationBinding("Commit") (OperationBinding);

    Object result = operationBinding.execute ();

    } else {}

    return;

    }

    }

    Here's the code from the Fragment of shape for used buttons.

    "< af:button text = 'Activate' id ="bActivate' icon="/icons/activate.png ' iconPosition = 'top '.

    partialTriggers = "Bcreer bSaveInsert bCancelInsert dDeactivate dActivate".

    Binding = "#{pageFlowScope.salespersonsForm.buttonActivate} '"

    Disabled = ' #{bindings. " Status.inputValue! {= ' n '} ">"

    < af:showPopupBehavior popupId = "pActivate" / >

    < / af:button >

    "< af:button text = 'Disable' id = 'bDeactivate' icon="/icons/deactivate.png ' iconPosition = 'top '.

    partialTriggers = "Bcreer bSaveInsert bCancelInsert dDeactivate dActivate".

    Binding = "#{pageFlowScope.salespersonsForm.buttonDeactivate} '"

    Disabled = ' #{bindings. " Status.inputValue! {= 'A'} ">"

    < af:showPopupBehavior popupId = "pDeactivate" / >

    < / af:button >

    Here's matching Popups for each of the buttons Activate and Deactivate.

    < childCreation = "deferred" autoCancel af:popup = "disabled" id = "pActivate" >

    < af:dialog id = "dActivate" type = "YesNo" title = 'Status of salespersons' closeIconVisible = 'false '.

    affirmativeTextAndAccessKey = "& amp; Yes"cancelTextAndAccessKey ="& amp; (Cancel)

    noTextAndAccessKey = "& amp; No '.

    dialogListener = "#{pageFlowScope.salespersonsForm.confirmActivation}" >

    < f: facet = 'buttonBar' name / >

    < af:outputLabel value = "Are you sure you want to enable the seller?" id = "ol1" / >

    < / af:dialog >

    < / af:popup >

    < childCreation = "deferred" autoCancel af:popup = "disabled" id = "pDeactivate" >

    < af:dialog id = "dDeactivate" type = "YesNo" title = 'Status of salespersons' closeIconVisible = 'false '.

    affirmativeTextAndAccessKey = "& amp; Yes"cancelTextAndAccessKey ="& amp; (Cancel)

    noTextAndAccessKey = "& amp; No '.

    dialogListener = "#{pageFlowScope.salespersonsForm.confirmDeactivation}" >

    < f: facet = 'buttonBar' name / >

    < af:outputLabel value = "Are you sure you want to disable the seller?" id = "ol2" / >

    < / af:dialog >

    < / af:popup >

    Thanks in advance.

    Best regards

    Arif Khadas

    If you bind components to a range of flow page bean. You must complete that it saves the State of the component longer than the life of the component.

    To change the value of the GET value of the component of the link layer and change it.

    In this way the changes are captured by the framework and you should see them.

    Timo

  • a problem with the display of window margins and columns

    Hey there,

    I have a problem with my window margins and columns. Whenever I open it, it stuck in the upper right of my screen and I can't press OK.

    I tried to switch between workspaces, notice to update my program, restart the program, restart my computer, unplugged my second screen, rest again... nothing helps. Does anyone have an idea? It drives me crazy.

    Screen Shot 2016-01-20 at 3.04.30 PM.png

    Reset preferences also probably won't help, but worth to try: replace your preferences

    I'm a Windows user, but is there any command on Mac that allows you to move dialog boxes by using the arrow keys on the keyboard, as Windows users do?

  • Problem with download of columns of hyperlink in reports!

    version: 4.1.0

    Hello

    I have an Apex interactive report that has two columns of hyperlink. which, once clicked on in the application opens another application. Which works very well.

    However, when we try to download this report in any format like csv etc using the download option in interactive reports, it shows any hyperlink in the CSV instead of the value of the column. Any suggestions on how to fix this? These columns are of type "Type of report Standard" However, I did not use the report binding attributes. I used directly in sql, hyerplink in the select report

    any suggestions?

    Thank you
    Ryan

    Published by: ryansun on January 22, 2013 21:46

    I don't think you can, I had the same problems with the sorting of the column. I did add another column with just the value and no link.

  • Problems with slot-shaped table and set the values of column

    Hello

    I have a problem with a tabular presentation.

    I have two tables

    P_detail and table v_master

    columns of v_master:
    v_id
    v_Name
    v_info

    columns of p_detail:
    P_ID
    p_master_fk
    p_name
    p_info

    I want to have a tabular presentation where I can store permanent data retail values. That's why I want to keep the default main column join the detail columns.
    In SQL, I can do this with an outer join:

    SELECT m.v_name, d.p_master_fk, d.p_name, d.p_info
    OF v_master, p_detail
    WHERE v_id = p_master_fk (+)

    I get the lines that exist for the master data and can add values for the columns of detail. I removed the "add lines" because that makes no sense, because the amount lines are already offered at the opening of the tabular presentation.

    Now, I want to get/save the v_id (main table) in the p_master_fk column value

    How can I do this?

    Thank you and best regards,
    Matthias

    Hello

    One approach is to use a database instead trigger. If you define a database view using the query:

    SELECT m.v_id, m.v_name, d.p_id, d.p_master_fk, d.p_name, d.p_info
    OF v_master m, p_detail d
    WHERE v_id = p_master_fk (+)

    Then, create a trigger on the view that will insert in the detail table if d.p_id is null and update the secondary table if d.p_id is not null instead.

    The Apex tabular form is then based on the view (with identifiers like hidden columns) and all treatments multirow Apex should work without modification.

    Rod West

  • Problems with sorting of columns and the number of lines in the report

    Hello

    I'm having a problem with sorting of columns and the number of lines displayed in a report.

    This report displays the data correct, but if I try to sort on a column when I click on the column heading in the report returns no line... I need to click on the "go" button to refresh the report (with the column sorted now) in to display the data.

    Similarly, I display only 15 lines per page. If I try to view the lines 16-30, 31-45, etc., that it returns no line until I click on the 'go' button to refresh again.

    Has anyone else had (and overcome) the same problem?

    Thank you

    Joseph

    Joseph,

    2 questions:

    1) are you using the elements referenced by the report page to filter etc.. ? If so, you're failing values of these when the loading of the page?
    (2) are you using PPR page through the results?

    If so, it could be a problem with the different types of session state, as Anton Nielsen blogged about here:
    http://c2anton.blogspot.com/2008/12/Oracle-Application-Express-Apex-three.html

    If so, you can use calculations or processes to set element values in session state persistent during page rendering, as Anton mentions. In this way, when you use PPR page values will be available in session state and your report should work fine.

    Anthony.

  • problem with column separated by commas

    I'm running into a problem with the following table structure

    CREATE TABLE «DETAILS»

    (

    'ID' NUMBER (22.0) NOT NULL,

    VARCHAR2 (150 CHAR) 'NAME' NOT NULL,

    "COVER" VARCHAR2 (150 CHAR) NOT NULL

    );

    Insert into EXPORT_TABLE (ID, NAME, COVER) values (252613546, 'VCONBU', ', 252612938,');

    Insert into EXPORT_TABLE (ID, NAME, COVER) values (252613549, 'SPMABU', ', 252612932,');

    INSERT INTO EXPORT_TABLE (ID, NAME, COVER) VALUES (252612938, 'HOSTEDTG', NULL);

    Insert into EXPORT_TABLE (ID, NAME, COVER) values (252612932, 'INSTG', null);

    Insert into EXPORT_TABLE (ID, NAME, COVER) values (367708813, 'ICF_1', ', 252613546,');

    Insert into EXPORT_TABLE (ID, NAME, COVER) values (364413059, 'CSWSPT', ', 252613549,');

    commit;

    Output

    IDNAMECOVER
    252613546VCONBUHOSTEDTG
    252613549SPMABUINSTG
    252612938HOSTEDTG
    252612932INSTG
    367708813ICF_1VCONBU
    364413059CSWSPTSPMABU

    Hello

    You may want a self-join, like this:

    SELECT c.id

    c.name

    p.name AS cover

    Of export_table c

    LEFT JOIN export_table p WE «,» | p.ID

    || ',' = c.lid

    ;

  • Problem with the timestamp in compound triggers columns

    Hello

    Information on the database:

    select * from v$version;
     
    BANNER                                                                        
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production    
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE 11.2.0.2.0 Production                                                        
    TNS for Linux: Version 11.2.0.2.0 - Production                                  
    NLSRTL Version 11.2.0.2.0 - Production
    
    
    

    Question:

    I created a trigger on the table t1 (with a timestamp column) to insert its data changes in table t2 (with another column of timestamp).

    For some reason any if t1 table has a column whose data type is timestamp, the trigger returns null for: NEW. Value of col1.

    create table t1(
    col1 timestamp(6)
    );
    /
    create table t2(
    col1 timestamp(6)
    );
    /
    create or replace trigger trg_on_t1 for insert on t1
    compound trigger
    after each row is
    begin
      insert into t2(col1) values(:NEW.col1);
    end after each row;
    end trg_on_t1;
    /
    insert into t1(col1) values(systimestamp);
    /
    select * from t2;
    /
    COL1                         
    -------------------------------
    (null) 
     
     select * from t1;
     /
    COL1                         
    -------------------------------
    27-MAY-14 10.57.29.123779000 PM
    
    

    As you see on the two latest select statements, given in table t2 appears with the value null, even if the current timestamp value is present in the t1 table.

    I have a feeling that this is a bug and want to see if there is no work around.

    Thanks for your help.

    Hello

    Ravikumar.SV wrote:

    Hello

    ... I have a feeling that this is a bug and want to see if there is no work around.

    I agree.

    I got the same results (or lack thereof) like you.  Then I added a call to dbms_output.put_line, just to make sure that the trigger is pulled, and then he started to do the INSERTION in t2.

    create or replace trigger trg_on_t1 to insert on t1

    trigger composed

    After that each row is

    Start

    dbms_output.put_line (: NEW.col1 | =: NEW.col1 in trg_on_t1');

    insert into t2 (col1) values(:NEW.col1);

    After each line.

    end trg_on_t1;

    /

    A workaround is to use a simple trigger.

  • Problem with RTF model with columns &gt; 63

    Hello

    We use the XML editor in Oracle EBS 12.1.3.

    I have a relationship with more than 100 columns, for which I created an RTF model with going out to Excel. I fell on the boundary of Word of 63 columns in a table.  To get around it, I created a table with 2 columns and each column insert a table of columns about 58.

    Well, it seems to work 90% of the time.  But at the end of the excel sheet the last 20 or if data lines have sometimes 58 columns in the column in the external table empty.  The second cell of the outer table is a large cell empty.

    The issue seems to occur when there is a lot of data in the report.  If I run the report on specific lines containing questions the data is displayed correctly.

    Everyone has faced something like this?  Or have any ideas on how to debug what is happening?

    Thank you

    -Johnnie

    Hopefully the new XSL - FO model is selected in the Options tab, when you submit the request. Output XML code usually means - an error (if the program terminates with an error) or the mapping of model not done correctly (if completed normally).

  • Problems with page 2 columns

    I have and old document/publication that worked fine when I used it a year ago and now I want to use it again.

    It is 64 pages, about A4 with side of pages, and with 2 columns on each page - it's 4 columns on a gap.

    I deleted the text and when I place a new text (Word format) with Shift-LefClick in the top left of the first page, left colum, then the following occurs with some Word files:

    It flows down the two columns on page 1, page breaks 2.

    There are 2 columns, but are connected to him, so that I can't spend one of them.

    And the baseline grid will on the two columns on a page.

    Who is wrong?

    There is only a single master spread for this file (ithas left and right of the pages) - normal - and there's that no existing frames on the master page or pages of the document.

    Text flows normally for me, from the left column and then fill the right-hand columns, before adding new pages and fill those left to right. What happens differently for you?

  • Firefox load any website in a proper way. It loads the wise online website. I'm not facing any problem with other browsers. Can you help me with this problem?

    Hello

    Firefox does not load any website in a proper way. It loads the website, but not in an appropriate manner. It loads in the good column.
    Another website are load appropriately.
    Can you help me solve this problem?

    Thank you

    You can try the following steps in case of problems with web pages:

    You can reload webpages and ignore the cache to refresh potentially stale or corrupt.

    • Hold down the SHIFT key and click the Reload button
    • Press 'Ctrl + F5' or 'Ctrl + Shift + R' (Windows, Linux)
    • Press 'Command + shift + R' (Mac)

    Clear the cache and delete cookies only from Web sites that cause problems.

    "Clear the Cache":

    • Firefox/tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox/tools > Options > privacy > "Use the custom settings for history" > Cookies: "show the Cookies".

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe

    See also:

  • Is there a problem with firefox does not, it's happening on all our computers at work and at home. It takes about 10 seconds, then stops responding.

    I read FF posts of the community, and it seems to be a problem with a lot of ppl. It happened for about 3 days now on all our computers at home and work. This cannot just be linked to a computer if this happens for many. I was wondering if there is a general problem with FF, is that what is happening for many users. When I start FF I am lucky to get 10 sec before it does more, ready to give FF film! I use it in safe mode now & use of IE next until I find another solution other than resetting FF. FF should maybe see if there is a problem at their end, & then show us how to fix it.

    To return to regard to extensions, you can view and update the extensions on page modules. Either:

    • CTRL + SHIFT + a
    • Firefox orange (or the Tools menu) button > Add ons

    In the left column, click Extensions. Click the "gear" above the list, and then use the check for updates.

    You can also disable non-essential or unrecognized extensions (or so obviously not good, remove them).

    Typically, a link will appear above at least an extension disabled/removed to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    Any improvement?

  • OfficeJet 5470 e-all-in-one: Subscriber instant - problem with #62 color cartridge - Cyan Ink only

    I just installed a new color cartridge and our copies look right.

    I aligned the printer and then cleaned them (the two cleanings) and Print quality Diagnostic report shows nothing in the column "Cyan".

    Is it possible that the cartridge is defective?

    Thank you very much for your help!

    Hi @fiveinthetree,

    I understand that you are having some print quality problems with your HP Officejet 5740. I'll be happy to help you.

    It is possible that the cartridge you received is defective, however, there are some troubleshooting, you need to try before you can replace as defective cartridge.

    I recommend contacting instant ink 1-855-785-2777 for support in real time with an agent. If they determine that the cartridge is defective, they can help you with the replacement.

    If this help will testify of my answer by pressing the 'thumbs up' below, or click on the button "Accept as Solution" if I helped you reach a solution.

    I hope this helps and have a nice day.

Maybe you are looking for

  • Re: Satellite Pro A60 - PCMCIA WLAN card does not question CardBus

    I received an A60 to upgrade for a friend and one of the necessary things is a wireless card. I got a 32-bit cardbus card but when I insert into the laptop, nothing happens. XP does not recognize, the oo lights do not come on the map.First I thought

  • Satellite Pro A100: Screen does not return after hibernation

    The laptop went to Hibernate, but would not re - awaken.tried to disable following the manual, but the screen is now definitely blank, any suggestions?

  • Satellite A200-13O: need some answers on the upgrade of RAM

    Hi there everyone, I bought the Satellite A200-13O and I found in the forum Jayjay says: Bq. "the laptop can be upgraded up to 4 GB (2 x 2 GB). But the Windows operating system will not recognize the full 4 GB. He acknowledged only 3 GB due to the li

  • Email downloads twice on my BB 9780 blackBerry Smartphones

    I have an exchange server account, the mail is configured on my outlook & BB. When someone sends me an e-mail, I receive on the BB again when I opened Outlook and discovers the same email, the same message appears again on my BB. can someone please h

  • Cursor moves automatically while you type

    Original title: when typing (particularly e-mail), if I stop typing a few moments my cursor rolls over all email. The cursor sometimes jumps to the area of topic, the position of the sender of the previous one, in the middle of a sentence, at the end