Beginner Web Design help with tables

For my college Web Design course we are building a basic website using tables and basic coding. Right now I am trying to align this img with the text on the left. The width of the outer table is 1024px and everytime I try and add the img into its own <td> it pushes outside the outer table. I would add screenshots of the code and css, but for some reason it isn't allowing me to insert images into the post.

SnakEyez02 wrote:
I don't agree 100% with previous comments made about tables because they are still relevant for email layouts due to archaic applications like Outlook using the brilliant "Word" rendering engine or Google disabling CSS in the header for GMail. 
Hear, hear!!
I have never bought into the nonsense about how tables should be used for tabular data only. Adobe has been touting the power of tables as layout tools for as long as I can remember, and still are: http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7da3a.h tml (Although the wording has been toned down some).
DIV/CSS based layouts were not a part of my workflow until a couple of years ago. At that time, my plan was to make the switch from table based layouts (which already used a fair amount of CSS) to strictly DIV & CSS layouts. That’s when I discovered that Outlook and Gmail were unable to render DIV & CSS based newsletters. When I studied the newsletters of the industry leaders, and realized that almost all of them use tables with inline styles, I decided to put my workflow switch on hold.
While all of my mobile work is strictly HTML5 (DIV’s & CSS), I have given clients the option to go with either CSS or table based layouts for their websites. Most choose table layouts. Design migrations from Photoshop to Dreamweaver are 10 times faster with tables, with little to no CSS hacks, and far easier to maintain than the purists are telling you. This makes table layouts less expensive in the short and long run.
As far as SEO is concerned, Google doesn’t care either way: http://www.youtube.com/watch?v=fL_GZwoC2uQ
With all of that said, the W3C is planning on having the HTML5 recommendation finalized by 2014, at which time it should be completely stable and away from the bleeding edge. And while it is my hope that I will be done with table based layouts by then, I do not feel it is right that Adobe should make that choice for me by continuing to remove critical table, image, and text based tool sets from Dreamweaver. If for nothing else but newsletter design and development, we need those tools back.

