Change he font size in html

Hello
how do i cange the font size of the
<td>#CurrentRow#</td>
<Td>#CASE_NBR#</td>
<td>#dateformat(CRTN_DT,"mm/dd/yyyy")#</td>
to bold and size arial 10?
and how do i change the font size:
<th>Record Number</th>
<th width="120">Case Number</th>
<TH>Creation Date</TH>
to to bold and size arial 8?
or smaller than what it currently displaying?
also is there a better way?
thanks
<cfquery name="getCityWideCases" datasource="cts9i">
SELECT
--PROP.STR_NBR
--,PROP.STR_FRAC_NBR
--,PROP.STR_FRAC_NBR_RNG_END
--,PROP.STR_DIR_CD
PROP.STR_NM
--,PROP.STR_SFX_CD
--,PROP.STR_SFX_DIR_CD
--,PROP.STR_UNIT_TYP_CD
--,PROP.UNIT_NBR
--,PROP.PROP_ID
--,PROP.ZIP_CD
,CASE.CASE_NBR
--,CASE.CASE_ID
--,CASE.CASE_TYP_CD
,CASE.CRTN_DT
--,APLC.PROJ_DESC_TXT
--,TYP.CASE_TYP_DESC
FROM
CTS.TLA_PROP PROP
,CTS.TLOC L
,CTS.TCASE CASE
--,CTS.TAPLC APLC
--,CTS.TREF_CASE_TYP TYP
WHERE
PLAN_AREA_NBR = '1'
AND L.LOC_ID = PROP.PROP_ID
AND CASE.APLC_ID = L.APLC_ID
AND PROP.STR_NM != 'TEST'
--AND CASE.PARNT_CASE_ID IS NULL
ORDER BY
<cfswitch expression="#Form.orderBy#">
<cfcase value="CASENUMBER">
CASE.CASE_NBR
</cfcase>
<cfcase value="CREATIONDATE">
CASE.CRTN_DT
</cfcase>
</cfswitch>
</cfquery>
<!---html report--->
<cfswitch expression="#Form.outputFormat#">
<cfcase value="HTML,PDF">
<cfsavecontent variable="htmlData">
<!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=iso-8859-1" />
<title>Citywide Cases Report</title>
</head>
<style type="text/css">
td{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
th{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
background-color:#FFFF99;
h2{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
h3{
font-family:Arial, Helvetica, sans-serif;
font-size:15px;
</style>
<body>
<cfoutput>
<table border="0" cellpadding="3" cellspacing="0">
<tr>
<td align="center">
<h3>Citywide Cases
Report</h3><br><br></td>
</tr>
<tr>
<td align="center">
</h2>Your query returned #getCityWideCases.RecordCount#
records</h2></td>
</tr>
<tr>
<td>
<table border="2" cellpadding="2" cellspacing="0">
<tr>
<th>Record Number</th>
<th width="120">Case Number</th>
<TH>Creation Date</TH>
</tr>
<cfloop query="getCityWideCases">
<tr bgcolor="<cfif currentrow mod
2>GHOSTWHITE<cfelse>WHITE</cfif>">
<td>#CurrentRow#</td>
<Td>#CASE_NBR#</td>
<td>#dateformat(CRTN_DT,"mm/dd/yyyy")#</td>
</tr>
</cfloop>
</table>
</td>
</tr>
</table>
</BODY>
</HTML>
</cfoutput>
</cfsavecontent>
<cfswitch expression="#Form.outputFormat#">
<cfcase value="HTML">
<cfoutput>
#htmldata#
</cfoutput>
</cfcase>
<cfcase value="PDF">
PDF
<cfdocument format="pdf">
<cfoutput>
#htmldata#
</cfoutput>
</cfdocument>
</cfcase>
</cfswitch>
</cfcase>
<cfcase value="CSV">
<CFHEADER NAME="Content-Disposition" VALUE="attachment;
filename=citywide.csv">
<cfcontent type="application/msexcel">"Case
Number","Creation Date"
<cfoutput
query="getCityWideCases">#ltrim(CASE_NBR)#,"#dateformat(CRTN_DT,"mm/dd/yyyy")#"
</cfoutput>
<cfabort>
</cfcase>
</cfswitch>
<cfquery name="getCityWideCases" datasource="cts9i">
SELECT
--PROP.STR_NBR
--,PROP.STR_FRAC_NBR
--,PROP.STR_FRAC_NBR_RNG_END
--,PROP.STR_DIR_CD
PROP.STR_NM
--,PROP.STR_SFX_CD
--,PROP.STR_SFX_DIR_CD
--,PROP.STR_UNIT_TYP_CD
--,PROP.UNIT_NBR
--,PROP.PROP_ID
--,PROP.ZIP_CD
,CASE.CASE_NBR
--,CASE.CASE_ID
--,CASE.CASE_TYP_CD
,CASE.CRTN_DT
--,APLC.PROJ_DESC_TXT
--,TYP.CASE_TYP_DESC
FROM
CTS.TLA_PROP PROP
,CTS.TLOC L
,CTS.TCASE CASE
--,CTS.TAPLC APLC
--,CTS.TREF_CASE_TYP TYP
WHERE
PLAN_AREA_NBR = '1'
AND L.LOC_ID = PROP.PROP_ID
AND CASE.APLC_ID = L.APLC_ID
AND PROP.STR_NM != 'TEST'
--AND CASE.PARNT_CASE_ID IS NULL
ORDER BY
<cfswitch expression="#Form.orderBy#">
<cfcase value="CASENUMBER">
CASE.CASE_NBR
</cfcase>
<cfcase value="CREATIONDATE">
CASE.CRTN_DT
</cfcase>
</cfswitch>
</cfquery>
<!---html report--->
<cfswitch expression="#Form.outputFormat#">
<cfcase value="HTML,PDF">
<cfsavecontent variable="htmlData">
<!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=iso-8859-1" />
<title>Citywide Cases Report</title>
</head>
<style type="text/css">
td{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
th{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
background-color:#FFFF99;
h2{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
h3{
font-family:Arial, Helvetica, sans-serif;
font-size:15px;
</style>
<body>
<cfoutput>
<table border="0" cellpadding="3" cellspacing="0">
<tr>
<td align="center">
<h3>Citywide Cases
Report</h3><br><br></td>
</tr>
<tr>
<td align="center">
</h2>Your query returned #getCityWideCases.RecordCount#
records</h2></td>
</tr>
<tr>
<td>
<table border="2" cellpadding="2" cellspacing="0">
<tr>
<th>Record Number</th>
<th width="120">Case Number</th>
<TH>Creation Date</TH>
</tr>
<cfloop query="getCityWideCases">
<tr bgcolor="<cfif currentrow mod
2>GHOSTWHITE<cfelse>WHITE</cfif>">
<td>#CurrentRow#</td>
<Td>#CASE_NBR#</td>
<td>#dateformat(CRTN_DT,"mm/dd/yyyy")#</td>
</tr>
</cfloop>
</table>
</td>
</tr>
</table>
</BODY>
</HTML>
</cfoutput>
</cfsavecontent>
<cfswitch expression="#Form.outputFormat#">
<cfcase value="HTML">
<cfoutput>
#htmldata#
</cfoutput>
</cfcase>
<cfcase value="PDF">
PDF
<cfdocument format="pdf">
<cfoutput>
#htmldata#
</cfoutput>
</cfdocument>
</cfcase>
</cfswitch>
</cfcase>
<cfcase value="CSV">
<CFHEADER NAME="Content-Disposition" VALUE="attachment;
filename=citywide.csv">
<cfcontent type="application/msexcel">"Case
Number","Creation Date"
<cfoutput
query="getCityWideCases">#ltrim(CASE_NBR)#,"#dateformat(CRTN_DT,"mm/dd/yyyy")#"
</cfoutput>
<cfabort>
</cfcase>
</cfswitch>

For the mail app specifically, you can't. You can set font size for the system overall in accessiblity (Settings app > General > Accessibility > Large Text), but this will not impact some emails (such as those using graphics).

Similar Messages

  • Changing the font size does not work with Textarea with HTML Editor

    If you change the font size in the text area of a "Textarea with HTML Editor" item it does not work. I've searched the forum and the only solution I've seen is to use an HTML editor foriegn to APEX. Does anyone have a better solution? Thanks, Elizabeth

    I'm having a similar issue except with HTML Editor Standard.
    What I'm doing is allow someone to write to an HTML Editor Standard field and then an HTML marked up text is saved to a db CLOB column. In another page, I reference this DB column and show it in an HTML Region (I do a computation Before Regions for a hidden item that writes out the html with "htp.p")
    Everything shows up fine EXCEPT the font tags and headings. I'm finding that the HTML Region sets the font size only with the < d i v s t y l e="font-size: large" >and NOT < f o n t size:6 >. When the HTML Editor renders the user's text input, any size changes are made with the < f o n t > tag, which is depreciated anyways, and not with "style". That's why the size is not showing up.
    I can't really figure out why the headings aren't showing up except maybe the css style in the region is overridding it...
    Is there another APEX item type like HTML Editor (which uses FCKEditor) that I can use, or maybe another approach to remedy this issue? Or maybe this post calls for an enhancement with the HTML Editor?{size}{size}
    </div>
    Edited by: maui26 on Mar 4, 2009 10:43 AM

  • Can I change PDF font size in ibook

    I downloaded a PDF file into ibooks but the font is too small. I don't want to zoom in because then I have to move the file left to right right to left. I would like to change the font size and the document should repaginate itself. Is that possible? otherwise how can you read a full pdf page in the iphone screen?

    Generally, one of the reasons people use PDF is because it doesn't repaginate. So complex, graphic-heavy layouts stay how they were designed.
    So if the PDF file doesn't offer the same "aA" icon that an ePub file does, I don't think you can upsize the text. (I don't have any PDF files in iBooks at present to really test this, but Apple's KB here says users cannot change font size with PDF: http://support.apple.com/kb/HT4168 ).
    Look for a text or ePub version of the PDF, or Tip #5 here suggests you might be able to convert it yourself:
    http://www.macworld.com/article/153615/2010/08/automator.html
    otherwise how can you read a full pdf page in the iphone screen?
    some people are more willing to strain their eyes than others. I've managed it.

  • Can't Change Standard Font Size in Preferences

    I just got a new 24-inch iMac, which is great, but the screen is so big that web pages at the standard size are impossible to read at a comfortable distance. I went into Preferences and clicked on the "Appearance" tab, and set the standard and fixed-width font sizes to what I wanted--and nothing changed. I quit and restarted Safari, quit and restarted the iMac--no change (even though the sizes in the Preferences remained as I had set them). What the... ?
    I am using the latest Safari (2.0.4) and OS version (10.4.7). I am running Pith Helmet, but things did not change when I disabled it.
    I tried setting the "Never use font sizes smaller than..." to the size I wanted, but there are two problems with that: (1) the font size changes but the line spacing does not, making text seemed crammed together; and (2) it prevents me from sizing down the text if it appears too big on some pages. So that's not an acceptable solution, neither is Command-+'ing every single web page I come to.
    I searched the forums for the past year, and found no answers to this. Anyone have any ideas?
    Thanks!
    24-inch iMac, 15 PowerBook G4 1.67 GHz   Mac OS X (10.4.7)  

    Okay, strange thing here... it seems that Firefox and Mozilla are acting the exact same way, and the universal effect is taking on a strange form.
    I made a blog post recently where I had photos, and under each photo I set a caption, which is sized with the HTML command "font size=-1". THOSE lines respond to the font resizing, but the rest of the text does NOT; this has the strange effect of making the main page text small, and the photo captions large--instead of being smaller as intended. I checked a variety of pages and found the same thing: on some pages, all the text followed the new standard font size; on some pages, none of the text changed size; and on many pages, there was a mix of affected and unaffected text.
    I am guessing that all of these browsers only change the font size of non-CSS-formatted text or something like that. If so, it seems a bizarre thing to do. Or perhaps there is some setting on my Mac which controls this?
    Help!
    blog page with captions: http://www.blogd.com/archives/002062.html
    24-inch iMac, 15 PowerBook G4 1.67 GHz   Mac OS X (10.4.7)  

  • How do you change the font size under the event and iphoto view photos?

    I would like to change the font size in iPhoto under the photos that appear in the Events view and in the Photos view. I was told by a tech at Apple that it cannot be done because it is built into the software. What you see is what you get. That seems unusual because the font size in the Photo view is smaller than that in the Events view. The Font control that exists in File/Edit are for fonts used when you open a photo and add your own captionI and have nothing to do with the various views. Does anyone know a way to do this?   Thanks

    I'm afraid it really is WYSIWYG. It can't be changed.  You can send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • Is it possible to change the font size and weight in an ADF table?

    Is it possible to change the font size and weight in an ADF table? I have tried to change the various font size and weight settings for a table and its columns and they seem to have no effect on the font size or weight in a table row.

    You would use skinning to modify font-size & weight for the table.
    In addition to the link suggested by Vinod,
    Take a look at http://biemond.blogspot.com/2009/01/adf-skinning-in-jdeveloper-11g.html
    Thanks,
    Navaneeth

  • How to change IR font size (only) dynamically

    Hi,
    On blog http://www.danielmcghan.us/2009/01/that-font-is-too-small.html, there was a nice example how to change IR font size on the fly.
    Some how seems that this is not working new Responsive 25 theme, which is not having "td" . So could anyone help me.
    I'd like to add some saving ability to some table (user preferences table) ... sou please expand that example if possible.
    For that I made it on Apex cloud demo: FONT_SIZE_ADJ_APP
    http://apex.oracle.com/pls/apex/f?p=2354
    Login data:
    UN : guest_admin
    PWD: Qwertz123!
    THX in advance for your help.
    Brg,
    Damir

    Th actual code from the working example looks different from the blogpost
    May be worth trying this code (in your page template)
    <td style="white-space:nowrap"><span id="decreaseFont">(-) </span><span id="saveFont">Save</span><span> / </span><span id="resetFont">Reset</span><span id="increaseFont"> (+)</span></td><u>For saving this into a custom user preferences table:</u>
    - you can amend the application process RETURN_NOTHING to insert/update using the item FONT_SIZE_ADJ
    And add computation to set the value into FONT_SIZE_ADJ from the user preferences table for the first time when users login

  • Change the Font (size etc..) on the Right-Window(Text)

    Hallo Experts,
    I have following problem with JavaHelp 1.1:
    It is possible to change the Font (Menu/Options/Set Font...), but
    it effects only the left-Window(TOC).
    I want to change the Font (size etc..) on the Right-Window (Text) - because
    JavaHelp shows the Font Arial/10/Plan not in the real size - it seems - is not greater then Arial 7 or 8.
    Who can give me a tip - Thanks a lot
    Charanjeet S. Gill
    Thanking you in Advance

    Well, I haven't tried it, but seeing as the text on the right hand side is just HTML pages, I guess yu can just write your HTML using <font>, <size>, <color>, etc. tags. Let me know if it works

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • How can I change the font size on the post of WordPress?

    I have found three websites which address WordPress style sheets:
    Playing With Fonts: http://codex.wordpress.org/Playing_With_…
    Font Size and Color: http://en.support.wordpress.com/editors/…
    How to Change Font Size In Wordpress: http://www.ehow.com/how_5469172_change-f…
    Here are the instructions from the third website above:
    Things You'll Need:
    Site designed in Wordpress
    Administrator access
    Step 1
    First, to change the font size on a Wordpress site you need to log into the site as administrator. If you do not know how to reach the login page, simply add "/wp-login.php" after the "www.url.com" address. Then login using the admin sign in.
    Step 2
    Next, get to the Wordpress file editor by going to Appearance->Editor.
    Step 3
    Once in Editor, identify the Stylesheet file (style.css) and click to edit. This is usually located on the right hand side under the "Styles" heading.
    Step 4
    Once in the style.css file, you want to conduct a search for "fontsize". This parameter is used throughout the style.css file and is the parameter used to control font size. Next to "fontsize" you will see something like "16px". Simply increase or decrease the "16" to change font size. The tricky part is to figure out which "fontsize" you want to edit.
    The way to do this is to first look at the heading it is under. If it is under "comment-template", it is obviously related to either the font size of the comments themselves or perhaps the comment form or the date/time stamp of the comment.
    It may take a little trial and error to find the right "fontsize" to modify. Simply modify the one you think is correct and in a separate window, reload the page with the font you are looking to modify. If it did not change, undo the previous edit and try a different "fontsize".
    I went to the Dashboard and clicked on the “Appearance” icon on the left-hand side, and then clicked on editor. I clicked on Stylesheet (style.css), but I have not been able to find the “fontsize” that would change my post font size. As the author writes: "The tricky part is to figure out which "fontsize" you want to edit." Some of the font sizes are given as a percentage, and I don’t know if these come into question, i.e., if I should try changing one of these to see what happens.
    The end result is that I still have not been able to change my post font size, other than by using the Heading-1-through-6 option, which, I understand, is not the best way to do it.

    From John Waller: “If you're using IE8, hit F12 to launch Developer Tools which give you a point and click method of locating the relevant CSS rule on screen.”
    I have Internet Explorer 8 (IE8) so tried this method.
    This sounded like another promising possibility; however, I have not been able to change the font size in my post using this method.
    I have gone to Dashboard > Posts > Edit > then moused-over my post > clicked on "edit" and then hit F12. An enormous amount (20 pages or more) of CSS appears. I tried picking out the font size that I thought pertains to the post (under Text Area), and I have changed the font size from 13px to 24px; however, I have not been able to “save” the new setting. When I go back to it, it is back to 13px.
    As a result, I have not been able to use a trial-and-error method to establish which font size I must change in order to change the font size of my post.

  • Is there a way to change the font size and color of text in the calendar app?

    Does anyone know a way of changing the font size and color of text in the calendar app that comes with the iPad 2?  It is very hard to see the small gray numbers on the calendar.  Thanks

    Looks like you didn't get a reply on your post, but it is still a problem.  Font size is supposedly changeable via "Accessibility" in Settings, but it doesn't work.  You can turn on "Zoom".

  • How do I change the font size of a data point label on a cfchart?

    I know I can control the x axis and y axis font with the font="" attribute of the cfchart tag.  But I want to change the font size of the data label in the chart series.  Is that possible?

    To specifically and fully answer your question, no, you absolutely cannot change the “font size” as a function of print.
    First of all, there isn't a single “font size” associated with a PDF file (and we assume you are referring to a PDF file since this is an Acrobat forum).
    Secondly, PDF is a final form file format meaning that the content is static in terms of location, size, etc. on the page. To change the point size of any particular text, you really need to go back to the source document and make the changes there.
              - Dov

  • How do I change the font size of a document when I PRINT?

    How to I change the font size of a document when I print it?

    To specifically and fully answer your question, no, you absolutely cannot change the “font size” as a function of print.
    First of all, there isn't a single “font size” associated with a PDF file (and we assume you are referring to a PDF file since this is an Acrobat forum).
    Secondly, PDF is a final form file format meaning that the content is static in terms of location, size, etc. on the page. To change the point size of any particular text, you really need to go back to the source document and make the changes there.
              - Dov

  • How to Change the Font Size in Module Pool Selection Screen?

    Hi,
    There is a module pool, and I need to change the font size mentioned in the selection screen. Could you plaese tell me, how will I be able to do that?

    Hi ,
    If you are asking for text field , then check the options avaliable in Display tab of Attributes.
    Hope this helps you.

  • How do I change the font size on Adobe Reader 8.1.2

    I recently purchased an HP  laptop running Vista. It came with Adobe Reader 8.1.2.  I can't change the font size in a form that I am filling out.  I can cut& paste a different font size into the form but not change the font size.  Someone said that it is a free download so I won't be able to change the font size. Does anyone know a fix?

    To change the font size in PDF forms, one needs to have Adobe Acrobat rather than Adobe Reader.

Maybe you are looking for

  • Photoshop CS4 missing files after uninstall of CS3

    I upgraded the Adobe Creative Suite CS3.3 Design Premium today to CS4 on my MacPro. The upgrade went smoothly. After using the Adobe uninstaller for CS3 and starting Photoshop CS4, an error message appeared stating that required support files were mi

  • Missing songs in playlists

    My iTunes shows 2400 items. My iPod shows 2100 songs. I think that would mean that there are 300 songs that are not in the lPod. Is there any way, short of checking each and every song manually, to find out which songs are not assigned to a playlist?

  • Is there a way to reduce the sensitivity of the touchpad?

    Is there a way to reduce the sensitivity of the touchpad on the MacBook Pro?

  • Web Gallery airtight simple viewer

    How do I watermark images with watermark feature is not linked in output section to use - but is in others.

  • Does Apple provide in store classes etc in other than Apple Stores?

    I live in an area where the closest Apple Store is 2 hours away.  I want to take some of their classes (workshops) etc. but cannot find a resource in my area.  Does Apple allow any other stores that carry their products to provide the same level of c