Why is it bolding in my table?

This is a real simple question (from simple minds come simple things).  I have a table that is rendering in bold print in all the browsers and I cannot figure out why.  http://jeannettedutton.com/draft/kitten.html   Under "Regular Rates" it should not be bolded.
Help!
Jeannette

Hi Jeannette,
now I'm here ;-))) not only Adobe had some problems to gain access to the forum for me.
The first I could see, that there is no:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Animal Hosp of Kennewick KITTEN PKG</title>
</head>
<body>
</body>
</html>
in your "kitten.html".
What concerns your "Bold" please look here (screenshot from my German DW):
If you remove the check mark from "Kopfzeile" (= header?) Bold disappears, see here:
Hans-G.

Similar Messages

  • Need Help : Urgent : Making one of the record Bold in a Table

    Hi Frds,
    I am new to OAF.......
    I am  facing the issue that i have to make one of the record bold in a table...........
    By using the query, i m trying to display the payslip
    It contains the list of Earnings ,Deductions and NetPay amount..........
    this is the part of the query........
    select payment_date,element_name,arabic_name,val,balance from
      select '0' flag,assignment_id,null payment_date,'Payslip for the Month'  element_name,to_char(payment_date,'Month-YYYY')arabic_name,
       null val, null balance from xx_payroll_info
    where 1 =1
    and payment_date = last_day(:2) 
    and assignment_id = (select assignment_id from xx_people_reporting_info
        where person_id = :1)
    union all
    select '1'flag,assignment_id,payment_date,element_name,arabic_name,
       value val,null,balance
      from xx_payslip_details_mv
    where 1 = 1
    and payment_date = last_day(:2)
    and earn_deduct = ('E')
    and assignment_id in (select assignment_id from xx_people_reporting_info)
    union all
    select '2' flag,assignment_id,payment_date,'Earnings-Total',null,sum(value) val,null
      from xx_payslip_detail_mv
    where 1 =1
    and payment_date = last_day(:2)
    and earn_deduct = 'E'
    and assignment_id in (select assignment_id from xx_people_reporting_info
           where 1 =1
                and person_id = :1 )
    group by assignment_id,payment_date
    My Requirement is : I have to make the Payslip For the month of , Date, Earnings-Total  into Bold.....  How can i do this.... plz... help me out in this......
    Thanks &Regards,
    Jaya

    Hi Jaya,
    Set CSS Class property as  OraDataText for respectiveb column.
    OR
    /In Controller PR
                    import oracle.cabo.style.CSSStyle;
                    CSSStyle customCss = new CSSStyle();
                     customUnCss.setProperty("text-transform","uppercase");
                     customUnCss.setProperty("font","bold 16px \"Trebuchet MS\", Verdana, sans-serif");//# -red
                     OAMessageStyledTextBean styledTextBean =(OAMessageStyledTextBean)webBean.findIndexedChildRecursive("POCommentsItem");
                     if(styledTextBean!=null)
                      styledTextBean.setInlineStyle(customUnCss);
           Thanks,
            Dilip

  • In BAPI's why the structures are used in table parameters?

    Hello sir,
    what is BAPI sir? In BAPI's why the structures are used in table parameters?  table parameters they are using structures but not using any customized tables ? 
    regards
    rachu.

    Hello Rachu
    BAPIs provide RFC-enabled interfaces to SAP business objects (e.g. like customer, sales order, purchase order, etc.).
    A BAPI does basically the same like you would need to do calling the corresponding transaction (e.g. BAPI_SALESORDER_CREATE -> VA01).
    Since they are RFC-enabled they can be called from external systems.
    BAPIs represent an external interface for the outside world. Very often you will find within the BAPI that there is a mapping done to the (SAP-)internal structures at the beginning of the coding and vice versa at the end of the coding. Thus, you will (almost) never find any DB table name used as type of a BAPI TABLES parameter.
    Regards
      Uwe

  • Why Index size is bigger than table size?

    Dear All,
    I found in my database my tables sizes is coming around 30TB (All Tables in Database). and my index size for the same is 60TB. This is data ware housing environment.
    How the index size and table size are differing?
    Why they are differing? why index size is bigger than table size?
    How to manage the size?
    Please give me clear explanation and required information on the above.
    Regards
    Suresh

    There are many reasons why the total space allocated indexes could be larger than the total space allocated to tables. Sometimes it's a mark of good design, sometimes it indicates a problem. In your position your first move is to spend as little time as possible in deciding whether your high-level summary is indicative of a problem, so you need to look at a little more detail.
    As someone else pointed out - are you looking at the sizes because you are running out of space, or because you have a perceived performance problem. If not, then your question is one of curiosity.
    If it's about performance then you should be looking for code (either through statspack/AWR or sql_trace) that is performing badly and use the analysis of that code to help you identify suspect indexes.
    If it's about space, then you need to do some simple investigations aimed at finding a few indexes that can be "shrunk" or dropped. Pointers for this are:
    select
            table_owner, table_name, count(*)
    from
            dba_indexes
    group by
            table_owner, table_name
    having
            count(*) > 2   -- adjust to keep the output short
    order by
            count(*) desc;This tells you which tables have the most indexes - check the sizes of the tables and indexes and then check the index definitions for the larger tables with lots of indexes.
    Second quick check - join dba_tables to dba_indexes by table_name, and report the table blocks and index leaf blocks in desending order of leaf block count. Look for indexes which are very big, and also bigger than their underlying tables. There are special cases (and bugs) that can cause indexes to be much bigger than they need to be ... this report may identify a couple of anomalies that could benefit from an emergency fix followed (possibly) by a strategic fix.
    Regards
    Jonathan Lewis

  • Why do we really use External tables in Oracle?

    I looking why do we exactly use external tables in oracle and if you can help me please give me a scenario also.

    Before External tables (long ago in a galaxy far, far away) we would have had to load the text file into the database, most likely using SQL Loader before we could 'read it'.
    External tables allow us to define the text file in the Create table syntax and read that file over and over via SQL from the databse - In summary, I can access that text file (in parallel = fast) without loading it into my database, I just saved a step in my integration. I can also swap the file for a new file (same definition) and auto-magically access by new content.
    Here is a good link with a scenario for you :
    External Tables: An Introduction – All Things Oracle
    Of course with ODI - the complexity of SQL Loader control files is hidden, we just define the text file, use the LKM File to SQL and load it in, but where is the fun in that?
    Best check with your Solution Architect about what the best practises are for this in your organization.
    Rgrds
    Alastair

  • Why there are differences in error table definitions?

    Why there are differences in error table definitions?
    We are using OWB repository 10.2.0.3.0 and OWB client 10.2.0.3.33. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux.
    I created a error table using DBMS_ERRLOG.CREATE_ERROR_LOG in databse.
    Here is the layout.
    =========
    ORA_ERR_NUMBER$
    ORA_ERR_MESG$
    ORA_ERR_ROWID$
    ORA_ERR_OPTYP$
    ORA_ERR_TAG$
    PROJECT_ID
    DESCRIPTION
    PROJECT_TYPE
    CREATION_DATE
    ===========
    I imported the table metadata into OWB. As I used the table in mapping using table operator, I am not able to see ERR group in table object of mapping.
    How do we bring manually created error table metadata into OWB? Is it feasible?
    I specified data rule/shadow table for imported table using object editor. I deployed the table via CC.
    Here is the layout from deployed ERROR table from DB
    +++++++++++++
    ORA_ERR_NUMBER$
    ORA_ERR_MESG$
    ORA_ERR_ROWID$
    ORA_ERR_OPTYP$
    ORA_ERR_TAG$
    ERR$$$_AUDIT_RUN_ID
    ERR$$$_AUDIT_DETAIL_ID
    ERR$$$_ERROR_ID
    ERR$$$_ERROR_REASON
    ERR$$$_SEVERITY
    ERR$$$_OPERATOR_NAME
    ERR$$$_ERROR_OBJECT_NAME
    PROJECT_ID
    DESCRIPTION
    PROJECT_TYPE
    CREATION_DATE
    ++++++++++++
    Why there are differences in error table definitions?
    As I used the table in mapping using table operator, I am not able to see ORA_ERR_NUMBER$ , ORA_ERR_MESG$ , ORA_ERR_ROWID$ , ORA_ERR_OPTYP$ , ORA_ERR_TAG$ in ERR group in table object of mapping.
    Are there any additional steps/process?
    Any idea ?
    Thanks in advance.
    RI

    There are columns for data rule errors (logical errors) and DML errors (physical errors), I think you probably have data rules on the table..?
    To process DML errors you will have to add the error table into a map you may have to reverse engineer it). The error group behavior is only available for processing errors from tables with data rules. Ensure your table operator is synchronized with your design table.
    http://blogs.oracle.com/warehousebuilder/newsItems/viewFullItem$184
    Cheers
    David

  • Why should avoid OLTP compression on tables with massive update/insert?

    Dear expert,
    We are planning oracle OLTP compression on a IS-U system, could you tell me
    Why should avoid OLTP compression on tables with massive update/insert?
    What kind of impact on the performance in the worst case?
    Best regards,
    Kate

    Hi
    When updating compressed data Oracle has to read it, uncompress it and update it.
    The compression is then performed again later asynchronously. This does require a lot more CPU than for a simple update.
    An other drawback is that compression on highly modified tables will generate a major increase in redo / undo log generation. I've experienced it on an DB where RFC tables where by mistake compressed, the redo increase was over 15%.
    Check the remark at the end of  Jonathan Lewis post.
    Regards
    http://allthingsoracle.com/compression-in-oracle-part-3-oltp-compression/
    Possibly this is all part of the trade-off that helps to explain why Oracle doesn't end up compressing the last few rows that get inserted into the block.
    The effect can be investigated fairly easily by inserting about 250 rows into the empty table - we see Oracle inserting 90 rows, then generating a lot of undo and redo as it compresses those 90 rows; then we insert another 40 rows, then generate a lot of undo and redo compressing the 130 rows. Ultimately, by the time the block is full we have processed the first 90 rows into the undo and redo four or five times.

  • Why does IBA not include the table of contents when exporting to PDF?

    Why does IBA not include the table of contents when exporting in PDF? I can seee the TOC in iBooks Author but when I want to see what it looks like in a regular PDF, the TOC does not show up.

    Strange question you ask here. Not sure why that is relevant to "why" IBA won't publish a table of contents in a PDF.
    But since eyou asked, it's simple, I want to author some books in IBA and also see what they look like - completed - in PDF. Again, any suggestions as to a work around so I don't have to cut and paste back into Pages?

  • Why is text bold? - See html page

    Hi, thank you for reading this....
    Why do you think the text is bolding on this page?
    http://www.happyhealthymotherbaby.com/email/mb-mobile.html
    i searched for bold and strong and found nothing. Also asked DW to clean up Word text (it was not from Word) and asked to clean up  xhtml.
    Still it is bolding.
    Why oh why....
    As you can see have attached the styling to the td tag, for inline styling
    (This is a page that will be for mobile phone to read so have limited the table width to 250px)
    Thanks for your kind consideration.
    Warmly, Hope
    ps. scope tag is showing up...why is that happening...it is necessary?

    Ken...thanks so much...wow...good to know...I will do as you say and change that tag to td...great
    thanks again so much
    I have no idea how that th tab and the scope tags got in there...
    DW adds them automatically?
    OK, now i see, I had the 3ed option 'top' choosen when adding the table.
    have now changed it back to the 1st option 'None'
    Thanks so much...really appreciate

  • Bold font within tables

    Helloe to all,
    Within Dreamweaver 8, I added some tables to my website and
    included text. However, I cannot prevent the text from showing in
    bold even though the 'bold' tab is not selected or 'on' so to
    speak.
    I cannot understand why this is happening or why I cannot
    prevent the text showing as bold.
    Please help,
    Many thanks
    Jeff

    You have inadvertantly elected to have table headers when you
    inserted the
    table. Look at the diagram on the table insertion panel the
    next time you
    do that.
    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
    ==================
    "jeffuk123" <[email protected]> wrote in
    message
    news:eiign7$an1$[email protected]..
    > Helloe to all,
    >
    > Within Dreamweaver 8, I added some tables to my website
    and included text.
    > However, I cannot prevent the text from showing in bold
    even though the
    > 'bold'
    > tab is not selected or 'on' so to speak.
    >
    > I cannot understand why this is happening or why I
    cannot prevent the text
    > showing as bold.
    >
    > Please help,
    >
    > Many thanks
    >
    > Jeff
    >
    >
    >

  • Unable to turn column headers bold in Word table using VB Script

    I have created a table in Microsoft Word 2010 using VB Script (this is via the script engine that forms part of HP Quality Centre functionality).  The table itself is OK, 2 columns with centred headers.  However, I am unable to make the column
    headers bold.  I have spent hours searching the net and trying various options to no avail can somebody please help me.
    Set objWord = CreateObject("Word.Application")
    Set objDocument = objword.Documents.Open(Src_Dir & template_file
    Const wdAlignParagraphCenter = 1'var to control justification of the table columns
    Const NUMBER_OF_ROWS = 1 'number of rows in intial table
    Const NUMBER_OF_COLUMNS = 2 'number of colums in the intitial table
    'search for the "TAA_TABLE" bookmark embedded in the document template, this is where the table will be created
    Set objRange=objDocument.Bookmarks("TAA_TABLE").Range
    'create the table
    objDocument.Tables.Add objRange, NUMBER_OF_ROWS, NUMBER_OF_COLUMNS
    Set objTable = objDocument.Tables(2)
    'populate column headers
    objTable.Cell(1, 1).Range.Font.Bold = True
    objTable.Cell(1, 1).Range.Text = "Sub Contractor"
    objTable.Cell(1, 2).Range.text = "TAA Number"
    'centre the column headers
    objDocument.Tables(2).Rows(1).Select
    Set objSelection = objWord.Selection
    objSelection.ParagraphFormat.Alignment = wdAlignParagraphCenter
    'format the table with plain grid lines
    objTable.AutoFormat(16)
    'set the column widths
    objTable.Columns(1).Setwidth 230,0
    objTable.Columns(2).Setwidth 230,0
    Any help is graetfully appreciated, as this is driving me wild.
    Cheers,

    Hi Citronax,
    I haved noticed that you used objTable.AutoFormat to format the table. Based on my understanding, this fuction will applie a predefined look to a table.
    After I move the code which bolder the text behind this line of code, it works well for me.
    'format the table with plain grid lines
    objTable.AutoFormat (16)
    objTable.Cell(1, 1).Range.Font.Bold = True
    Regards & Fei
    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.

  • How can I make the GRID lines more bold within a table in the new Pages?  (Not the outline of a table)

    I can't find where to darken GRID lines on a table in the new Pages.  I can make the outline more bold, but not the grid lines within the table.  Is there a way to do this?  The default grid lines are far too faint.

    Yeah, the Help is missing a little.
    If you select the block of cells that you want to change, then in the Format inspector:
    Select the Cell tab
    Expand the Border section
    Set a line type
    Set a line width
    Choose a line color
    Choose one of the nine options for which borders get the new settings

  • Selective BOLD text in table

    Hi guys,
    I have report on Service Request Active reporting subject area. Standard table view with one additional column with custom text displayed using CASE...WHEN logic. This works perfectly fine.
    What I need is to display the values being pulled to be displayed in BOLD (not the whole field just selective text). for this under column properties in Data Format tab i selected HTML and tried using <bold>text/column formula</bold> or <b'>text/column formula</b"'> or ['b]text[b'] (added a couple of ' here in the post to remove the forum's formatting) but nothing seems to work out. Can someone point out where to place the bold tags and the format so that i can get this working
    *sample logic statement*
    CASE
    WHEN "- Service Request Custom Attributes".PICK_16 = 'Tier 3 Integration'
    THEN 'Issue 1 = ' || "- Service Request Custom Attributes".PICK_16 || ',<br> ' || 'Issue Owner = '|| IFNULL ("- Service Request Custom Attributes".PICK_20, 'NO OWNER ASSIGNED')
    WHEN "- Service Request Custom Attributes".PICK_17 =
    ELSE 'NULL'
    END
    thanks
    Gaurav
    Edited by: Gaurav Shah on Mar 4, 2011 6:56 PM

    How would I use conditional formatting?
    Let's say I've given the field a custom heading of Issue - Owner (combination of values from 2 separate fields based on certain CASE logic). I go to the Properties>Conditional Format tab> I click on Add Condition and it shows the list of columns. I select Issue - Owner. It throws up the combined values as possible answers which would be incorrect.
    The 2 columns used to combine this are not used in the report, so i cannot use that to filter and if i do add those columns then also i do not get the correct filter settings.
    I have a complete sentece displayed in that column - part of it is static text that i have entered and part of it is the column formula which displays various picklist values based on the logic.
    I need some words of the static text and some of the formula highlighted.
    for e.g. this is displayed in the column
    The Issue 1 is Integration and Issue Owner is John Doe
    Issue 1 is static text while John Doe is value returned based on CASE logic
    I need 2 separate types of data displaed in bold

  • Why is the FactAdditionalInternationalProductDescription a fact table in the AdventureworksDW2008R2 database?

    Was wondering why this table is a fact table in the AdventureworksDW2008r2 database?  It has no measures that I can tell. 
    Here is the schema for the table....
    [ProductKey] [int] NOT NULL,
    [CultureName] [nvarchar](50) NOT NULL,
    [ProductDescription] [nvarchar](max) NOT NULL

    Yes, I think it should be a dimension also.
    The dimDate table has translation for month, dyas, etc in other languages.  They don't put those translations in a fact table.  Also, fact tables have measures, you can not perform math on those columns except maybe count...
    The only thing I could think of is maybe it is some sort of intermidiate table... like if you have a many to many and need a one to many for SSAS, but still trying to wrap my head around some of these concepts.
    I have just been studying this stuff for about a year or so, so wasn't sure.  Studying for 70-463 hope to get MCSE someday too.
    Mike

  • Why can't I update a table of contents in Windows InDesign CS 5.5?

    I have clicked in a table of contents frame, but on my layout menu, "udpate table of contents" is grayed out.
    I have "moved" my table of contents from an InDesign doc I created weeks ago into a new doc. I can update it in the old doc, but when it's copied into the new doc, the update option is no longer available.
    Why can't I updated it once it's in another doc so I can use its TOC styles & layouts rather than having to redefine those all over again?
    Thanks!

    Loading the TOC style gave me the fonts I wanted, but not the dots & the page numbers that were in the doc from which I loaded the styles.  My TOC has no page numbers now, but I do like the font.
    Is there a trick to getting the page number display with the dots to show up?

Maybe you are looking for