CSS in tables - background and paragraphs [was: need help]

Hi there,
I'm using Dreamweaver CS3 and i'm trying to add a background image to a cell. I'm using CSS which works, but that also adds parts of the background to other cells. The only way i can do it sucessfully is by going "properties" then "bg", but i would rather use CSS because i want my page valid with W3C. Is there an easy way to do this?
I also have a problem with paragraph spacing. If i align text to the top of a cell with paragraphs, the area above the whole text moves down one line in a broswer, if i have no paragraphs then it will look exactly the same as in dreamweaver. Is this normal or is there anyway to prevent it happening?.
Any help is much appreciated, thanks.

Paragraphs have a default top margin. You need to remove or adjust the margin with your CSS:
td p {
  margin-top: 0;
Awesome! Worked right away, this has been driving me nuts for ages, thanks a lot.
In code view, you can use CSS to style a single table cell like so.
HTML:
<table>
     <tr>
          <td style="background: url(some_image.jpg) no-repeat">
          styled table cell here here </td>
          <td>unstyled table cell here </td>
     </tr>
</table>
I'm not too sure where to place this code, what does "styled and unstyled table cell" mean?
I'm not that great when it comes to codes, any help would be grealty appreciated, thanks.

Similar Messages

  • I have printers at home and work. i need help programing my macbook print utility so computer knows which printer to use depending on where i am. thanks

    i have printers at home and work. i need help programing my macbook print utility so computer knows which printer to use depending on where i am. thanks

    Look for cloud solutions such as DropBox, OneDrive, SugarSync or others. They are all cloud based services that sync documents between computers via the cloud. Of course another solution is simply a flash drive formatted in exFat so that Macs and Windows computers can read it.

  • Table name  and  field name needed for delivery note

    Hi  Experts
    I need to extract the following fields for Delivery.
    company code
    Sales organization
    plant code
    shipping point
    DDL No (VBELN)
    Sales order
    Customer PO
    Customer request date
    planned GI date
    sold to code
    ship to code
    ship to name1
    ship to name 2
    ship to address1
    ship to address2
    ship to address3
    DDL Line item(posnr)
    matnr
    DDL Doc. date
    DDL Doc. Created by
    anybody knows the field name and table name for above fileds pls help me.

    Hi,
    It is possible to get the data ship-to adress of delivery.
    step1:
             Go to LIKP table which is header data.Select the record from DB for delivery you want into one field string.
    step2:
           Get the customer number of the ship-to party (in field KUNNR IN LIKP Table) into one variable.
    step3:
           Using that customer number you can get the address of ship-to party of particular delivery in KNA1 table.
      Here is some peice of code.
      TABLES: kna1 , likp.
    PARAMETERS: p_del TYPE likp-vbeln.
    DATA:
         w_ship_to_num TYPE likp-kunnr.
    SELECT SINGLE * FROM likp
    WHERE vbeln EQ p_del.
    w_ship_to_num = likp-kunnr.
    SELECT SINGLE * FROM kna1 WHERE kunnr EQ w_ship_to_num.
    WRITE : 'Name :' ,  kna1-name1,
              'City   :'  , kna1-ort01,
              'State :'   ,kna1-regio.

  • Alignment problems in website (Was:need help with website!!!!)

    hi i made a website for my boss and everything looks great on google chrome but in IE parts are not alligned properly could some one go to the site in IE so you can see the problem for yourself and look at source code and find what i did wrong.
    http://intuitivebodyhealing.com/testimonials.html
    Thanks - Bunta

    hi again i input your code into the website and external css sheet and it does not show what it does when the code is used alone just like you gave it to me, what have i done wrong now, sorry to be such a noob. here is a link the the temp page
    http://intuitivebodyhealing.com/testimonialscopy.html
    close but something is wrong. here is my css
    body {
              font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
              background-color: blue;
              width: 960px
              margin: auto;
              background-color: #0099FF;
    #body{
              width:1050px;
              margin:auto;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
              padding: 0;
              margin: 0;
    h1, h2, h3, h4, h5, h6, p {
              margin-top: 0;           /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
              padding-right: 15px;
              padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
              border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
              color:#414958;
              text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
              color: #4E5869;
              text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
              text-decoration: none;
    /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
    .container {
              width: 80%;
              max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
              min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
              background-color: blue;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
              background-color: #6F7D94;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1 {
              float:left;
              display:inline;
              width: 200px;
              height:1050px;
              background-image:url(images/sidebar1.png);
              padding: 10px 0;
              border-top: 4px solid black;
    .content {
              padding: 10px 0;
              width: 650px;
              height:1050px;
              float:left;
              display:inline;
              border-top: 4px solid black;
              text-align:center;
              background-color: #09F;
              z-index:1;
    .sidebar2 {
              float:left;
              display:inline;
              width: 200px;
              height:1050px;
              background-image:url(images/sidebar.png);
              padding: 10px 0;
              border-top: 4px solid black;
    .kristest {
              background-image:url(images/lefthandkristentest.png);
              display:inline;
    .imgA1 {
        position:absolute; 
              top: 25px;
              left: 25px;
              z-index:-1;
    .imgB1 {
        position:absolute;
              top: 75px;
              left: 80px;
              z-index: -3;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
              padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
              list-style: none; /* this removes the list marker */
              margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    ul.nav li {
              display:block;
              margin-left:10px;
              margin-right:10px;
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
              padding: 10px 10px 5px 15px;
              display:block;
              text-align:center
              text-decoration: none;
              background-color: #E1C9A1
              color: #000;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
              background-color: #6F7D94;
              color: #FFF;
    /* ~~The footer ~~ */
    .footer {
              padding: 10px 0;
              background-color: #6F7D94;
              position: relative;/* this gives IE6 hasLayout to properly clear */
              clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /* ~~miscellaneous float/clear classes~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
              float: right;
              margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
              float: left;
              margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
              clear:both;
              height:0;
              font-size: 1px;
              line-height: 0px;
    .slider {
              width:1050px;
              height:325px;
              overflow:hidden;
              float:inherit;
              background-image:url(images/loading.gif)
    .shadow{
              background-image:url(img/shadow.png);
              background-repeat:no-repeat;
              background-position:top;
              width:1125px;
              height:144px;
              margin:-60px auto;
    .slider img{
              width:1050px;
              height:325px;
              display:none;
    #underlinered{
              display:inline;
              text-decoration: underline;
        color:red;
    #underlineblue{
              display:inline;
              text-decoration: underline;
        color:blue;
    #underlineblack{
              display:inline;
              text-decoration: underline;
        color:black;
    #underline{
        text-align:center;
              display:inline;
              text-decoration: underline;
    #horizontalRule {
        min-height: 1px;
        clear:both; width:100%;
        border-bottom:2px solid black;
        height:1px; padding-top:10px;
        margin-top:10px;
        margin-bottom:10px;
    #horizontalRule3 {
        min-height: 1px;
        clear:both;
        border-top:2px solid black;
        height:1px; padding-top:1px;
        margin-top:10px;
        margin-bottom:10px;
    #horizontalRule1 {
        min-height: 1px;
        clear:both;
              width:100%;
        border-bottom:1px solid black;
        height:1px;
              padding-top:10px;
        margin-top:10px;
        margin-bottom:10px;
    #horizontalRule2 {
        min-height: 1px;
        clear:both;
              width:100%;
        border-bottom:1px solid black;
        height:1px;
              display:block;
              margin-left:10px;
              margin-right:10px;
              size:180px;
    #par {
              font-size:14px;
    #par1 {
              font-size:13px;
    .image1hold {
        width: 650px;
        height: 250px;
        background: url(images/left%20hand%20test.png) no-repeat;
        padding: 20px;
    .image1hold img {
        display: block;
        margin: 10px;
        float: left;
    .image1hold .content {
        width: 410px;
        margin-left: 150px;
    .image1hold h4 {
        text-align: center;
        text-decoration: underline;
    .image2hold {
              width:650px; /*this is the width of your first image*/
        height:250px; /*this is the height of your first image*/
              background: url(images/right%20hand%20test.png) no-repeat;
              padding: 20px;
    .image2hold img {
        display: block;
        margin: 10px;
        float: right;
    .image2hold .content {
        width: 610px;
    .image2hold h4 {
        text-align: center;
        text-decoration: underline;
    -->
    </style>

  • Wish I didn't upgrade! and now I need help to figure out how to make it wor

    I have a Windows XP Pro 2nd edition with IE ver 6.0.2 (but I normally use FireFox)
    I've never had any trouble with iTunes until iTunes "forced" me to upgrade my iTunes applicaiton to version 6 if I wanted to "purchase" music. (note to self: Purchase music from stores it's much safer)...
    I upgraded and received no error messages. Trouble is now, when I launch the iTunes application it doesn't "open" ... although the iTunes process begins to run in the background process (ctraltdelete).
    I have uninstalled and installed 5 different times and ways.
    First uninstall was "typical" uninstall. THat didn't fix it.
    Second uninstall was "typical" unistall from the Control Panel, and then I removed the folders from the "program File" folder. Still wouldn't work.
    Third unintall was "typical" then I removed folders from local drive and removed all "known" registry "itune" keys. That didn't work.
    Fourth uninstall was first a "repair" to itunes, and then a "typical" uninstall, then I removed folders, removed registry (does anyone know all of itunes registry keys? Maybe I am missing a few.. the only ones I know of is the "itune" reg). Then I looked through my start up menu from "msconfig" and took a look at my firewall program to see if there was anything preventing the program from running...
    Fifth uninstall pretty much fruitless as my previous attempts.
    I know it HAS to be a registry key of some sort.. here's why:
    When I uninstall and reinstall (no matter how thourough) every time I install the iTunes program Windows XP has never ONCE recognized the new install of iTunes as a "NEW PROGRAM" and it should!
    I need help... what registry keys should I be removing? ANyone suggest for me to remove Quick Time too? What about the ipod updater software? Any connection?
    HELP??????????????????
    THanks
    W.

    hi wmchisholm!
    Trouble is now, when I launch the iTunes application it doesn't "open" ... although the iTunes process begins to run in the background process (ctraltdelete).
    hmmm. is itunes.exe persisting in Task Manager? if so, first check up on these two possibilities:
    iTunes 6 won't open on a Windows computer if firewall software is not up-to-date
    iTunes for Windows doesn't open after upgrading
    but if itunes.exe is disappearing after a few seconds, try the following technique:
    Using MSCONFIG to troubleshoot conflicts in Windows
    ... and let us know the names (exact spelling please) of the start-up items that you had to disable in order to get itunes to launch. (there's a nasty piece of malware out there that has been causing "error-less" itunes launch failures since late October.)
    love, b

  • Spry menu displays as bullets [was; NEED HELP PLEASE]

    Thank you for taking the time to help me with this:
    when ever I create the spry menu bar in Dreamweaver it sets it as bullets, it isnt noticeable in dreamweaver or when I test it in safari,firefox, etc.. but as soon as I upload it to the ftp host it distorts the site because it shows the menu bar in bullets???
    *The picture attached is screen shot of just the menu bar(it should be only 1 line)
    -Colbie McRae
    [Subject line edited by moderator to make clear what post is about]

    Make sure you have linked and uploaded the Spry Assets that come with the Menubar. As you can see, the Menubar is a simple list that takes its functionality from its associated JavaScript and CSS files.
    The CSS and Javascript files need to travel with the page with the Widget on it.
    Z

  • Few errror/doubts in Primary and Standby server - Need Help

    Hi All,
    I am having below doubts/errors. I need help to solve all the below questions.
    I configured Dataguard successfully. Now the sync is upto date using the below parameters (using 11g):
    at primary:
    log_archive_dest_1=
    log_archive_dest_2='SERVICE=standby.123 arch'
    standby_file_management=auto
    at sandby:
    log_archive_dest_1=
    standby_file_management=auto
    Still i face below messages in the alertliog. Can anybody clearly explain me all the points.
    Primary:
    ORA-1652: unable to extend temp segment by 640 in tablespace NEWTEMP
    I get this error when my archvie destination got filled up, later we released the enough space, the archived are generating. Still i see this message once in between. Need to solve this.
    Primary:
    Checkpoint not complete ( i see this message very often, want to get rid of this)
    standby:
    kcrrvslf: active RFS archival for log thread 1 sequence (sometimes i see this KCRRVSLF)
    standby:
    check that the CONTROL_FILE_RECORD_KEEP_TIME initialization parameter is defined to a value that is sufficiently large enough to maintain afequate log switch information to resolve archivelog gaps. (also get this message in between the alertlog file in standby)
    Standby:
    FAL[client]: Error fetching gap sequence, no FAL server specified (this is very often message. How to remove this, what needs to be added. Do i need to add the below parameters)
    FAL_CLIENT
    FAL_SERVER
    Thanks in advance.
    Pas Moh
    [email protected]

    Pas Moh wrote:
    Hi All,
    I am having below doubts/errors. I need help to solve all the below questions.
    I configured Dataguard successfully. Now the sync is upto date using the below parameters (using 11g):
    at primary:
    log_archive_dest_1=
    log_archive_dest_2='SERVICE=standby.123 arch'
    standby_file_management=auto
    at sandby:
    log_archive_dest_1=
    standby_file_management=auto
    Still i face below messages in the alertliog. Can anybody clearly explain me all the points.
    Primary:
    ORA-1652: unable to extend temp segment by 640 in tablespace NEWTEMP
    I get this error when my archvie destination got filled up, later we released the enough space, the archived are generating. Still i see this message once in between. Need to solve this.This error has absolutely nothing to do with the handling of archive logs, the status of archivelog destination, or primary/standby. Any relation you thought you saw was pure coincidence.
    >
    >
    Primary:
    Checkpoint not complete ( i see this message very often, want to get rid of this)
    Here is the very first hit I got when I googled "oracle checkpoint not complete". Tom says it better than I would have.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:69012348056
    standby:
    kcrrvslf: active RFS archival for log thread 1 sequence (sometimes i see this KCRRVSLF)
    A quick google of that one, and it looks like it is not even an error, but rather simply an informative
    >
    standby:
    check that the CONTROL_FILE_RECORD_KEEP_TIME initialization parameter is defined to a value that is sufficiently large enough to maintain afequate log switch information to resolve archivelog gaps. (also get this message in between the alertlog file in standby)
    In that case I would check that the CONTROL_FILE_RECORD_KEEP_TIME initialization parameter is defined to a value that is sufficiently large enough to maintain adequate log switch information to resolve archivelog gaps.
    How big is that? Well, at least bigger than it is now. Beyond that, it would have to be "large enough to maintain adequate log switch information to resolve archivelog gaps" Just play with it until you get the result you want.
    >
    Standby:
    FAL[client]: Error fetching gap sequence, no FAL server specified (this is very often message. How to remove this, what needs to be added. Do i need to add the below parameters)
    FAL_CLIENT
    FAL_SERVER
    Thanks in advance.
    Pas Moh
    [email protected]

  • I have EMS 3.5 installed and functioning. Need help with where to go next!

    Hello All,
    I am brand new to this and need a very basic push in the right direction.
    I have FMS 3.5 installed on my server and I am ready to begin testing with it.
    My website has a page with descriptions of videos and links to those videos.
    When a link is selected, I want a new page to open and the video to play in the FMS player.
    I have absolutely no idea how to go about this. I need some meaty information here. I read tom Green's tutorials, and although I found that they were informative, they are also quite general.
    I have Flash Professional CS4 and I just need to know what the heck to do next.
    Any and all help will be supremely appreciated.
    Sincerely,
    wordman

    Gentlemen,
    Thank you for the answers, I will definitely look into what you both suggested.
    My next step is getting a player into a separate page that plays selected videos through RTMP.
    The player that comes with FMS would be fine, but I do not know how to alter it, change colors, etc.
    Then I was looking into Real Eyes' REOPS player, and the white papers alone stopped me in my tracks. I realize it's probably easy, but now ehrn you are a novice, to understand it.
    Then I saw Adobe Strobe, the OSMF-based player and thought that might be good for me.
    The biggest problem I see is that Adobe's resources are not always easy to find on this website, same goes fo rthe OSMF site. Not very well structured sites for a software company.
    Bottom line is, I need to get a player on a page that plays though RTMP. Any thoughts there? I'm completely new to Flash.
    Thank you all!!!
    Sincerely,
    wordman

  • Bought yearly subscription for Tech suite, unable to down load and installl/activate -need help-Vanita

    Hi there,
    I have bought yearly subscription for Tech suite which expires in May 2015, however I am unable to download or  install/activate it. I am paying monthly however cant use it!
    need help- Is there an email or phone number I can reach ---
    Thanks
    -Vanita

    BobLevine wrote:
    [....] If you find something out, please do come back and update us.
    Thanks for your willingness to help, but I got some great news!!!
    I finally managed to find the cause for that deactivation problem. It's called the "Update Root Certificates" component, which somehow was unchecked on my machine. Although I had previously installed the Adobe HTTPS (SSL) certificate for secure connections between my computer and Adobe servers, used while signing in on my account, each time I had to click YES to confirm manually that this certificate was valid and safe.
    Now, while deactivating from an application, such confirmation is not displayed and therefore the application considers a certificate (and thus connection as well) as invalid or unsafe. The result is: "Internet Not Found... Unable to Connect..." message.
    Here's what I did to fix it:
    1. clicked Start, and then pointed to Settings and then clicked Control Panel
    2. double-clicked Add or Remove Programs
    3. clicked Add/Remove Windows Components (on the left)
    4. scrolled down the list of components to Update Root Certificates, and checked the check box for that component
    5. clicked Next, and followed the instructions to complete the Windows Components Wizard.
    After turning that on, the deactivation was almost like a blink of an eye.
    So if anyone has a similar problem, make sure you have that system component turned on.
    Matt

  • I recently sold my iphone 4s back to at&t and bought a galaxy s5 but my brother still has an iphone and when he sends me a text it dosnt always go through and i really need help on what to do next please

    I recently sold my iphone 4s back to att and they whiped it clean and now i have a galaxy s5 and my brother still has the iphone but when he sends me texts they dont always go through and i need help on what to do next

    See if this helps:
    iMesssage to old phone
    If you move to another phone and forget to turn off iMessage then read “if you no longer have the device inhttp://support.apple.com/kb/HT5661  If you still cannot resolve it call Apple http://support.apple.com/kb/HE57
    To deactivate iMessage http://support.apple.com/kb/ts5185
    Read http://m.samsung.com/us/support/SupportOwnersFAQPopup.do?faq_id=FAQ00053450&fm_s eq=62995

  • Photomail in PSE 7 and/ or 9 - need help

    Somehow I no longer can add text in my photomails (both in PSE 7 and 9 (trial version), where I could do this before. Has someone any ideas on how to fix this for this is one of the features I really like in PSE and also was the reason to install PSE 9 to see if I could add text in this version.

    Are you talking about adding text in Stationary dialog when in Photomail workflow or it is in email client windows. For me it works in PSE7 and PSE9 both.

  • So i have Two account on my imac OS X Lion 10.7.5 and dont have administrator and its locked need help asp please Someone!

    I have a Imac and i cant acces adminastrator Becuase my two users dont have becuase i took them i dident know that would happen and need help i dont wanna loose all the stuff in the imac so if you can help please message me asp

    Use the directions given here:
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/

  • Dynamic Forms and Flowing subforms -- Need help/Advice

    Hello All -
    I am creating a form for instructors at our college to complete. It has 3 pages, some static text, some required drop-down boxes, and three "comment" type areas which I would like to create so that they "flow" and display the entire contents when printed.
    I've read everything I could find so far, but I think I am missing something quite basic.
    I've created master pages, with a content subform on each one. I've placed all my content into subforms under that main content subform, named and ordered them the way they need to be. Most of it should appear as positioned. Only where there is one of the comment sections do I want/need the "flow content" option.
    I tried following the directions I found in another thread. If I set the subform with the comment area to flow, then I never get the page break option (and it is needed) - it's always grayed out. When I try to set the underlying subform on the page to 'flow content', ALL of the content from all three pages ends up on one page, everything on top of each other.
    What am I doing wrong?
    Can anyone give me some tips as to where at least to start looking for what I've not done or done wrong?
    Thanks in advance for any information -- it will be soooo appreciated!
    Lauren

    Hi Lauren,
    You only need one Master page, and there's no need to put anything on it unless you want a header/footer that repeats on each page.
    If you want to have things flow from page to page, create one body page object, and set its content type to Flowed (the body page is itself a subform). In it you put subforms with text, fields, and so on in them. Since your form will spill from page to page based on how much text the instructors type into the expandable comments fields, break up the forms content into sections (subforms) such that the layout can break between the subforms without taking away from the readability. These subforms should have a content type of Position. Even though there's only one body page object in your design, since you have three pages worth of stuff, it will spill onto three pages.
    Now for the comments fields, which you want to wrap and expand. Make sure that each of your comments fields is in its own subform. Set the field to allow multiple lines and, in the layout tab, click the box to Expand to Fit (height). For the subform that contains the comments field, set the height to auto-fit (layout tab). Also for the subforms that contain comments fields, experiment with the "Allow Page Breaks Within Content" checkbox on the Subform tab. If you expect an instructor to blab on for more than an entire page of text, you will have to select this box, but otherwise I suggest leaving it unselected so that the entire comment remains together.
    Jared Langdon
    www.jlangdon.ca

  • No ACL deny logs for Traffic not matched by Static Object NATs and ACL. Need Help.

    I start noticing that I do not see any denied traffic coming in on my ACL.  To better explain, lets say I have this config.
    ### Sample Config ###
    object network webserver
    host 192.168.1.50
    nat (dmz, outside) static X.X.X.X service tcp www www
    access-list inbound extended permit ip any4 object webserver eq www
    If I generate a traffic from the outside let's say a traffic that is trying to access X.X.X.X via TCP Port 8080 which obviously does not have any NAT entry to it going to my DMZ, I don't see the ACL denies it anymore but instead comes back with a Drop Reason: (nat-no-xlate-to-pat-pool) . On the packet trace I got this. (Below) it seems that does not even hit the ACL as there is no xlate found for it, at least to what the drop reason says.
    Phase: 1
    Type: CAPTURE
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    MAC Access list
    Phase: 2
    Type: ACCESS-LIST
    Subtype:
    Result: ALLOW
    Config:
    Implicit Rule
    Additional Information:
    MAC Access list
    Phase: 3
    Type: ROUTE-LOOKUP
    Subtype: input
    Result: ALLOW
    Config:
    Additional Information:
    in   0.0.0.0         0.0.0.0         Outside
    Result:
    input-interface: Outside
    input-status: up
    input-line-status: up
    output-interface: Outside
    output-status: up
    output-line-status: up
    Action: drop
    Drop-reason: (nat-no-xlate-to-pat-pool) Connection to PAT address without pre-existing xlate
    Before, using a regular Static PAT on ASA Versions 8.2(5) below, I could get the deny logs (ASA-4-106023). Generally, I use these logs, and are quite important for us specially during auditing.
    My question is how can I generate logs for these type of dropped traffic on the ASA 9.1 Version? 
    Any comments/suggestions are gladly appreciated :)
    Regards,
    John

    I believe, but am not 100% sure, that the reason you are not seeing the ACL drop but a no NAT matched is because of the changes from 8.2 to 8.3 in the order of how things are done.  In 8.3 and later you need to secify the real IP address when allowing packets in, and this is because NAT happens before the ACL is matched.  So since there is no match on the NAT the packet is dropped then and there, never reaching the stage where ACLs are checked.
    As to seeing drops in the ACL log...You might want to try adding an ACL that matches the NATed IP...but I don't think you will have much success with that either.  My guess is that there is no way around this...at least no way I know of.
    Please remember to select a correct answer and rate helpful posts

  • On my MacBook Pro I forgot my user password and I didn't enable Apple ID recoveries and I urgently need help finding a way to recover the password.

    I urgently require help in recovering my user password for my MacBook Pro on OS X Lion, I forgot my password and Apple ID recoveries aren't enabled and I can't enable them as I don't know my password and my hint didn't help me at all, I really, really need help!

    Also, a solution may be found if you search in the "More Like This" section over in the right column.Solution may be found if you search in the "More Like This" section over in the right column.

Maybe you are looking for