Why doesnt applies table style?

Give, pls a hint (again ;))
I plan to format table entirely (table style, all cells style, para body style, para header style and cell header style)
I stared with:
Set MyInd = CreateObject("InDesign.Application.CS3")
Set myDoc = MyInd.ActiveDocument
Set myPage = myDoc.Pages.Item(1)
MyInd.Paste '(get clipboard from word-table)
Set myStory = myDoc.Stories.Item(1)
Set myParagraph = myStory.Paragraphs.Item(1)
Set myTable = myParagraph.Tables.Item(1)
On Error Resume Next 'for debugging purpose
myTable.Rows.Item(1).RowType = idRowTypes.idHeaderRow
On Error GoTo 0
'myTable.AppliedTableStyle = "Table Style Body"
i work, but don't overrides
'myTable.AppliedCellStyle = "Table Style Body" '''the same
myTable.ApplyStyle "Table Style Body", True
i override, but "OBJECT DOESNT support!"
myTable.ApplyStyle "Cell Style Body", True 'the same
How to apply table style to whole table? (how to script correctly?)
Thanks

Yes.
I wrote like this:
kk = myTable.Columns.Count
With myTable
Call .Cells.ItemByRange(.Cells.Item(1), .Cells.Item(-1)).Item(-1).ClearCellStyleOverrides
Call .ClearTableStyleOverrides
Set mySel = .Cells.ItemByRange(.Cells.Item(1), .Cells.Item(-1)).Item(-1) 'for all table
Set mySelH = .Cells.ItemByRange(.Cells.Item(1), .Cells.Item(kk)).Item(-1) 'for only header
End With
myTable.AppliedTableStyle = "Table Style Body"
mySel.AppliedCellStyle = "Cell Style Body"
mySelH.AppliedCellStyle.AppliedParagraphStyle = "Table body"
mySelH.AppliedCellStyle = "Cell Style Head"
mySelH.AppliedCellStyle.AppliedParagraphStyle = "Table Head"
So we can apply parastyles only for object "cell", not for "table"?
So we must have specified range of cells for working with?
Thanks.

