How do I add a table to a preformed template that I got ?

how do I add a table to a preformed template that I got ? I
have tried inserting a table but it always ends up inside another
table already created. But I want a brand new fresh table but
cannot seem to be able to get the cursor in the empty area.

This page is not a DW Template. It's just an ordinary HTML
page. And if
you *paid* for it, I'd ask for my money back -
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.martynbird.co.uk%2Fradiocontr olcarsites%2F
Anyhow, to place a table in the location you desire, click
within the words
"Sites to buy your Radio control vehicles and spares" in
Design view, then
look at the Tag Selector bar at the bottom of the document
pane, and click
on the first <p> tag from the right. That will select
the entire <p> tag
and its contents. Since you cannot insert a table within a
<p> tag, you
would want the insertion point to be just to the right of
that paragraph, so
press the right arrow once. In Design view, you will see the
insertion
point to the right of the 'spares'. Now you can insert a
table.
WARNING: Using DW without a basic understanding of HTML and
CSS will cause
you to encounter mystery after mystery just like this, and
will ultimately
make your hair fall out and your teeth rot. Just don't take
that chance.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"mb007inc" <[email protected]> wrote in
message
news:gh8ekt$2sa$[email protected]..
> The page is located at
http://www.martynbird.co.uk/radiocontrolcarsites/
> The place I want the brand new table is to the right of
where the text is
> that is as follows "Sites to buy your Radio control
vehicles and spares"
> When I try to use the code view it just puts it into a
pre existing table
> ....I cannot place the cursor outside of the other
tables as it just wont
> let
> me. I click outside the tables and the flashing cursor
just stays where it
> is.
>

