Before header pl/sql process creates blank space at top of page

Hi,
I'm finding that w/v 1.6.1 I get a blank space at the top of my page that appears to be somewhat proportional to the amount of code and/or # processes on that page that are before header. moving to after header and before regions also shows this behavior.
There are no blank line outputs happening in the pl/sql processes, so I've got no idea why htmldb is putting blank space there.
Anyone seen anything like this? Oracle 9.2.0.7, winxp pro
Thanks
matt

Hi,
I've had the same problem. I'm assuming that you have a region in the "After Header" position?
If so, you could add the following in the region's Region Header:
<div style="display:none">
and put this in the Region Footer:
</div>
The region is defined in a table, which by definition is a block object. Block objects always begin on a new line and end with a new line - the above will put the region into a div and then hide the div.
Regards
Andy

Similar Messages

  • Before Header pl/sql process to assign values to page items

    How can i assign values to items on a page based on the data structure returned from a pl/sql procedure within the before header process? I am thinking of executing a pl/sql procedure based on a URL parameter value and then assign values to page items. Is this really possible using Apex 4.0.2? If yes, how can it be done?
    thanks
    Seetharaman

    The question isn't really clear. What kind of "data structure returned from a pl/sql procedure"? Please be much more specific.
    For a PL/SQL data structure such as record containing 2 elements (<tt>x</tt> and <tt>y</tt>) returned as an out parameter from a procedure to be assigned to 2 page items <tt>p1_x</tt> and <tt>p1_y</tt>, all that's required in the Before Header process is something like
    declare
      l_rec rec_type;
    begin
      the_proc(..., p_out => l_rec, ...);
      :p1_x := l_rec.x;
      :p1_y := l_rec.y;
    end;

  • How to get rid of blank space showing above my pages

    Hi:
    I built my site dyingforthetruth.com using Muse (thanks, it's pretty nifty!), following a video tutorial you provided.
    I've ended up with a blank space showing above all pages, and much trying with the blue lines and rebuilding my header strip has NOT succeeded in fixing it.
    Here's a snapshot of the top left part of the "main" master, showing the blue lines and the space at the top.
    You can see what it looks like on the web by going to the site URL (dyingforthetruth.com).
    Can you please tell me how to fix this. I find it a bit strange to see all my pages for this site coming up in all 5 browsers I've tried (IE, Chrome, Firefox, Opera, Safari) with a pronounced gap at the top of them all.
    Thanks!

    Go to Page> Page Properties and on the "Padding" section set "Top" to 0. That should do it.
    If you are on a master page make sure that the top blue arrow is at 0. That arrow controls the top of page, and you need to have a padding of 0 for what you want.

  • How to Print the space in Top-of-Page in ALV output

    Hi gurus,
         I had a problem in Printing the Spaces in Top-of-Page.
    My Requirement is like.
    Material no: (space with 18 char)  to   5235268
    but it is coming like .
    Material no: to  5235268
    i wrote the code like this.
    form Top_of_page.
    IF s_matnr IS NOT INITIAL.
          wa_header-typ = 'S'.
          wa_header-key = 'Material No:' .
          IF s_matnr-high IS INITIAL.
            MOVE s_matnr-low TO wa_header-info.
          ELSE.
            CONCATENATE s_matnr-low  ' to ' s_matnr-high INTO wa_header-info SEPARATED BY space.
          ENDIF.
          APPEND wa_header TO tb_header.
          CLEAR wa_header.
        ENDIF.
    Thanks & Regards,
    Anil.

    Hi Anil ,
    If u concatenate anything with space , your space will be lost.
    Give a try for this if your  s_matnr-high is initial.
    data : c(21) type c.
    IF s_matnr-high IS INITIAL.
    Concatenate '(19 spaces )to'  into C.   concatenate C s_matnr-low  into wa_header-info SEPARATED BY space.
    endif.
    <b>Please Note i wanted to put spaces at "(19 spaces)to"  but posting this message is removing those spaces so have put it in words.</b>you have to take Variable c with first 19spaces and then 'to' as shown.
    Here the Variable C is with 21 length for 18 spaces , one space to separate the 18 spaces from 'to' , and then 2 chars for 'to'.
    I hope this will help you.
    Regards,
    AShwini

  • Space in Top of page on alv header

    Hi Experts,
    I do have a query on ALV , Can you please help me in solving my problem.
    Here goes my query...
    I have to develop a ALV where on the top of page i have to display two fields as shown in below which was highlighted in the screen
    http://img410.imageshack.us/my.php?image=op2sn9.jpg
    But i'm getting output as shown below screen
    http://img410.imageshack.us/my.php?image=op1ut4.jpg
    I have tried with space and all other alternatives but i'm unable to get the desired output.
    Can i have any sample code for the same
    Regards
    Nanda

    Hi,
    TABLES:     ekko.
    type-pools: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
    ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid,
          gt_events     type slis_t_event,
          gd_prntparams type slis_print_alv.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    perform build_layout.
    perform build_events.
    perform build_print_params.
    perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
    *       Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
    * There are a number of ways to create a fieldcat.
    * For the purpose of this example i will build the fieldcatalog manualy
    * by populating the internal table fields individually and then
    * appending the rows. This method can be the most time consuming but can
    * also allow you  more control of the final product.
    * Beware though, you need to ensure that all fields required are
    * populated. When using some of functionality available via ALV, such as
    * total. You may need to provide more information than if you were
    * simply displaying the result
    *               I.e. Field type may be required in-order for
    *                    the 'TOTAL' function to work.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
    *  fieldcatalog-do_sum      = 'X'.
    *  fieldcatalog-no_zero     = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material No'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    *       Build layout for ALV grid report
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    *  gd_layout-totals_only        = 'X'.
    *  gd_layout-f2code            = 'DISP'.  "Sets fcode for when double
    *                                         "click(press f2)
    *  gd_layout-zebra             = 'X'.
    *  gd_layout-group_change_edit = 'X'.
    *  gd_layout-header_text       = 'helllllo'.
    endform.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
    *       Display report using ALV grid
    form display_alv_report.
      gd_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
                i_callback_user_command = 'USER_COMMAND'
    *            i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
    *            it_special_groups       = gd_tabgroup
                it_events               = gt_events
                is_print                = gd_prntparams
                i_save                  = 'X'
    *            is_variant              = z_template
           tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
    *       Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select ebeln ebelp statu aedat matnr menge meins netpr peinh
    * up to 10 rows
      from ekpo
      into table it_ekko.
    endform.                    " DATA_RETRIEVAL
    * Form  TOP-OF-PAGE                                                 *
    * ALV Report Header                                                 *
    Form top-of-page.
    *ALV Header declarations
    data: t_header type slis_t_listheader,
          wa_header type slis_listheader,
          t_line like wa_header-info,
          ld_lines type i,
          ld_linesc(10) type c.
    * Title
      wa_header-typ  = 'H'.
      wa_header-info = 'EKKO Table Report'.
      append wa_header to t_header.
      clear wa_header.
    * Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      append wa_header to t_header.
      clear: wa_header.
    * Total No. of Records Selected
      describe table it_ekko lines ld_lines.
      ld_linesc = ld_lines.
    concatenate 'Total No. of Records Selected:' ld_linesc
                        into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
    *            i_logo             = 'Z_LOGO'.
    endform.
    *       FORM USER_COMMAND                                          *
    *       --> R_UCOMM                                                *
    *       --> RS_SELFIELD                                            *
    FORM user_command USING r_ucomm LIKE sy-ucomm
                      rs_selfield TYPE slis_selfield.
    * Check function code
      CASE r_ucomm.
        WHEN '&IC1'.
    *   Check field clicked on within ALVgrid report
        IF rs_selfield-fieldname = 'EBELN'.
    *     Read data table, using index of row user clicked on
          READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
    *     Set parameter ID for transaction screen field
          SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
    *     Sxecute transaction ME23N, and skip initial data entry screen
          CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
        ENDIF.
      ENDCASE.
    ENDFORM.
    *&      Form  BUILD_EVENTS
    *       Build events table
    form build_events.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
           exporting
                i_list_type = 0
           importing
                et_events   = gt_events[].
      read table gt_events with key name =  slis_ev_end_of_page
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_PAGE' to ls_event-form.
        append ls_event to gt_events.
      endif.
        read table gt_events with key name =  slis_ev_end_of_list
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_LIST' to ls_event-form.
        append ls_event to gt_events.
      endif.
    endform.                    " BUILD_EVENTS
    *&      Form  BUILD_PRINT_PARAMS
    *       Setup print parameters
    form build_print_params.
      gd_prntparams-reserve_lines = '3'.   "Lines reserved for footer
      gd_prntparams-no_coverpage = 'X'.
    endform.                    " BUILD_PRINT_PARAMS
    *&      Form  END_OF_PAGE
    form END_OF_PAGE.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    *&      Form  END_OF_LIST
    form END_OF_LIST.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    Try with this sample
    Regards
    Krishna

  • Blank space at bottom of page in FF

    I was sent some code to put a CMS system behind.
    But on testing the content on the div elements I have found I have blank space on the bottom of the page.
    I know this is caused by position:relative;
    but I thought using this was the correct way to display two divs side by side left and right column.
    If I take it off the video on the right column goes off too far right.
    I am testing on IE 8 and FF 3.5
    Resolution:
    1024 in IE
    1600 in FF
    * {    margin-top: 0px;
        margin-left:0px;
        margin-right:0px;
        margin-bottom:0px;
        padding-top:0px;
        padding-bottom:0px;
        padding-left:0px;
        padding-right:0px;
    p {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 12px;
        color: #9c9c9e;
        line-height: 20px;
        font-weight: lighter;
    h1 {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 21px;
        color: #4d485c;
        text-decoration: none;
        font-weight: bold;
        padding-bottom: 5px;
    body {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        height:0px;
    .logos {
        padding-right: 30px;
    .logo {
        margin-top: 62px;
        margin-left: 50px;
    #button {
        float: right;
        width: 238px;
        margin-right: 50px;
        margin-top: 62px;
    #wrapper {
        width: 999px;
        margin-right: auto;
        margin-left: auto;
        border-right-width: 1px;
        border-left-width: 1px;
        border-right-style: solid;
        border-left-style: solid;
        border-right-color: #DDD;
        border-left-color: #DDD;
    #header {
        height: 178px;
        background-image: url(images/headerbk.jpg);
        background-repeat: no-repeat;
    #sidebar {
        width: 347px;
        float: right;
        padding-left: 15px;
        padding-top: 17px;
        position:relative;
        top:-299px;
        clear:right;
    #sidebar2 {
        width: 347px;
        float: right;
        padding-left: 15px;
        padding-top: 17px;
        left:30px;
        position:relative;
        top:-1450px;
        display:block;
        z-index:2;
        clear:right;
    #rotator {
        width: 586px;
        padding-top: 18px;
        margin-bottom: 18px;
        float:left;
        position:relative;
        clear:left;
    #rotator2 {
        width: 586px;
        padding-top: 30px;
        margin-bottom: 18px;
        float:left;
        /*position:relative;*/
        clear:left;
    #bodyText {
        width: 586px;
        top:-550px;
        position:relative;
        clear:both;
    #bodyText2 {
        width: 586px;
        /*top:-550px;*/
        position:relative;
        display:block;
        top:20px;
    #slider {
    #footer {
        background-color: #A2A2A3;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #FFF;
        border-right-width: 1px;
        border-left-width: 1px;
        border-right-style: solid;
        border-left-style: solid;
        border-right-color: #B1B1B2;
        border-left-color: #B1B1B2;
        padding-top: 30px;
        padding-right: 50px;
        padding-bottom: 30px;
        padding-left: 50px;
        height:120px;
    #footerImages {
        position:absolute;
    #maincontent {
        background-image: url(images/mainbg.jpg);
        background-repeat: repeat-x;
        background-color: #e5e5e5;
        padding-left: 50px;
        height:655px;
        /*overflow:hidden;added this and it shows*/
    #maincontent2 {
        background-image: url(images/mainbg2.jpg);
        background-repeat: repeat-x;
        /*background-color: #e5e5e5;*/
        padding-left: 50px;
        height:100%;
        /*overflow:hidden;added this and it shows*/

    The_FedEx_Guy wrote:
    do you need the page code?
    Yes please.
    No page code no possible answer.

  • HFR - Blank space coming in 1st page

    in HFR, some data is getting displayed, however, still there is blank space, and rest of data is coming from 2nd page?
    what can be the reasons? pls guide.
    Thanks

    Do you have multiple rows in your report? If yes, I would check if some of the rows are hidden. Higlight the row and under row properties, check if the Hide Always option is checked.
    Cheers,
    Mehmet
    p.s. If it helps or answers your question, please mark the answers accordingly. Thanks!

  • Embedding a pdf in website leaves blank space at top

    I am wanting to embed a pdf into my website using dreamweaver, and applying a template, but it is leaving a blank space at the top.  You can see this on www.maulroad.com/newsletter.pdf.  Here is the embed code used.
    <embed><object type="application/pdf" data="http://www.maulroad.com/Newsletter.pdf" " width="100%" height="90%" < >/object ></embed>
    Any thoughts on how I can get this without the blank spot?

    I agree with Hans.  Embedding PDF never works well because PDF is a print document and HTML is a web document.  In order to view PDFs, your end users must have an appropriate plug-in for their browser and a viewer  like Acrobat Reader installed on their system.  That's a lot of ifs...
    This is how Adobe does it (images and links to PDF files)
    http://www.adobe.com/manufacturing/3dpdfsamples/3dsolutions/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Creating blank space for nesting text images etc

    Hi all,
    I have a page where I have inputted a background image but i
    need to create two areas for text and images. What is the best
    method for making a white background to nest these two things?
    Basically, I need to contruct a box...
    Cheers

    You would attach the background image to the body tag so it's
    visible on
    every page.
    You then need to decide how to layout your page... be it with
    tables or
    divs.
    eg: Insert a table on the page, give it a white background
    color (or
    whatever color) center it and then add your text and or
    images into the
    cells as required.
    The following is code for a very basic centered table
    structure. Copy and
    paste it into a new DW window and see how you go. Change the
    path in the
    styles in the head of the document to show your own
    background image and
    take it from there :-)
    I have a few examples of using background images here:
    http://tinyurl.com/yhxz88
    <!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>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    padding: 0;
    margin:0;
    background: url(pics/bckground.jpg); /*the path to your
    image*/
    background-repeat: repeat-x;
    table {
    border: 1px solid black;
    width: 780px;
    margin: 0 auto;
    background-color:#9999FF;
    padding; 4px;
    -->
    </style>
    </head>
    <body>
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td>text here </td>
    <td>pictures here </td>
    </tr>
    </table>
    </body>
    </html>
    Nadia
    Adobe® Community Expert : Dreamweaver
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html

  • I cannot find what is creating a space on my web page

    I have a large space at the bottom of my home page that I cannot figure out where it is coming from. Would anyone be willing to look at my index.php to see why I have extra space between an image and the text below.
    My website is www.jpalik.com
    I have inserted the index.php
    <!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>Photography By James Palik : Home Page</title>
    <meta name="keywords" content="Photography, Germany, USA, European Union," />
    <meta name="description" content="James Palik is an international travel photographer, event photographer, photo journalist, photographic artist, writer and teacher. This web site contains samples of his work." />
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
    <script src="Scripts/jquery.cycle.all.min.js" type="text/javascript"></script>
    <link href="CSS/Layout.css" rel="stylesheet" type="text/css" media="all" />
    <link href="CSS/TopMenu.css" rel="stylesheet" type="text/css" media="all" />
    <!--jQuery Dynamic Banner, iframe resize code -->
    <?php require_once('Includes/DynamicBannerNarrow.html'); ?>
    </head>
    <body class="Home">
    <div id="wrapper">
    <div id="header">
    <?php require_once('Includes/HeaderNarrow.html'); ?>
    <!--end header --></div>
    <p>
      <!--begin dynamic banner, works with any number of images. Adjust $directory = to desired 'Banners-folder' relative to this page-->
    <?php
    $directory = 'Menu/1-Home-index/BannerImages';
    try {    
    // Styling for images
    echo "<div id=\"myslides\">";
    foreach ( new DirectoryIterator($directory) as $item ) {  
      if ($item->isFile()) {
       $path = $directory . "/" . $item;
       echo "<img src=\"" . $path . "\" />";
    echo "</div>";
    catch(Exception $e) {
    echo 'No images found for this rotating banner.<br />';
    ?>
    <?php require_once('Includes/TopMenu.html'); ?>
    <!--end top menu
    The below <p> </p> puts a space between the top menu and the home page images-->
    <!--<p> </p>-->
    <div id="content">
    <!--  <h2><br />
    </h2>
    <p>-->
    <?php $directory = 'Images/Content/Home';
    try {    
    // Styling for images
    echo "<div id=\"myslides2\">";
    foreach ( new DirectoryIterator($directory) as $item ) {  
      if ($item->isFile()) {
       $path = $directory . "/" . $item;
       echo "<img src=\"" . $path . "\" />";
    echo "</div>";
    catch(Exception $e) {
    echo 'No images found for this rotating banner.<br />';
    ?>
    <!--<p>See my most recent <strong>Events</strong> posting - </a><a href="St" _mce_href="http://www.jpalik.com/PhotographyByJamesPalik/Menu/4-Events/StCatherinesChurch /NativityPlay2013/Event-Iframe.php">St">http://www.jpalik.com/PhotographyByJamesPalik/Menu /4-Events/StCatherinesChurch/NativityPlay2013/Event-Iframe.php">St Catherine's Church 4th Sunday of Advent - Nativity Play 2013</a></p>-->
    <p>See my most recent <strong>PhotographicART</strong> postings:</a>
    <ul>
    <li><a href="San" _mce_href="http://www.jpalik.com/PhotographyByJamesPalik/Menu/2-PhotographicART/ColorColl ections/SanFranciscoCollection/ClassicColor/Level-4-Iframe.php">San">http://www.jpalik.com /PhotographyByJamesPalik/Menu/2-PhotographicART/ColorCollections/SanFranciscoCollection/Cl assicColor/Level-4-Iframe.php">San Francisco - Classic Views</li>
    <li><a href="San" _mce_href="http://www.jpalik.com/PhotographyByJamesPalik/Menu/2-PhotographicART/ColorColl ections/SanFranciscoCollection/Expressionist/Level-4-Iframe.php">San">http://www.jpalik.co m/PhotographyByJamesPalik/Menu/2-PhotographicART/ColorCollections/SanFranciscoCollection/E xpressionist/Level-4-Iframe.php">San Francisco - Icons (expressionist)</li></a>
    </p>
    <!--<p>Visit my  exhibition, <a href="The" _mce_href="http://www.jpalik.com/PhotographyByJamesPalik/Menu/2-PhotographicART/TheFlexib leNegativeII/TheFlexibleNegativeII.php">The">http://www.jpalik.com/PhotographyByJamesPalik /Menu/2-PhotographicART/TheFlexibleNegativeII/TheFlexibleNegativeII.php">The Fliexible Negative II </a> , showing at the <a href="http://www.daz.org/DasInstitut.html" title="Deutsch-Amerikanisches Zentrum" target="_blank">Deutsch-Amerikanisches Zentrum</a> in Stuttgart until March 8, 2013</p>
    <p>If you are a serious SLR photographer and you want to take your work to the next level, you may be interested in taking my advanced photography class<a href="http://www.jpalik.com/PhotographyByJamesPalik/Menu/7-Teaching/7-Teaching.php" title="Learning How to See"> Learning How to See</a></p>
    <p>To follow my web-site development and receive PhotographicART updates, go to <a href="http://www.jpalik.com/PhotographyByJamesPalik/Menu/8-Contact/8-Contact.php" title="Contacts">Contacts</a> put &quot;Follow me&quot;</a> in the subject line </p>-->
    <p><strong>This site was last updated February 5, 2014</strong><br />
    <br />
    </p>
    <!--Begin slide control buttons
    <button id="pause" style="position:absolute; top:380px; z-index:1000">Pause</button>
    <button id="resume" style="position:absolute; top:380px;z-index:1000">Resume</button>
    <!--end control buttons
    <!--begin dynamic content slides, works with any number of images. Adjust $directory = to desired 'Banners-folder' relative to this page-->
      <p>Thank you for visiting</p>
    <!--Begin footer -->
    <div id="footer">
      <?php require_once('Includes/Footer.html'); ?>
      <!--end footer -->
      </div>
    <!--end wrapper --></div>
    <!--iframe resize function -->
    <script type="text/javascript">
    jQuery('iframe').iframeAutoHeight();
    </script>
    </body>
    </html>
    Thank you,
    Jim

    I am using Internet Explorer but I have also looked at it in Firefox.
    The extra space is between the bottom or the images and the links to my internal pages. A singel space is what I would like. The page shows what look like four spaces.
    Yes, the site framework was created by Nancy. She did a great job for me. I do my best to break it. Please note that all the commented out areas and possible HTML errors are my cuting and pasting, not Nancy's work. I am a cut and paste person, not a programmer .
    I also dropped Nancy an email and told her I posted this in the forum.
    Let me know if you do not see the space between the bottom of the pictures and the links.
    Jim

  • Can't get rid of empty blank space at top of website

    I'm sure this is quite simple, but I'm stuck!
    I can't get rid of the empty space between the Header
    "Upcoming Events" and the text way way below. Any advice or
    suggestions would be greatly appreciated.
    http://www.uvanyc.org/community/event_upcoming.html
    Thank you in advance for your time!

    Hello,
    This is the problem:
    <td class="body" height="6137">
    Get rid of the height="6137". Let the content determine the
    height of the
    cell.
    Take care,
    Tim
    "UVANYC" <[email protected]> wrote in
    message
    news:g36o27$1b0$[email protected]..
    > I'm sure this is quite simple, but I'm stuck!
    >
    > I can't get rid of the empty space between the Header
    "Upcoming Events"
    > and
    > the text way way below. Any advice or suggestions would
    be greatly
    > appreciated.
    >
    >
    http://www.uvanyc.org/community/event_upcoming.html
    >
    > Thank you in advance for your time!
    >

  • Photos appear small in iphone/blank space on top and bottom

    After struggling to duplicate, cut and paste (because iphoto wouldn't just let me copy) 20 pictures into my iphone folder, I synced the phone and first got a bunch of black squares. I didn't panic- just re-synced it and all the pictures appeared. However, most of them have to be turned sideways to fill the screen. A few of them- ironically the ones I actually took vertically- appear just fine. I wonder if somewhere my settings are off? Please advise.
    I was planning to have a one-to-one session on iphoto because I know that I'm really doing things the long and hard way. Somehow those sessions never give me any confidence. I leave more confused than ever.
    Also- what does checking the "constrain" box do in iphoto when cropping? Just curious- and I didn't crop these photos so that isn't the answer I'm certain. Thank you!!!

    That didn't work. And when I tested one of the photos and then reverted it back to the original, there was a black square where the picture used to be. I actually had to sync it a few times and then turn the phone off and on to have the photo back where it was. I'm assuming this is a problem that Apple is working on since the update. What a pain. But thanks anyway for trying to help.

  • Re: settings -- how to reduce waste space at top of page to one line only

    I find that the wide screens are too short so it seems like more scolling is needed since less of web page is viewable and this problem is made worse by waste space taken up by various lines - for example on my firefox page, there is a blue line at the top that currently says "ask a question" Firefox help etc and then the rest of the line is blank -- about 70% of space not used/needed
    The second line down shows: File, Edit, View, History, Bookmarks, Tools, Help -- then about 70%waste space -- rest of line is blank -- How can we put stuff from various lines into one or two lines Max ?
    To continue, in my case, the next line has a couple of tabs -- this is useful -- maybe if there could be an easy way to show tabs in their own line when lots of various pages need to be open but when need max space viewable below to click a dropdown to push tabs up to end of next line above (in the waste space)
    Finally, my page has the 4th line taken up by the Forward and Back arrows, the web address line, and then a shorter box called iLivid Web Search with a magnifying glass and then a little box at the end of a house -- which I use all the time to go to my home page for new tabs opened
    I think it would be cool if we could easily elim all but the blue line and one more line by pushing stuff in line 3 and 4 up into line 1 (blue line) and line 2
    My much older IE version had a feature you could drag the lines up they would do what I am saying with all the lines except the blue line at the top -- then when it compressed thje info, it would just show part of title and then a little // sort of button to click to see or expand a part of the line to read it all if needed
    It seems likely this has mostly been solved but I can not seem to figure how to use the settting and buttons on my firefox page to accomplish these changes easily back and forth
    From my looking at it, these features need to be available when you right click on each line but maybe my version8 is not set up quite right
    so any and all assistance is greatly appreciated
    Cheers, G

    Found settings in on the Layout tab of the page and changed the top px from 32 to 10.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

  • Printing PDF from IE with Adobe Reader - extra white space at top of page

    I searched the forums far and wide but did not find this question or information to answer it.  If it's out there, I'd be much obliged if you'd point me in the right direction.
    A user of the web app for which I do tech support just called to say that starting today, whenever he opened a PDF from our app (in IE), the PDF looks fine on screen but when he prints the PDF, every page has extra blank/white space inserted at the top, which cuts off the bottom inch or two of each page.
    No other users have called with this complaint, and if changes to our app or an automatic background Adobe Reader or IE update caused this problem, I would have heard from many users.  I have a sneaking suspicion I have heard about this from other users, but since troubleshooting their IE or Adobe isn't exactly my job, I don't know if I did any more than advise them to talk to their tech support people. 
    I can't recreate his problem (read: it works fine for me), but I'd like to help him.  Can anyone think of a reason why this might be happening?
    Thanks in advance.

    What I know:  He's using Adobe Reader X.  I do not know if it's the most recent version.  The problem only exists with PDFs from our web app; he's not having trouble with other sites or with other PDFs.
    I do not have a copy of the PDF; I can't give you the copy I downloaded when I logged into his account because there is proprietary confidential information on it, but everything worked fine for me and he's the only user with this complaint, so I believe it's related to his PC or printer, not to our app or to Adobe per se. 
    I sent him email asking for more information, but I do not know what printer he's using.  I don't even know what version of Windows he's running. 
    Based on some info from Adobe, I suggested he make sure he's using the most recent version (10.1.2), try 'print as image" to see if that's any more successful, and make sure his printer drivers are up to date. 
    Given the nature of tech support, if he solves the problem or finds a workaround he's happy with, I may never hear from him again to know.  I just wanted to know if this was a known issue and what recommended resolutions for it might be.  Having not found anything on the web at large, I figured the Adobe forums would be a good place to ask.
    Thanks for the time you took to answer.

  • Unwanted Blank Line at Top of Page

    Hello.
    When a paragraph ends at a page bottom, the blank line (which normally appears between paragraphs) appears at the top of the next page.
    But this looks stupid. And I don't see which setting can resolve all instances of this.
    I really don't want to manually remove these - if I add a line of text somewhere in my book, it will affect all of the manual fixes.
    Thanks very much!

    Thanks for your endorsement, Yvan, but please don't rush so quickly into the future. I've lived through two-thirds of Century XX and so far have survived one decade of Century XXI but I have no desire to witness Century XXII. I'm guessing that your "I" key burped.
    Seriously, there are still a surprising number of people who carry over the typewriter habits of double spacing after sentences and double returning after paragraphs. This causes them some grief, as shown by the problem reported by the OP.

Maybe you are looking for

  • Specify folders to backup on external drive

    I have 3 hdd: s. My internal, one 750gb external drive and a 1TB backup-disk. I'd like to backup my complete internal drive, but also backup specified folders on my 750GB-disk (like /pictures/, /movies/ ...). The only way I can think about is to excl

  • Where can I buy replacement screws for my 2011 17" Macbook pro?

    Does anyone know where I can purchase replacement screws for the bottom of my 2011 17" MBP? I am missing one at the bottom left. I saw one site but they only sell screws in bulk, and another that doesn't have them for the newer 2011 models. Any help

  • Can I create new IDOC segmemnt in user exit( edidd structure ) forcefully ?

    RFFOEDI1 is the standard driver program  which call the below user exit zxf08u06... Am programing user exit ZXF08U06... In user exit zxf08u06, actually edidd structue contains all the segments... In user exit zxf08u06, I am reading each segment which

  • HT204053 Need to fix my icloud email address

    Need to change my email address for my icloud.  It is sending the instructions for verifications to the wrong hotmail address, so it is going no where and I can not verify my account until I get the instructions.

  • Support for Crystal Report XI runtime on Windows Server 2008 R2

    Hi all, I was wondering if Crystal report XI runtime is supported on Windws Server 2008 R2. I've found this url http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e06b8953-a62b-2d10-38b9-ca71f747e2b1?QuickLink=index&overridelayout=tru