Similar Messages

  • Problems applying table styles

    I created a table style. I was under the impression that I could click on any existing table with random formatting, and the new styles would be applied. This is not the case. On some tables they are only partially applied, e.g. fills and strokes.
    Any idea what's happening here?
    Thanks,
    totallockout

    Here's a screen grab which shows the cell styles also greyed out. Does this help?

  • A script to apply cell style to entire rows containing a specific text

    Hi,
    I am using InDesign CC 2014
    Does anyone know how to apply a cellstyle based on text contents found in a cell in javascript?
    I need to search the document and change cell style in entire row to "cellStyle01" if the text "someText" appear in cell.
    I've found similar script here in forum which apply table style, but don't know how to change it to apply cell style!
    var curDoc = app.activeDocument;
    var allTables = curDoc.stories.everyItem().tables.everyItem();
    app.findTextPreferences = app.changeTextPreferences = null;
    app.findTextPreferences.findWhat = "someText";
    var allFounds = allTables.findText();
    app.findTextPreferences = app.changeTextPreferences = null;
    for ( var i = 0; i < allFounds.length; i++ ) {
    var curFound = allFounds[i];
    if ( curFound.length == 1 ) {
    var curFoundParent = curFound[0].parent; 
    // curFoundParent.parent.appliedTableStyle = curDoc.tableStyles.itemByName( "tableStyle" ); 
    curFoundParent.parent.appliedCellStyle = curDoc.cellStyles.itemByName("cellStyle01"); 
    Thanks!

    Hi,
    Try this,
    var doc = app.activeDocument, 
        _tables = doc.stories.everyItem().textStyleRanges.everyItem().getElements(), 
        i, j, k, l, a, _rows,_cells, rowlen; 
    for(i =0;i<_tables.length;i++) 
        for(j =0;j<_tables[i].tables.length;j++) 
            _rows = _tables[i].tables[j].rows; 
            for(k =0;k<_rows.length;k++) 
                _cells = _rows[k].cells; 
                for(l =0;l<_cells.length;l++) 
                    if(_cells[l].contents == "someText") 
                        rowlen = _cells[l].parent.cells.length; 
                        while(rowlen--) 
                              _cells[rowlen].appliedCellStyle = doc.cellStyles.item("cellStyle01"); 
    Regards,
    Chinna

  • Problem with footer in table style not applying paragraph style... or just me?

    I'm having a niggling problem making a table style with cell/paragraph styles for the header, body, and footer respectively. I want to make it as simple as possible for other users but one thing keeps tripping me up. I'll try and describe with screenshots. I'm using InDesign CS5 on Windows 7.
    I have a table style set up with cell styles for the header, body, and footer, and paragraph styles for each as well. Say I'm converting a list of generic text to this table:
    i convert it to my table style. The body style is a numbered list:
    I convert the header to an, err, Header. The cell applies the header paragraph style as I should expect:
    I convert the footer likewise, but it maintains the Body text paragraph style as an override!
    So naturally I clear the override and it works fine. But of course, I'd rather it acted like the header row. I can't work out where the override on the footer comes from and why it operates differently in this respect to the header row. There is nothing different about how the styles are constructed. Have I made a mistake somewhere, or is this correct behaviour I'm misinterpreting, or something...?
    edit: Here is the file, if that will help:
    https://www.dropbox.com/s/4kzgui1itaskuvz/strip%20list%20test.indd

    Hi,
    I was able to reproduce the issue you are facing.
    I will be logging a bug for this and it would be investigated.
    Thanks a lot for reporting the problem!!
    Javed

  • Apply MS Style to a table

    Hi.
    I currently coding on a template which use openXML. I create some tables and I would like apply to them a MS style. I saw in style.xml some values about those default style but when I try to apply it to my tables it doesn't work.
    Specifically, I would like apply the "Medium Grid 1 Accent 1" to my tables.
    Here my code :
    //init code
    vTable = new Table();
    vProps = new TableProperties();
    vTable.AppendChild<TableProperties>(vProps);
    ApplyMsStyleToTable(vTable, -1, "Medium Grid 1 Accent 1");
    //fill table
    private static void ApplyMsStyleToTable(Table pTable, int pIndex, string pStyleMS)
    try
    TableProperties vTblPr = pTable.Descendants<TableProperties>().FirstOrDefault();
    if(pIndex < 0)
    vTblPr.AppendChild<TableStyle>(new TableStyle {Val = pStyleMS});
    else
    vTblPr.InsertAt(new TableStyle { Val = pStyleMS }, pIndex);
    catch (Exception)
    throw;
    So, can I use MS default style or I must made it by myself ? If I must made it, where can I find all informations to create the exact same style ?
    I have another question about this, if I can use MS default style, does the needed string must be in the current word language ? I want to say, if my word is in another language than english does the "Medium Grid 1 Accent 1"
    string works in a French or Korean word  ?
    Thank you in advance for your help.
    EDIT : I'm using word 2007
    PS : sorry for my bad english ;).

    Hi Bloopis,
    >>So, can I use MS default style or I must made it by myself ? If I must made it, where can I find all informations to create the exact same style ?
    In my option, you can use MS default style, and you do not need to make it by yourself.
    >>I create some tables and I would like apply to them a MS style. I saw in style.xml some values about those default style but when I try to apply it to my tables it doesn't work.
    I made a simple demo with your code, and I think there are two issues for this situation. First, you defined one table, but you did not add any row and column. Second, I think you need to use the "MediumGrid1-Accent1" instead of "Medium Grid
    1 Accent 1". Some key code like below:
    private void Form0410_Load(object sender, EventArgs e)
    InsertTableInDocWithNoPro(@"D:\OfficeDev\OpenXML\Test.docx");
    using (WordprocessingDocument wordprocessingDocument =
    WordprocessingDocument.Open(@"D:\OfficeDev\OpenXML\Test.docx", true))
    Table vTable = new Table();
    Body body = wordprocessingDocument.MainDocumentPart.Document.Body;
    vTable = wordprocessingDocument.MainDocumentPart.Document.Body.Elements<Table>().Last();
    ApplyMsStyleToTable(vTable, -1, "MediumGrid1-Accent1");
    public static void InsertTableInDoc(string filepath)
    // Open a WordprocessingDocument for editing using the filepath.
    using (WordprocessingDocument wordprocessingDocument =
    WordprocessingDocument.Open(filepath, true))
    // Assign a reference to the existing document body.
    Body body = wordprocessingDocument.MainDocumentPart.Document.Body;
    // Create a table.
    Table tbl = new Table();
    // Set the style and width for the table.
    TableProperties tableProp = new TableProperties();
    TableStyle tableStyle = new TableStyle() { Val = "GridTable1Light" };
    // Make the table width 100% of the page width.
    TableWidth tableWidth = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };
    // Apply
    tableProp.Append(tableStyle, tableWidth);
    tbl.AppendChild(tableProp);
    // Add 3 columns to the table.
    TableGrid tg = new TableGrid(new GridColumn(), new GridColumn(), new GridColumn());
    tbl.AppendChild(tg);
    // Create 1 row to the table.
    TableRow tr1 = new TableRow();
    // Add a cell to each column in the row.
    TableCell tc1 = new TableCell(new Paragraph(new Run(new Text("1"))));
    TableCell tc2 = new TableCell(new Paragraph(new Run(new Text("2"))));
    TableCell tc3 = new TableCell(new Paragraph(new Run(new Text("3"))));
    tr1.Append(tc1, tc2, tc3);
    // Add row to the table.
    tbl.AppendChild(tr1);
    // Add the table to the document
    body.AppendChild(tbl);
    For information about creating table with row and column, you could refer the link below:
    #Working with WordprocessingML tables (Open XML SDK)
    https://msdn.microsoft.com/en-us/library/office/gg278313.aspx
    For using the "MediumGrid1-Accent1" instead of "Medium Grid 1 Accent 1". I have tried to find a document to prove it, but I failed. In my option, the "MediumGrid1-Accent1" is the StyleId of the "Medium Grid 1 Accent 1".
    For how to find the StyleId, I will recommend you apply the table style in a table manually, then use OpenXML productivity Tools to reflect the code to see the StyleId, the picture below shows more details:
    >> if I can use MS default style, does the needed string must be in the current word language ? I want to say, if my word is in another language than english does the "Medium Grid 1 Accent 1" string works in a French or Korean word 
    In my option, the StyleId worked in another language. I only have the English version. I think you could use OpenXML productivity Tools to reflect code in other language to check it.
    For information about OpenXML productivity Tools, you could refer the link below:
    http://www.microsoft.com/en-hk/download/details.aspx?id=30425
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • InDesign CS3 crashing adding table style...HELP!!

    This issue started on Friday.  I just starting working on a large document that will have many tables throughout, so I must use the table styles.  Here is the order in which I do things to get the crash.
    Place document from Word in to InDesign document
    Highlight table to be changed
    Convert text using paragraph styles
    Alter column widths to fit page
    Highlight entire table to select table style
    Click desired table style
    CRASH!!!!
    I have tried the following things with NO LUCK:
    Deleted adobefntX file multiple times (actually worked for a couple of hours first time I did it)
    Deleted InDesign preferences (did nothing)
    Re-created all "Styles" in InDesign (Character, Paragraph, Cell, & Table) (Did nothing)
    Changed the order in which I altered the tables text and formatting (thinking it was just a silly order problem)
    Unistalled and Re-installed CS3 (worked for 5 tables and then CRASH)
    Updated ALL software (Adobe and Mac)
    Started up in Safe mode and CRASH!!!
    I realize from seraching for this problem on the web that I am probably the ONLY person having this issue, but I thought it was a font problem until I started in Safe Mode and still crashed.  I am totally confused as to what I should do next.  I am running on a
    Model Name:    MacBook Pro
    Model Identifier:    MacBookPro4,1
    Processor Name:    Intel Core 2 Duo
    Processor Speed:    2.4 GHz
    Number Of Processors:    1
    Total Number Of Cores:    2
    L2 Cache:    3 MB
    Memory:    4 GB
    Bus Speed:    800 MHz
    Boot ROM Version:    MBP41.00C1.B03
    SMC Version (system):    1.27f1
    Any help would be GREATLY appreciated.

    I am not familiar with InDesign Interchange, do you think this will help?
    That's why I suggested it. But you didn't answer my question: Is this happening with only one file? The reason I ask is because if one file is corrupted, saving to INX and back to INDD often clears out minor corruptions. If you're seeing this in many files it's unlikely they're all corrupt.
    1. Convert text using paragraph styles - I meant modified "placed" text using character styles
    Now I'm really confused. Your steps are:
    Place document from Word in to InDesign document
    Highlight table to be changed
    Modify placed text using character styles
    Are you really highlighting an entire table and applying a character style? While this will work to modify certain formatting aspects, it's not really the best approach. Character styles are for characters *within* a paragraph. Paragraph styles are for *entire* paragraphs. Each table cell contains at least one full paragraph, even if it's just a single number, a space, even if there's nothing there at all. If you want to format the contents of an entire cell or range of cells with the same formatting, use a paragraph style, not a character style. If you want to italicize one or two words in some text in a cell (the way I just did), then use a character style.
    I really feel that the issue either stems from fonts or from placing the document from Word.
    Could be. Cheap fonts are the cause of many problems in Indesign. Indesign is really picky about fonts. But let's try the easy fix first (INX). If you don't trust it, save the .inx to a new .indd filename (keep your old .indd file as a backup).
    Ken

  • Table styles in RH don't transfer to Word 2010

    In RH, I have defined a table style called top-row-shaded, and have mapped this style for delivery to Word, in word-template.dot file. All RH tables of style top-row-shaded shoud map to my Word template style top-row-shaded, but they don't.
    Does anyone kmow a fix?
    If not, does anyone have a word macro that can convert my tables to the  top-row-shaded style in the Word file?
    My RH file has another table style (called no-border) that I don't want to convert, so I can't simply apply the style to all tables in the Word file.
    Thanks, Joanne

    Without setting up a test, I'm not sure why the tables are not mapping. By all means see the Contact page on my site and send me a one topic project and the Word template. I will take a look but it will be at least a week or so before I can.
    Meantime there is a macro on my site that will need editing that will find each table and then allow you to apply changes or skip to the next table.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Why won't table of contents work in Pages

    I am creating a songbook with one song on each page.  I have about 65 pages.  I have applied the style "Heading 2" to all song titles at the top of each page.  I went into the TOC tab of the Inspector and where it says "select paragraph styles whose text will appear in the table of contents", I selected "Heading 2" and clicked the box to the right of it so page numbers show up.  I then went to the Insert menu and selected Table Of Contents (a TOC option doesn't show up when I click Sections in the toolbar).  Pages inserted a page in which only one entry shows up on the TOC.  I double checked that all of my page titles were the Heading 2 format and they are.
    Why is Pages not making the TOC properly?

    A Textbox is an object.
    A Shape is an object (it can contain text as well as images).
    A Table is an object.
    A Chart is an object
    The T.O.C. will not scan any of these.
    Why are you using tables for a set of songs? Just make the layout multiple columns if that is what you want and then the text can be scanned.
    Peter

  • Separate table title autonumbering for two named table styles?

    I believe this very same question whizzed by a few weeks ago but I'm having no luck searching for it.
    I have two named table styles.  I want the autonumbering for the table titles to be separate.  More specifically, one will autonumber as "Table t", while the other will autonumber as "Example e".
    I have redefined the autonumbering counter for the second of the two TableTitle para style, and if I apply that style while in that table's title, I get the new autonumbering.  But I can't transmit (a) selectively update the Table Title style to this format to other tables in the chapter.  By extension, I can't copy the  wonderful new table format to other chapters in the book.
    I next tried creating a new para style "ExampleTitle", then in the Table Designer trying Update All.  Nope, other tables of type example do not receive the new title style.
    This is fully-patched FM8.  The document is structured but I don't (want to) care about that -- I simply need to get the two different named table styles
    to autonumber sequentially.
    This is probably pretty easy once I learn the "trick"...(?)
    Cheers & thanks,
    Riley

    Arnis:
    Thanks.  For some reason I couldn't get my table to update, so I went through and manually create a second table title paragraph style, then manually applied that.  (I also created a second x-ref format so that I could x-ref to "Example n:" without including the colon in the x-ref, but that's another story...)
    So for now I've worked around the problem.  After I get this document out I'll revisit the issue.  (Why do I have a vague recollection that there's a known idiosyncracy where FM6+ table styles don't update properly...?)
    Cheers & thanks 'gain,
    Riley

  • Min. row height table style

    A new table in Indesign is by default set with a minimum row height of 1.058 mm. This 'minimum' feature is also visible in a table style (the 'exact' feature is not for some reason). When I import a table from Word for example, it's row height might be different. For example a certain row had a height of 25 mm. So I applied the cell style to it where I set the 'min' rowheight to 1.058 mm. However, the row height still remains 25 mm. This doesn't only happen to imported tables. I've inserted a new table in indesign. This had a row height of 1.058 by default. Then I dragged a row heigher to 40 mm for example. Then I applied the cell style again with 'min' set to 1.058. The row height should turn to 1.058 but it remains 40 mm. Why can't I apply a rowheight in a cell style? Now I have to convert a table to text and then back to table again to get the default rowheight back.

    If you want to force it to be a certain height, you should change "At Least" to "Exactly." "At Least" does just what it says it does—it sets a minimum for the row height, but lets the max vary. It should like you want to rows to be "exactly" a certain height, even if it causes text to become overset.
    You should also be able to change your defaults when you have no documents open if you prefer it to work differently.

  • How do you have the bottom stroke of a table show up using Table Styles and Cell Styles only?

    I am using InDesign CS6, and I want to create a Table Style that has the bottom stroke show up, but does not have a table border, such as:
    However, whenever I try to change the Table or Cell strokes so that the last stroke shows up, I get the entire table border, or some strange combination of borders:
    Does anyone have any insight on how I can get the bottom stroke to show up while preserving my other stroke properties? Since I work with long documents, it's necessary to be able to control all of my tables through Table Styles and Cell Styles, and not by manually changing each and every table with the Stroke palette.
    For reference, here are the my current Table Style properties and the resulting table:

    Michael Murphy is the InDesign style-meister. He wrote "Adobe InDesign Styles" for Adobe Press, and did a great Lynda.com title on InDesign styling. Here's what he says in the book:
    "As mentioned at the beginning of this chapter, with all the power of table and cell styles, it is important to understand not only how they work and what they can do for you, but also to understand their limitations.
    "Two formatting features missing in table and cell styles have already been discussed: You will always have to set the column width and row height of cells when applying a table style for the first time, and you will always have to convert body rows to header and/or footer rows every time you apply a table style for first time or update the table's data....
    "But there's another kind of limitation that's important to keep in mind as you are designing tables: It is very easy to design a table that cannot be completely defined by a table style. In many cases, you'll need to define an extra cell style or two that lets you complete for formatting. [my emphasis]."
    So I think that's what you have to do: Apply another cell style on top of the cells at the bottom of the table after applying the table style.

  • Having problem with applying layer style "stroke" to group

    - Windows 8.1 / 64bit
    - i3-4150 / 4GB / Geforce GTX 750 TI
    - Photoshop CC 2014
    Hi!
    I don't know why, but there is some problem that applying layer style "stroke" to group.
    When i make a group with some layer and apply to group a layer style-stroke with inside option,
    the strokes looks like grid are generated inside.
    Why i said that stroke cross to ㅎrid, because it looks like grid if i make that group bigger.
    (that black square is 'Rectangle 1' layer. Just resizing bigger than before)
    Does anyone have same problem with me?
    Please, I need your help..

    pillfish wrote:
    I am having the same problem. it happens every time in cc and cc 2014. I am back using cs6. Which seems to run better on the whole.
    That's interesting. And this is happening with CC and CC 2014?  Do you have all the updates for the Photoshop CC versions?
    I've just tried to duplicate it without success, (windows 7, GTX570) so I wonder if there is a condition that triggers it?  Unfortunately, with this being such an old thread, the only person still around is R Kelly.
    OK, I just thought to try it on my Cintiq Companion 2, which has Windows 8.1 and Intel 5100, and the bug occurred. I actually got as far as firing up my Win 8.1 laptop before remembering that I had to sign out of CC to put it on my Cintiq, so I only have CS6 on it.
    Anyway....  looks like the bug is still there.  Are you using Win 8.1?

  • FIND/CHANGE - Applying Paragraph Style

    Hello,
    I used FIND/CHANGE to apply my paragraph style and when I apply the paragraph style... it applies the style to the entire line.
    For example,
    A. #70712       resulted to         A. #70712
    I only wanted the "#70712" to be changed to my style. I used the GREP search and entered #.+ and then I choose the paragraph style I want and clicked change all. The problem is that it changed all the text on that line and applied the paragraph style.
    Please help. Thank you very much.

    graphicsoc wrote:
    Hello,
    I used FIND/CHANGE to apply my paragraph style and when I apply the paragraph style... it applies the style to the entire line.
    For example,
    A. #70712       resulted to         A. #70712
    I only wanted the "#70712" to be changed to my style. I used the GREP search and entered #.+ and then I choose the paragraph style I want and clicked change all. The problem is that it changed all the text on that line and applied the paragraph style.
    Please help. Thank you very much.
    If I understand your request correctly:
    If your paragraph style uses a numbered list to create the "A." and the remainder of the paragraph consists of only "# 70712" that you type in manually (or place from an existing file), I believe that you you don't need GREP. You can format the auto-numbered list differently from the remainder of its paragraph, by specifying a character style for the number portion.
    To extract only the non-numbered portion of an auto-numbered paragraph, for a TOC, in the Table of Contents dialog box, open the bottom part by clicking More Options if necessary, and in the Numbered Paragraphs pull-down menu, select Exclude Numbers.
    Read more about Table of Contents in Help, and/or with a Google search for terms like "InDesign table of contents numbered list exclude numbers" without quotes.
    If you need additional special formatting "tricks" in the source paragraphs, or in the TOC entry paragraphs, look into Nested Styles and GREP
    Styles in Help or Google searches.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How to apply multiple styles for nested tags in XML?

    Say you import this XML into InDesign:
    <Root>
      <strong>
        <em>Bolded and Italicized</em>
      </strong>
    </Root>
    And you have two character styles, bold and italics, to map to strong and em tags respectively.
    You will see that the text appears italicized not bolded and italicized as expected. Generally, only the innermost tag will get the style and will overwrite its parent styles.
    Notice the XML is generated dynamically and tags order is not enforced. Also, there's an additional underline tag that can be nested with these two.
    So far I have tried to use GREP styles (with paragraph styles), but these do not have effect in the XML tags.
    Other possible options not tried yet:
    Create new tags for every formatting combination. Not what I really want because I could en up with a lot of tags each one with a corresponding styles.
    Create InDesign XML rules to apply character styles automatically based on the tags
    Use character styles in the XML with the aid namespace referencing InDesign styles. Will this really work?
    What do you suggest to go for? See any other option?
    Thank you in advance.
    Juan

    I'd say that you should create tags not for appearances, but for semantic content. Specifying formatting styles in your XML betrays your lack of familiarity with the format, because the last thing you'd want to do would be to use HTML markup in the middle of your XML. If you have content that's supposed to be both bolface and oblique - say, a warning - then it's marked up as
    <warning>Never refer directly to formatting in your XML markup, only to content types!</warning>
    If I had a document that was written in the style you suggest - one with lots of overlapping local formatting - I'd look at developing a better style guide that told the writers that doing so would be bad form. Because, you know, many of the writers I deal with are addicted to forms of emphasis that do nothing useful whatsover for their readership - they only serve to overemphasize the authorial voice of the writers.
    Maybe you could tell us why you need these overlapping forms of styling, and we could suggest other InDesign formatting tools (like line styles or nested styles) that would help you get the appearance you want without crowding styling markup into your XML - where, strictly speaking, it doesn't really belong.

  • How to apply CSS style values to h:messages ?

    Hi Folks,
    I'm quite new to JSF development. What I'm currently trying to do, is to apply a CSS style for a <h:messages> tag:
    <h:messages globalOnly="true" style="color: red;" layout="table" />Unfortunately the style "color: red;" is not being applied to the generated HTML table (or list):
    <table>
       <tr>
          <td>My Error Message!</td>
       </tr>
    </table>But I assume the generated HTML should rather look something like this:
    <table style="color: red;">
       <tr>
          <td>My Error Message!</td>
       </tr>
    </table>I'm using MyFaces 1.1.3 with Tomcat 5.5. Is this maybe a bug in MyFaces?
    Salute

    We speak HTML here.
    Let's see what you have tried so far, please.
    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
    ==================
    "Buescorpmtf" <[email protected]> wrote in
    message
    news:g3p16e$j03$[email protected]..
    >I have been trying to apply a simple CSS style of a
    rounded border to my
    >web
    > pages. I received the coding and images from
    http://www.roundedcornr.com.
    > I
    > downloaded the images and linked them in the CSS style
    editor. I tried to
    > apply the style to the webpage/container, but it won't
    apply. This seems
    > like
    > a pretty simple task, but I can not get it done.
    >
    > Does anyone know how to do this? Step by Step and in
    plain English? :)
    >
    > Thanks
    >

Maybe you are looking for

  • Need help in using Runtime class

    Hi all, I am facing problem with JRE versions of websphere and SUN JRE. Let me explain my problem. We have an application working fine in websphere, Now my organization wants to migrate this app to websphere. This application downloads some set of ja

  • Cheapest way to get cables for Macbook to TV

    I went to bestbuy (i have newer alumium macbook 13") and wanted some cable . i have LCD 32" Samsung (bought Dec 2008) so I figure VGA cable, the Apple brand cable cost $25 PLUS an adapter which was another $40. Almost $70 with taxes! Anyone know a ch

  • Field EXBAS in J_1IEXCDTL is not updated

    Dear All, When I create Excise invoice, the field EXBAS is not getting updated in J-1IEXCDTL table, what could be the reason, Please help. Regards, Reddy

  • THE price for Mac pro

    Sorry, I would like to ask, If I buy Mac pro series for two will the price be cheaper or not? Thank you.

  • INSERTs  Blocking WPs

    Hi Experts, We have a strange issue in our production system. During month end we have noticed so many INSERTS against BSAS table and eventually Work processes are getting blocked. We also see locks on AGKO table during this issue. Even after killing