Similar Messages

  • How do I add a email to my iMessage so that I can have two emails

    How do I add a email to my iMessage so that I can have two emails

    Settings>Messages>Send & Receive at>You can be reached by iMessages at>Add another email. Add the email address and wait for Apple to verify it. You will have to respond to their email which will be sent to the inbox of the email address that you are adding to messages.
    you can find more information here.
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

  • How do I add a playlist to iTunes Match so that it'll appear on my Apple TV?  It was appeared on it before but ever since I added some CDs to the playlist, it won't show anymore.  Please help.

    How do I add a playlist to iTunes Match so that it'll appear on my Apple TV?  It was appeared on it before but ever since I added some CDs to the playlist, it won't show anymore.  Please help.

    When new content is added to a playlist it has to be updated for it to be available across devices. If it's content that isn't matched the playlist is removed from the cloud. Did you make sure to access store - update iTunes Match? It should do it automatically after a few minutes but the odd time I have to force it.
    Other than that may want to try reboot, log out/in. 

  • Customizing Slideshows - how do I add an image in the text box that only shows up for a specific ima

    Customizing Slideshows - how do I add an image in the text box that only shows up for a specific image and not in every text box?

    Can you maybe provide a screen shot to further explain your question?
    Julia

  • How do you redesign a site with a new template that has apps, etc.?

    In BC Cafe I was advised to do the redesign in the same site and keep as much as possible of the existing site so as to not affect SEO. I have chosen a BC Gurus Template that fits our needs and the client's budget that has a number of apps. I don't knw how to meet the suggestion that I build the redesigned site with the new template within the same site. I know we will have to upgrade to eCommerce to be able to do so but logistically I am not sure how to do that.
    It seems to be that I'm missing something very obvious and that I shouldn't be stumped by this. What am I missing?
    John

    Let me clarify. I know how to upgrade to eCommerce, I don't know how to merge the trial site with the existing site. I also don't know all of the factors I will need to consider when I have trial pages up for viewing as well as the existing site. This seems like a problem to me.

  • How can i add two table data into third internal table see below

    hi i insert diffferent table data into different internal table i did try to insert two different internal table data into third internal table by using move
    but only single data is coming please help me
    i want this two internal table data inot third internal table.
    sELECT  * FROM J_1IEXCHDR INTO CORRESPONDING FIELDS OF ITAB1 WHERE STATUS = 'P'.
    SELECT * FROM J_1IEXCDTL INTO CORRESPONDING FIELDS OF ITAB2  WHERE LIFNR = J_1IEXCHDR-LIFNR.
                             AND DOCYR  = J_1IEXCHDR-DOCYR,
                             AND DOCNO  = J_1IEXCHDR-DOCNO.
    WRITE: /  ITAB1-LIFNR,
              ITAB1-DOCNO,
              ITAB1-EXYEAR,
              ITAB1-BUDAT,
              ITAB2-EXBED,
              ITAB2-RDOC,
              ITAB2-ECS.
    ENDSELECT.
    ENDSELECT.
    thank you .

    hi
      Two add two internal tables data.  first we need to create third internal table with all the fields of first two internal tables.
    later u move the two internal tables data to third internal table
    by looping the internal table which have more records or depending on the requirement and move the corresponding fields of first internal table to the third internal table and use the read statement with condition based on primary key of first itab and get the corresponding data of 2table into 3table.
    i am sending the sample code to u.
    check it out. i think u will understand how to move.
    select vbeln waerk netwr erdat audat kunnr
       into table it_vbeln
       from vbak
       where vbeln in s_vbeln
         and erdat in s_erdat.
      if not it_vbeln[] is initial.
      select kunnr name1
       into table it_kunnr
       from  kna1
       for all entries in it_vbeln
         where kunnr = it_vbeln-kunnr.
      endif.
      loop at it_vbeln.
      clear it_final.
       it_final-vbeln = it_vbeln-vbeln.
       it_final-waerk = it_vbeln-waerk.
       it_final-netwr = it_vbeln-netwr.
       it_final-erdat = it_vbeln-erdat.
       it_final-audat = it_vbeln-audat.
      read table it_kunnr with key kunnr = it_vbeln-kunnr.
       it_final-name1 = it_kunnr-name1.
      append it_final.
      endloop.

  • How can i add a table header using DefaultTableModel?

    Im having problems finding examples of creating a table header using the DefaultTableModel. Can anyone point me in the right direction?
    so far i am able to create a table and add rows, but i need the first row to be the header with title and i am not able to do that with this model.
    Below is an excerpt of what i have thus far...
    JTableHeader header = new JTableHeader();
            checkOutTable.setModel(tableModel);
            checkOutTable.setRowSelectionAllowed(true);
    private DefaultTableModel tableModel = new DefaultTableModel(
                new Object [][] {
                        {"Item ID", "Title", "Type", "Serial ID", "Status", "Response", "Print"},
                    new String [] {
                        "TITLE 1", "TITLE 2", "TITLE 3", "TITLE 4", "TITLE 5", "TITLE 6", "TITLE 7"
                ){Class[] types = new Class[] { java.lang.Object.class,
                        java.lang.Object.class, java.lang.Object.class,
                        java.lang.Object.class, java.lang.Object.class,
                        java.lang.Object.class, java.lang.Object.class };
                public Class getColumnClass(int columnIndex) {
                    return types[columnIndex];
                }};

    Use the constructor that takes a Vector of column names and a row count.
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/table/DefaultTableModel.html#DefaultTableModel(java.util.Vector,%20int)

  • How Can I Add Pivot Tables of Excel Into JSP Pages

    Hello all,
    Basing upon a query to database, i wanted to add a Microsoft Excel pivot table functionality in JSP page [with the result of query].
    Is it possible to create a Pivot Table in JSP with dynamic data from database ??
    Can any body help me in solving this issue ???
    Thanks & Regards
    Krishna

    There are a few alternatives to doing this (depending on the clients you are serving this page up for).
    Going the pure HTML
    There is an open source project called JPivot which provides an HTML front end for Pivot Table (using tag libraries)
    Going the Microsoft Office route there are a few options:
    1) POI HSSF ( http://jakarta.apache.org/poi/index.html) allows you to "update" an existing Pivot table by replacing data values contained in a template pivot table.
    2) Use the open source XELEM api (xelem.sourceforge.net) which produces SpreadsheetML (Micorsofts current XML file Format). At present, I don't believe this handles creating a pivot table from scratch (you have to manually create the Pivot Table template, read in the template (with XELEM) and update the data values in the template before writing it out. (the same holds true for POI)
    3) Commercially the company I work for (www.workbeans.com) is writing a pure Java Pivot Table API that will allow you to create a Pivot Table in the Excel SpreadsheetML file format from scratch. (supported by Office 2000, XP and 2003). The Pivot table functionality isn't slated until a future release (Oct. 2005), so if you can wait until then we could help you further.
    Best,
    Eric
    M. Eric DeFazio
    Application Architect, workbeans
    [email protected]

  • How do i add a table?

    how do i insert a blank table into indesign/

    See the Online Help:
    https://helpx.adobe.com/indesign/using/creating-tables.html
    If you already read it and tried, you may want to explain how it does not work for you.

  • How can i add two table into one internal table

    I WANT TO ADD THIS TWO DIFFERENT TABLE INTO ONE INTERNAL TABLE PLEASE HELP.
    TABLES: J_1IEXCHDR, J_1IEXCDTL.
    SELECT * FROM J_1IEXCHDR WHERE STATUS = 'P'.
    WRITE: / J_1IEXCHDR-LIFNR,
              J_1IEXCHDR-DOCNO,
              J_1IEXCHDR-EXYEAR,
              J_1IEXCHDR-BUDAT.
    SELECT * FROM J_1IEXCDTL WHERE TRNTYP = J_1IEXCHDR-TRNTYP
                              AND DOCYR  = J_1IEXCHDR-DOCYR
                              AND DOCNO  = J_1IEXCHDR-DOCNO.
       WRITE: / J_1IEXCDTL-EXBAS,
                J_1IEXCDTL-EXBED,
                J_1IEXCDTL-RDOC1,
                J_1IEXCDTL-ECS.
    ENDSELECT.
    ENDSELECT.
    THANKS IN ADVANCED.

    U have to link these 2 tables like this
    <b>SELECT
    J_1IEXCHDR~DOCNO
    FROM J_1IEXCHDR inner join J_1IEXCDTL
    on J_1IEXCHDRDOCYR  = J_1IEXCDTLDOCYR
    WHERE STATUS = 'P'.</b>
    this is sample code only, and u have to check the F.key relationship.
    Regards
    Prabhu

  • How do I add a table of contents to a PDF document created through iBooks?

    I've been working on a iBook for a while for work and it functions great on an iPad. However, when I publish it as a PDF there is no table of contents. Is there a way to have the table of contents displayed automatically for the book? I dont mind if it's just a table of contents list like in a Word document, but the PDF file is very difficult if it's over 800 pages with no table of contents.

    Update on what I did:
    So instead of having an automatically generated template, I created a table of contents for each section on the chapter title slide. This table has 3 columns, Section, Topic and Page and then I use that as a reference guide for users who only use the PDF version of the document. There is no way to have interactive reference links in table elements in iBook but it suits the purpose well.

  • How do I add songs to a current playlist now that I've downloaded iOS 7 to my iPhone 4? I don't seem to be able to add songs anymore-- when I try to add the song, it just starts playing it instead.

    I used to be able to open the playlist, choose to Edit it, then go to the song I wanted to add and the song would have a plus sign next to it and if I tapped the song, it would be added to the playlist however many times I tapped it. Now when I Edit the playlist, I go to the song I purchased to add it and there is no plus sign, but I figured, hey maybe that's new too, and I tap it anyway. Instead of going on my playlist it just starts playing. I even thought, after multiple attempts at this, that if I let the song play all the way through it would go on my list, but that was a failed idea as well.
    Does anyone out there know how to fix this? I realize I can probably start a new playlist---or maybe I cant!!! --I haven't even tried! But even if I can, I don't want too because this one has lots of songs in a particular order, and I just want to add my new purchases!
    I already greatly dislike the visual changes that came with iOS 7 - so I hope these other issuesare easily fixable....
    Thanks!

    Hi TakesTwo2Tango,
    Thanks for using Apple Support Communities.  It sounds like you should definitely be seeing a plus sign after tapping Edit, so I would try a couple relatively easy things (closing the Music app, resetting the iPhone):
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    Cheers,
    - Ari

  • How do I add a link to an attachment graphic that appears on the page?

    Hello,
    I'm new to wiki work and I need your help!
    I'm trying to add a link to twitter on the page, such that the user from the wiki will click on the the twitter icon and it will go to the twitter page so they can follow it.
    This is what I tried:
    uploaded the twitter icon as an attachment.
    Tried inserting the attachment with a link with this:
    [!TwitterIcon.png|align=left,border=1!| |http://www.twitter.com/SAPBOEIM ]
    I think looked at the notation and tried to use this example, but couldn't figure out about the coordinates that are required:
    Would you please provide the syntax required to link to twitter using the twitter logo?
    Here is my wiki page:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/InformationManagementUseCaseWiki
    Thanks
    ginger

    Hi,
    To embbed a link to an image (after you upload it) please use the following code:
    [!nameofthepicyouuploaded.filetype!|http://www.whereyouwantolinkto.co.il]
    In order to learn how to upload an image,please visit our [SCN user guide|http://wiki.sdn.sap.com/wiki/x/sIsLD]
    Hope this helps:)

  • How do I reference a table in a cell so that when I type in a word, other cells in that row are automatically filled in?

    I'm making a cheat sheet for my fantasy football league. To this point I have separate sheets that list players at various positions (the sheets are characterized by the positions they cover i.e. quarterback/running back etc). I also have at the end a table that lists a team abbreviation (identical to how I would reference the team in the other sheets) with that team's bye week and schedule listed.
    I want to be able to type a team name next to a player's name and have that team's information be filled into the cells on the same row, by referencing that table I have at the end.
    Can anyone help? Very much appreciated. Thanks.

    Take a look at VLOOKUP in the iWork Formulas and Functions User Guide.
    You'll also find several discussions here on essentially the same question by searching for VLOOKUP. Also check the More Like This list to the right of these messages.
    Regards,
    Barry
    PS: The iWork Formulas and Functions User Guide may be downloaded via the Help menu in Numbers.
    B

  • How can I add a category in the budget template for pages on the iPad?

    I can add a category in the budget tab and it will automatically be added to the pie chart summary and the bar graph actual vs. budget portion, but I can't seem to add an option in the categories column on the transactions tab. Anyone know how I can do that?

    There is no way.
    http://www.apple.com/feedback/macosx.html is the place for feature requests and feedback

Maybe you are looking for

  • My "fix" to print problems in LR (using MS XP)

    Having had the same problems printing from LR as many others are complaining about, I thought that I might give my 2 cents to what I did to solve (?) the problem. I have to run with current setting in a while to be convinced that it is not just an in

  • For my Azure Website, I don't see instrumentation for its dependent Azure database

    I followed the instructions found at Application Insights Azure WebSite extensions but I don't see any instrumentation for the Azure SQL database that the Azure website uses. For the windows "Application Health / Overview timeline" I see graphs for C

  • Using Automator to "cat" files

    Hi all- I was wondering if someone could help me with an Automator workflow. I've never used Automator... but I'm pretty sure it can do what I'm looking for. I need it to "cat" .MTS (AVCHD) files for me. I'd like it to order them alphabetically, then

  • No "Load Earlier Messages" when using iMessage

    i send a lot of messages via normal sms and imessage on Normal sms there is a load earlier messages button when you scroll up to let you see previous messages on imessage there isnt that option, is there a way where i can see all previous imessages s

  • Macbook Pro fans stuck at 6000 RPM

    Hello, I am using a 2006 MacBook Pro, 2GB RAM, 2 GHz Intel Core Duo with a 500GB HDD that has 450 GB free. About a month ago the left and right fan started cranking up to 6000 RPM (which is apparently max for this model) upon startup. Most discussion