Similar Messages

  • Help with tables (should be simple...)

    I'm trying to use a Table component as a spreadsheet template in my app:
    I'd like the first column to be static-y labels (such as Sunday, Monday, etc.) and the rest of the columns to be bound to a relational data source. I thought that I could just create a simple String array of labels in the session bean and then wrap that array with an Object Array Data Provider on the page and bind the table column to the Object Array Data Provider. Doing this doesn't give me the desired/expected results, namely the first column displaying the labels. What am I missing? I can't seem to visually wrap an Object Array Data Provider around anything other than a bult-in DataType array (String, Integer, etc.) and the only properties of the String array that I can choose from for the column are CASE_INSENSITIVE_ORDER, bytes and empty??
    Thanx in adv.
    -Jake

    I cross-posted and received a reply on the Netbeans - J2EE Nabble forum: http://www.nabble.com/help-with-tables-%28should-be-simple...%29-tf3574200.html
    Essentially, the reply points me to this Tutorial Diva article:
    http://blogs.sun.com/divas/entry/using_the_object_array_data
    Parenthetically, what are are the audiences of the Nabble forum vs. this forum? It seems (to me at least) that there is a lot of overlap in the Creator/VWP topics. Which forum is more active? Does anyone find that the Creator audience is migrating to the Netbeans VWP forum? I seem to be getting better responses to my queries on that forum, but that may be due to the nature of my (admittedly newbie-ish) posts.

  • Beginner Sharepoint Design help

    Hello i need help with creating a combined view to display and edit two lists on a sharepoint site.
    I can get the website to build successfully after i import the current combined data source and what not but anytime i try to filter the web part, it either
    A) dissapears completely on me even though i am filtering it accordingly based off the correct field(it should work)
    or B) it updates in sharepoint design, and even after saving, the changes arent reflecting on my sharepoint site and im left with my list before the filter
    Im really confused as to why this is happening.

    Hi,
    You need to consider about using the Content Query WebPart, for showing the multiple list items, below article would be a good start for that.
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/SharePoint-2010-Content-Query-Web-Part-Demistified.aspx
    Rajesh | Blog

  • I need your help, with table

    Hi experts,
    I have a problem with table in sapnetweaver, and want to ask all of you , that is : I want to set a column of a table with 3 rows, one is textview, one is editfield, and the last one is combobox, how can i do that.
    Thank you for your attention,
    looking forward to hearing from you soon.
    Chau.

    Hi,
    For NWDS 7.0 version,this feature is available.
    You can use difference cell editors in the table  column for different
    table rows.
    How to create this:
    Step1>in the outline create one table column.
    step2>Rightclick on table column select "Insert CellVarient".
    Step3>You will get a popup with 3 choice.Select TableStandardCell.
    and give some name.
    Step4>Rightclic on TableStandardCellVarient,then select InsertEditor.
    In this editor you can able to select one newelement(i.e textview/image/
    InputField.........etc)
    Like this you can insert multiple Cellvarients(1.Image,2.Ifld..etc) to the single Tablecolumn.
    Regards,
    Lavanya.G

  • Need help with tables beginner........

    can some one help me straightned out these errors, am trying to teach myself some sql for and am using my buddies school books. this is the problem.
    Create the following relations in SQLPLUS. The columns involved in composing the primary key for each table are marked with a *.
    * FACULTY (*fss_num varchar2(20), name varchar2(20), address varchar2(20), age number,salary number(10,2))
    * ATTENDS (*sss_num varchar2(20), *c_num number, sec_num number)
    * SECTION (*c_num number,*sec_num number,fss_num varchar2(20))
    * STUDENT (*sss_num varchar2(20), name varchar2(20), address varchar2(20), age number)
    * COURSE (*c_num number, cdesc varchar2(20), credits number, size_limit number)
    My solution: seems right am following another example but i get various errors.
    DROP TABLE ATTENDS;
    DROP TABLE STUDENT;
    DROP TABLE SECTION;
    DROP TABLE COURSE;
    DROP TABLE FACULTY;
    CREATE TABLE FACULTY
         (FSS_NUM      VARCHAR2(20) NOT NULL,
         NAME          VARCHAR2(20) NOT NULL,
         ADDRESS      VARCHAR2(20),
         AGE           NUMBER,
         SALARY           NUMBER(10,2),
         CONSTRAINT FACULTY_PK PRIMARY KEY (FSS_NUM));
    CREATE TABLE COURSE
         (C_NUM           NUMBER NOT NULL,
         CDESC           VARCHAR2(20),
         CREDITS      NUMBER,
         SIZE_LIMIT      NUMBER,
         CONSTRAINT COURSE_PK PRIMARY KEY (C_NUM));
    CREATE TABLE STUDENT
         (SSS_NUM      VARCHAR2(20) NOT NULL,
         NAME           VARCHAR2(20) NOT NULL,
         ADDRESS      VARCHAR2(20),
         AGE           NUMBER,
         CONSTRAINT STUDENT_PK PRIMARY KEY (SSS_NUM));
    CREATE TABLE ATTENDS
         (SSS_NUM      VARCHAR2(20) NOT NULL,
         C_NUM           NUMBER NOT NULL,
         SEC_NUM      NUMBER NOT NULL,
         CONSTRAINT ATTENDS_PK PRIMARY KEY (SSS_NUM, C_NUM),
         CONSTRAINT ATTENDS_FK1 FOREIGN KEY (SSS_NUM) REFERENCES STUDENT(SSS_NUM),
         CONSTRAINT ATTENDS_FK2 FOREIGN KEY (C_NUM) REFERENCES COURSE(C_NUM));
    CREATE TABLE SECTION
         (C_NUM           NUMBER NOT NULL,
         SEC_NUM      NUMBER NOT NULL,
         FSS_NUM      VARCHAR2(20) NOT NULL,
         CONSTRAINT SECTION_PK PRIMARY KEY (C_NUM, SEC_NUM),
         CONSTRAINT SECTION_FK1 FOREIGN KEY (C_NUM) REFERENCES COURSE(C_NUM));

    Hi,
    If you want to give Primary Key constraint for a column, no need to create NOT NULL constraint again for the same column.
    If you create Primary Key constraint for a composite column, only possible to create Foreign Key on the same composite column.
    Mistake.....if PRIMARY KEY(SSS_NUM, C_NUM), we should not either FOREIGN KEY(SSS_NUM) or FOREIGN KEY(C_NUM). We should create only like FOREIGN KEY(SSS_NUM, C_NUM).
    Regards,
    Sailaja

  • How to design universe with tables from two databases using a db link?

    I am building a universe (v3.1) that has tables from two different oracle db instances.  My dba created synonyms for me and there is a database link in place.  I don't know how to get this working in Designer.  I can see the views under my ID when I browse to insert a table, but there is no structure.  I think I have to create a new strategy.  I attempted to do that, but the directions aren't very clear to me, and it isn't working.  Any help or advice would be greatly appreciated.  Thanks!!

    i've been working with DB links much before, but this was since long time ago before i join the Business Intelligence field
    from my understanding that you Have link from DB1 to DB2
    and from your user in DB1 you can access tables and view from DB2
    if you are using your user to create a universe im not sure if you can use tables from DB2 or not
    and you dont see the tables of the link in the Universe
    but you can try to create a drived table selecting from any tables from DB2
    for example
    select id,name from user.table2@mylink
    check this way and give me your feedback
    good luck

  • Help with table calculations

    Hi, all, I am working on a form that was previously made in Excel. I wanted to remake this in an expandable pdf fillable so that I can add the accessibiltiy information to the form. The first link is to the static pdf converted from Excel here:
    https://acrobat.com/#d=lIGyn*lpuWSQ-Qzkklml6w
    The second link is the the form as my strained brain has recreated it. I'm sure there is probably a better method than I have chosen and I am open to all suggestions. But I can't get the table to total.
    In the first table, all the calcs work correctly, ie 11, 12, 13, 14 and the total from 14 does show up in 15. but I need 17 to show the amount after the Discount (#16) is deducted. You would think something simple would do the trick, like SubTotal - Discount. That doesn't work.
    Column 19 should total in the footer row next to 21. It doesn't. And column 23 should total into space #24. I have been trying for hours at a time to come up with the magic script to make this form work but......now I've decided to grovel for help.
    https://acrobat.com/#d=mzovRUkKit7JnPVebPKgZw

    Hi,
    Here is your form back to you: https://acrobat.com/#d=a06D-SL7SK58ZulXCKNSuw. Please note that all of the scripts are FormCalc, as we are using the sum function and the wildcard. Neither of these will work in JavaScript.
    Have a look at this post on how to reference objects, in particular the deomonstration of Control+Click:
    http://www.assuredynamics.com/index.php/2011/05/som-expressions/
    Also with buttons with linear gradient I would change the click behaviour from Inverted to Outline or None. It will be a little easier on the eyes. I have changed the two Add buttons. Also I think that you are getting in to readibility issues with the contrast between the button background and the black caption. I would recommend a read of this post, which outlines an approach to primary buttons (like the add rows) and secondary buttons (like the delete rows):
    http://www.assuredynamics.com/index.php/2010/12/buttons/.
    Maybe this discussion on colours:
    http://www.assuredynamics.com/index.php/2011/02/any-colour-as-long-as-its-black/
    Hope that helps,
    Niall

  • Help with table scan

    I have a problem with full table scans that make very slow the performance of a report.
    The test case is below. It looks that when the column is called from the table, the index is in use. If I use the same select from the view, then I get a table scan.
    I would appreciate any idea on how to optimize it.
    Thanks a lot for the help.
    mj
    <pre>
    create table test1 (id1 number , id2 number, id3 number, col1 varchar(10),col2 varchar(50), col3 varchar(100));
    create table test2 (id4 number , id5 number, id6 number, col4 varchar(10),col5 varchar(50), col6 varchar(100));
    ALTER TABLE test1 ADD CONSTRAINT PK_test1 PRIMARY KEY(ID1) USING INDEX REVERSE;
    create index index1 on test1(ID2);
    create index index2 on test1(ID3,col2 );
    ALTER TABLE test2 ADD CONSTRAINT PK_test2 PRIMARY KEY(ID4) USING INDEX REVERSE;
    create or replace view test_view as select t1.*,
    case (select t2.id4 from test2 t2 where t1.id2 = t2.id5 and t2.id6 = -1)
    when t1.id2 then t1.id3
    else t1.id2
    end as main_id
    from test1 t1 ;
    create or replace view test_view2 as select * from test_view; --(requred by security levels)
    select * from test1 where id2 =1000;
    select * from test_view where id2 = 1000;
    select * from test_view2 where id2 = 1000;
    SQL> select * from test_view where id2 = 1000;
    Elapsed: 00:00:00.00
    Execution Plan
    Plan hash value: 1970977999
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 125 | 1 (0)| 00:00:01 |
    |* 1 | TABLE ACCESS FULL | TEST2 | 1 | 39 | 2 (0)| 00:00:01 |
    | 2 | TABLE ACCESS BY INDEX ROWID| TEST1 | 1 | 125 | 1 (0)| 00:00:01 |
    |* 3 | INDEX RANGE SCAN | INDEX1 | 1 | | 1 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    1 - filter("T2"."ID5"=:B1 AND "T2"."ID6"=(-1))
    3 - access("T1"."ID2"=1000)
    SQL> select * from test_view where main_id = 1000;
    Elapsed: 00:00:00.03
    Execution Plan
    Plan hash value: 3806368241
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 125 | 4 (0)| 00:00:01 |
    |* 1 | TABLE ACCESS FULL | TEST2 | 1 | 39 | 2 (0)| 00:00:01 |
    |* 2 | FILTER | | | | | |
    | 3 | TABLE ACCESS FULL| TEST1 | 1 | 125 | 2 (0)| 00:00:01 |
    |* 4 | TABLE ACCESS FULL| TEST2 | 1 | 39 | 2 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    1 - filter("T2"."ID5"=:B1 AND "T2"."ID6"=(-1))
    2 - filter(CASE WHEN "T1"."ID2"= (SELECT /*+ */ "T2"."ID4" FROM
    MJ42."TEST2" "T2" WHERE "T2"."ID5"=:B1 AND "T2"."ID6"=(-1)) THEN
    "T1"."ID3" ELSE "T1"."ID2" END =1000)
    4 - filter("T2"."ID5"=:B1 AND "T2"."ID6"=(-1))
    SQL>
    </pre>

    If you think about what the two queries are doing, it is easy to see why the first uses an index and the second does not.
    Your first query:
    SELECT * FROM test_view WHERE id2 = 1000explicitly uses an indexed column from test1 in the predicate. Oracle can use the index to identify the correct row from test1. Having found that single row in test1, it uses the FULL SCAN test2 to resolve the case statement.
    Your second query:
    SELECT * FROM test_view WHERE main_id = 1000uses the result of the case statement as the predicate. Oracle has no way of determing what row from test1 to use initially, so it must full scan both tables.
    John

  • Need help with Table of Content

    Hi,
    I have recently started working with Robohelp 7. I just
    completed my first project working with the tool. This project has
    several Topics, and each topic has sub-topic under them. When I
    generated the html files, I had given the Introductory sub-topic as
    the default topic.
    Now after the files are generated, I cannot open any other
    topic in the table of content until I expand the topic containing
    the default sub-topic. This issue is basically with Firefox
    browser. It seems to work well with Safari. IE anyways opens the
    folder containing the default topic.
    I am not sure if any other user have faced similar problems?
    Would like to hear from you guys too.

    Welcome to the forum
    Whenever you install new software, check for updates before
    starting work.
    Go to Help | Updates and apply both patches.
    Regenerate your help and try again. It should be OK.

  • Web Design Help

    Anyone available this wknd to help me fix up some loose edges on a website I'm trying to build.
    I made a template including a navi bar in photoshop, but when transferring to Dreamweaver, i cannot use some of the images on the template as links n others things.

    I'm home now, and I just cleared my site in dreamweaver and started over. i pasted the background in the CSS option.  I have a menu code. a drop down roll over menu. I want to put it in dreamweaver. This is the image I'm using as my background and it's positioned nicely in dreamweaver. I want the menu to be a navi bar under the Word Media Flower. How can I make menu bar appear there and where do i input the css code? plkease help. I have a deadline and I have been working on this site for 1 month already. I am sooo rusty. it has been a long time since i've done this. they are not using the tools that come with the hosting site for their web page. please and thank You

  • Need help with table partitions

    Hi all,
    I'm new at partitions and tablespaces and I've been asked to create a partition for a table. First off, here's a sample table that I have.
    create table M_TRANS  (
       TRAN_ID NUMBER,
       MONTH_KEY INTEGER,
       ACCOUNT_KEY INTEGER,
       ACCOUNT_NUMBER CHAR(8),
       LINE_KEY VARCHAR2(40),
       SERVICE_TYPE VARCHAR2(10)
    )I need to create a range partition based on Month_Key and list sub-partition based on last char of Line_Key.
    MONTH_KEY has a data format of "YYYYMM" (200802).
    LINE_KEY's last char should be in 0-9 / A-Z. 1 partition for each number 0-9 and 1 partition for alphabet values.
    Upon reading articles, samples on this particular subject, I came up with this...
    create table M_TRANS  (
       TRAN_ID                    NUMBER,
       MONTH_KEY            INTEGER,
       ACCOUNT_KEY          INTEGER,
       ACCOUNT_NUMBER       CHAR(8),
       LINE_KEY             NUMBER,
       SERVICE_TYPE         VARCHAR2(10)
    PARTITION BY RANGE(MONTH_KEY)
    SUBPARTITION BY LIST (LINE_KEY)
    SUBPARTITION TEMPLATE(
    SUBPARTITION P_0 VALUES 1 TABLESPACE TS_0,
    SUBPARTITION P_1 VALUES 2 TABLESPACE TS_1,
    SUBPARTITION P_2 VALUES 3 TABLESPACE TS_2,
    SUBPARTITION P_3 VALUES 4 TABLESPACE TS_3,
    SUBPARTITION P_4 VALUES 5 TABLESPACE TS_4,
    SUBPARTITION P_5 VALUES 6 TABLESPACE TS_5,
    SUBPARTITION P_6 VALUES 7 TABLESPACE TS_6,
    SUBPARTITION P_7 VALUES 8 TABLESPACE TS_7,
    SUBPARTITION P_8 VALUES 9 TABLESPACE TS_8,
    SUBPARTITION P_9 VALUES 0 TABLESPACE TS_9,
    SUBPARTITION P_AZ VALUES ('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z') TABLESPACE TS_AZ
    PARTITION M_JAN VALUES 'JAN'
    PARTITION M_FEB VALUES 'FEB'
    PARTITION M_MAR VALUES 'MAR'
    PARTITION M_APR VALUES 'APR'
    PARTITION M_MAY VALUES 'MAY'
    PARTITION M_JUN VALUES 'JUN'
    PARTITION M_JUL VALUES 'JUL'
    PARTITION M_AUG VALUES 'AUG'
    PARTITION M_SEP VALUES 'SEP'
    PARTITION M_OCT VALUES 'OCT'
    PARTITION M_NOV VALUES 'NOV'
    PARTITION M_DEC VALUES 'DEC'
    );The only problem is that since the MONTH_KEY has a format of "YYYYMM", how do I compare just the last 2 numbers. Same goes with the LINE_KEY.
    Can some help me? Thanks.
    Regards,
    A.Sandiego

    In 10g and earlier, you need to create separate columns for the last 1-2 characters and use those columns as partitioning keys.
    In 11g, you can use virtual columns:
    CREATE TABLE M_TRANS (
       TRAN_ID NUMBER,
       MONTH_KEY INTEGER,
       LINE_KEY VARCHAR2(40),
       MONTH_ONLY as ((month_key/100-trunc(month_key/100))*100),
       LAST_CHAR as (upper(substr(line_key,length(line_key),1)))
    PARTITION BY RANGE(MONTH_ONLY)
    SUBPARTITION BY LIST (LAST_CHAR)
       SUBPARTITION TEMPLATE (
       SUBPARTITION P_0 VALUES ('1'),
       SUBPARTITION P_1 VALUES ('2'),
       SUBPARTITION P_2 VALUES ('3'),
       SUBPARTITION P_AZ VALUES ('A','B','C')
    PARTITION M_JAN VALUES LESS THAN (2),
    PARTITION M_FEB VALUES LESS THAN (3),
    PARTITION M_MAR VALUES LESS THAN (4)

  • I Web 08 Help with page format so that a page when viewed covers the screen

    I published my pages to a folder to see how my business site would look to a viewer. It only covers part of the screen and looks dumb. If I leave the background totally white around text and photos, a page will cover the screen but also look dumb due to the big left and right margins. When I looked at other sites created in I Web, they covered the screen. Do the various pages cover the screen when published for real? When I called for help I was told that we are stuck with I Web's format. I would be grateful for anyone who has the patience to help. And I am not HTML savvy. Thanks, M
    PS. I also wanted to put a colored border around part of the page but than really narrowed the page for viewing and fitting in the content.
    A friend who has a PC used 1 & 1 to build a small professional site. It was easy, inexpensive, and looked professional. Why hasn't apple offered an easy alternative to I Web for building a professional site? Dreamweaver, I am told, is complicated.

    Welcome to the Apple Discussions. What size screen do you want to cover? My monitor is 1600 pixels wide (a 22" display). To change the size of the page you use the IInspector/Page/Layout pane. But there's a limit to what you can do and have it look good. If you shoot for a larger monitor those with a smaller will be overwhelmed and have to scroll sideways to view the page. I believe iWeb uses as a default size a good compromise for the many monitor sizes out there.
    Personally, I don't like sites that cover the entire monitor window and my desktop. Just a personal quirk.

  • Help with Tables

    I'm in the process of making a website for a professional
    organization for theatre educators. I have been plugging away then
    all of a sudden I can no longer insert a table into pages made from
    my template. In addition, every table that I'd made before is no
    longer editable. I'm a theatre professor, not really a website
    designer. I'm not certain what to do to get this ability back. Can
    someone help me out to figure out what to do to be able to work on
    tables.
    Michael

    > I can no
    > longer insert a table into pages made from my template
    What happens when you try? Can you show me a page where you
    cannot do this,
    and tell me where you are trying to insert the table?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Voice Guy" <[email protected]> wrote in
    message
    news:e8m4vd$bct$[email protected]..
    > I'm in the process of making a website for a
    professional organization for
    > theatre educators. I have been plugging away then all of
    a sudden I can
    > no
    > longer insert a table into pages made from my template.
    In addition,
    > every
    > table that I'd made before is no longer editable. I'm a
    theatre
    > professor, not
    > really a website designer. I'm not certain what to do to
    get this ability
    > back. Can someone help me out to figure out what to do
    to be able to work
    > on
    > tables.
    >
    > Michael
    >

  • Help with tables and borders?

    How can I add a border to the bottom of the cell? If you see
    http://www.compusa.com, you can
    see that the left 'frame' has a table with one cell with
    'Advertised Specials' (which is also underlined) while the other
    cells that don't have any borders. How can I draw that line under
    'Advertised Specials'? I can't underline the word because the line
    will only cover the length of the word, so I can only assume that
    they're doing this by adding a bottom border to just one cell. Is
    this how they do it?
    How can I get that effect? Can I draw?
    Thanks

    "vonchi_m" <[email protected]> adding a
    bottom border to just
    one cell. Is this
    > How can I get that effect? Can I draw?
    No, you need to use css to define a bottom border to a table
    cell. Alan has
    give you the css, you then need to apply that to the cell
    where you want a
    bottom border
    <td class="bottomline">Name of Link</td>
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html

  • Help with tables in DW

    My first website I am creating to do graphic/logo/website
    design. I sliced my header image in photoshop, then in dreamweaver
    created 2 tables to put the graphics in. When I put them in, I get
    a strange white space. I have table width and border = 0. The site
    is at www.goomegadesign.com
    Any help appreciated!
    -Paul

    Change this -
    <center>
    <table width="0" border="0">
    <tr>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_01.jpg"
    /></td>
    </tr>
    </table>
    <table width="0" border="0">
    <tr>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_02.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_03.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_04.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_05.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_06.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_07.jpg"
    /></td>
    </tr>
    </table>
    </center>
    to this -
    <table width="0" border="0" cellspacing="0"
    cellpadding="0"
    align="center">
    <tr>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_01.jpg"
    /></td>
    </tr>
    </table>
    <table width="0" border="0" cellspacing="0"
    cellpadding="0"
    align="center">
    <tr>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_02.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_03.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_04.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_05.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_06.jpg"
    /></td>
    <td><img
    src="
    http://www.goomegadesign.com/OmegaHeader2/omegaheader2_07.jpg"
    /></td>
    </tr>
    </table>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "GoOmegaDesign" <[email protected]> wrote in
    message
    news:[email protected]...
    > My first website I am creating to do
    graphic/logo/website design. I
    > sliced my
    > header image in photoshop, then in dreamweaver created 2
    tables to put the
    > graphics in. When I put them in, I get a strange white
    space. I have
    > table
    > width and border = 0. The site is at
    www.goomegadesign.com
    >
    > Any help appreciated!
    >
    > -Paul
    >

Maybe you are looking for

  • Firefox always starts maximized

    Whenever I start firefox, it's maximized. This normally wouldn't be a problem, but I've got dual monitor with xinerama, and it spans both monitors. Even that would be tolerable, but it doesn't start centered, it starts with it's upperleft corner in t

  • Video Clips From the Net????

    Hey, what would be the best (free) program to lift clips from sites like YouTube to work with them in Imovie....or is that even possible? any help would be greatly appreciated, thank you.

  • Thumbnails & Preview filenames do not match Master filename

    Hi - can't find any threads regarding this... Basic problem is that Aperture is not renaming the Preview & Thumbnail filenames when it renames images on import - anyone else experiencing this problem? I have a managed Aperture Library (2.1.3). I rena

  • HR Authorisation issue

    Hello All, One of my abaper have developed zreport from std txn PC00_M08_DRL_PERSON. The user assigned to this txn is unable to get the list of personel numbers when trying to search with * and the error he gest is "Result list is incomplete due to m

  • What is the best process for conversion moving district data to city data?

    Hi ALL, I Need to write one conversion which will move the district field data into city field data in infotype 6.. It need to apply for only one  Specific country which can be identified by Employee Personnel Area..and it should be apply for all act