Horizontal gap between two items

How can I increase a gap between two items for ex. between 2 textfields?

Hello,
Try to add something like style="height:50px" in the HTML Table Cell Attributes of the item's label section. Within this cell height, you can "fine tune" the position of the labels and elements, using the Horizontal / Vertical Alignment options.
Regards,
Arie.

Similar Messages

  • Horizontal 'gap' between two level tabs SOLVED

    I’ve got a stange problem:
    I’ve got several pages and a two level tabs. Everything worked before a collegue of mine switched the theme into a self created one. Now the design of the two level tabs depends on what page you are on. Sometimes there is a ‘gap’ between the parent tabs and the horizontal bar and the tabs below that bar.
    On some pages this gap is small and it looks like it should:
    http://img90.imageshack.us/my.php?image=tabs01lq6.jpg
    But sometimes there is a lot of space above and below that bar:
    http://img91.imageshack.us/my.php?image=tabs02fa9.jpg
    Can anyone help me? Please!!!

    Hi Carl,
    thanks for your answer!
    I also thougt it coud be an issue with the CSS and I've searched the whole CSS-Stylesheet. In the part of the Tab Classes I searched for every margin-top and margin-bottom and set it to 0px but it had no effect.
    Here you can see the part of my CSS-Stylesheet containing the attributes of the tabs:
    /* Tab Classes */
    /* .t4Tabs{text-align:center;padding:10px 0 2px 0;} */
    .t4Tabs{text-align:right;padding:10px 0 2px 0;margin-bottom:0px;margin-top:0px;}
    .t4standardtabcurrent{vertical-align:middle;padding:2px 5px 2px 5px;margin 0px 3px 0px 3px;background-color:#CCCCCC;color:#111111;border:2px solid #111111;border-bottom:0;text-decoration:none;font-weight:bold;}
    .t4standardtab{vertical-align:middle;padding:2px 5px 2px 5px;background-color:#777777;color:#ffffff;margin:0px 3px 0px 3px;border:2px solid #111111;border-bottom:0;text-decoration:none;font-weight:bold;}
    .t4standardtab:hover{background-color:#CCCCCC;color:#000000;text-decoration:none;}
    .t4ChildTabs{text-align:center;background-color:#FFFFFF;padding-bottom:4px;margin-top:0px;margin-bottom:0px;}
    .t4childtabcurrent{margin-left:3px;margin-right:3px;font-weight:bold;background-color:#DDDDDD;padding:2px;border:2px solid #000000;border-top:none;text-decoration:none;}
    .t4childtab{margin-left:3px;margin-right:3px;padding:2px;border:2px solid #000000;border-top:none;text-decoration:none;font-weight:bold;}
    But the strange is that this horizontal space is not equal on every page. On some pages it is quite small and like I want it to be and when I select the tab "Reports" for example there is a huge gap.
    When I change the margin in the CSS-Stylesheet shouldn't it be for all pages? Shouldn't the margin be the same whatever page I am on?
    Greetings,
    Sofie

  • How to adjust gap between tilelist items?

    Hi,
    I have a tilelist which uses a custom item renderer component
    to render its items. I am seeing a gap between the rows of items
    (no gap between columns). I cannot seem to find a property of
    tileList which lets you adjust this gap.
    Can anyone help?
    Thanks

    Easy tracy. I didnt make as big of a fuss as you are making
    comenting about my response. Perhapse you could've used that time
    to answer someones question?
    Also, the solution I mentioned actually only solved part of
    the problem:
    By setting the paddingtop and paddingbottom, I can adjust the
    gap between the row, but paddingleft and padding right on the
    tileList control has no affect on the gap between the columns
    (horizontal gap between items)?
    Thanks to anyone taking their time to help :)

  • Is there any css to vary the distance between two items in apex

    Hi,
    Is there any css to vary the distance between two items ie two columns  horizontally / vertically in apex application at page line level
    Regards,
    Pavan

    Hi ,
    I done what u suggested above  but  i ll tel u clearly
    i have name,plot no,street,city,distict,state,country,phone no,pincode items.. i need to align this items like
    --------------------------------------------------------------------------main region----------------------------------------------------------------------------
    --left region-------------------------------------------middle region------------------------------------------------------right region-------------------
    name,___________
    plot no,_________
    street,________
    city,___________                                    distict,_________                                              
    state,__________                                   country,_________                                                  nothing in it
    phone no,__________                              pincode_________
    to achieve this wat i have to do
    Thanks,
    pavan

  • Find gap between two dates from table

    Hello All,
    I want to find gap between two dates ,if there is no gap between two dates then it should return min(eff_dt) and max(end_dt) value
    suppose below data in my item table
    item_id    eff_dt           end_dt
    10         20-jun-2012     25-jun-2012
    10         26-jun-2012     28-jun-2012 There is no gap between two rows for item 10 then it should return rows like
    item_id eff_dt end_dt
    10 20-jun-2012 28-jun-2012
    item_id    eff_dt           end_dt
    12         20-jun-2012     25-jun-2012
    12         27-jun-2012     28-jun-2012 There is gap between two rows for item 12 then it should return like
    item_id eff_dt end_dt
    12 20-jun-2012 25-jun-2012
    12 27-jun-2012 28-jun-2012
    I hv tried using below query but it giv null value for last row
    SELECT   item_id, eff_dt, end_dt, end_dt + 1 AS newd,
             LEAD (eff_dt) OVER (PARTITION BY ctry_code, co_code, item_id ORDER BY ctry_code,
              co_code, item_id) AS LEAD,
             (CASE
                 WHEN (end_dt + 1) =
                        LEAD (eff_dt) OVER (PARTITION BY ctry_code, co_code, item_id ORDER BY ctry_code,
                         co_code, item_id, eff_dt)
                    THEN '1'
                 ELSE '2'
              END
             ) AS new_num
      FROM item
       WHERE TRIM (item_id) = '802'
    ORDER BY ctry_code, co_code, item_id, eff_dtI m using oracle 10g.
    please any help is appreciate.
    Thanks.

    Use start of group method:
    with sample_table as (
                          select 10 item_id,date '2012-6-20' start_dt,date '2012-6-25' end_dt from dual union all
                          select 10,date '2012-6-26',date '2012-6-26' from dual
    select  item_id,
            min(start_dt) start_dt,
            max(end_dt) end_dt
      from  (
             select  item_id,
                     start_dt,
                     end_dt,
                     sum(start_of_group) over(partition by item_id order by start_dt) grp
               from  (
                      select  item_id,
                              start_dt,
                              end_dt,
                              case lag(end_dt) over(partition by item_id order by start_dt)
                                when start_dt - 1 then 0
                                else 1
                              end start_of_group
                        from  sample_table
      group by item_id,
               grp
      order by item_id,
               grp
       ITEM_ID START_DT  END_DT
            10 20-JUN-12 26-JUN-12
    SQL> SY.

  • Gap Between Two Dates

    Can Anyone tell me how to find out the gap between two dates. Specifically Without counting Saturday and Sunday.

    corlettk wrote:
    <intercession>
    Has anyone written a DateMath class?... it would be handy... the amount (and ugliness) of the code required to do elementary date mathematics with the raw Calendar is appaling.<recess>
    Isn't Java 7 supposed to cure all this headache?
    </recess>

  • How to minimize the gap between two regions in a page

    Hi All,
    How to minimize two regions in a page ? I have two regions in page but I need to minimize the (default) space gap between these regions as it looks too large.
    Thanks for the answer.
    Jeffry

    Jeffry,
    You may want to check the tutorial [Achieving Pixel-Perfect Page Design with HTML Templates|http://www.oracle.com/technology/obe/obe1014portal/html_templates/html_templat.htm] on OTN.
    Thanks,
    EJ

  • Gap between two characters in SAP Script Address EndAddress.

    Hi Abapers,
    I have one query regarding Address - EndAddress in SAPScript.
    I am putting the code :
    /: ADDRESS TYPE '1' PARAGRAPH ZI PRIORITY 'APL43' LINES 6
    /:ADDRESSNUMBER &ZPOLGORT-ADRNR&
    /:ENDADDRESS
    and  I am getting the output in this form
    <b><i>ABC Soft c/o JSI Hong Kon g
    c/o RS Logistics (Shenzhen) Limited
    6/F., DZ Zhong Tian Yuan Logistics Ctr.
    126/Xia Road, Futian Free Zone,
    Shenzhen
    China</i></b>
    But the problem is there is a gap between character "n" and 'g" in first line in word Kong.
    Can anybody suggest me how to solve this issue. Or is there any other issues to sort it out this problem.

    Hi,
    Its not the problem with Address / End Address.
    It could be probably maintained that way.
    Please check the entry in the table where it is maintained.
    reagrds,

  • How to compare dates between two items

    Hello all,
    I am trying to compare dates in two items.
    The first item is a computation P45_PAGE_LOADED_TIME
    select sysdate from dual;
    This essentially keeps track of when the user opened the form. They are accessing data that may become obsolete while they are in the form.
    So we have a dynamic action that finds the last_update date from a table. This field is of type date. It is placed in a text field called P45_STATUS.
    We then have a notification which we want to fire when P45_PAGE_LOADED_TIME is before P45_STATUS. We tried the following condition
    declare
    least_date date;
    begin
    SELECT LEAST(TO_DATE(:P45_STATUS),TO_DATE(:P45_PAGE_LOADED_TIME)) into least_date
    from dual;
    if least_date = to_date(:P45_STATUS) then
    return false;
    else
    return true;
    end if;
    end;
    Any guidance would be most appreciated.
    Thanks

    Maybe your better off putting your anonymous block into a plsql function.
    A function that you can test. If it works in plsql then you must call it in APEX.
    I kinda get a headache when I see that least, to_date, to_date query (although I've seen worse :p)
    Make it like:
    create or replace function fun_least_date(in_status in varchar2,
                                                               in_page_loaded_time varchar2) return boolean
    is
      l_status date;
      l_page_loaded_time date;
      least_date date;
      l_return boolean;
    begin
      l_status := to_date(in_status, 'FORMAT MASK!!!');
      l_page_loaded_time := to_date(in_page_loaded_time, 'FORMAT MASK!!!!');
      least_date := least(l_status, l_page_loaded_time);
      if least_date = l_status then
        l_return := false;
      else
        l_return := true;
      end if;
      return l_return
    end fun_least_date;If your sure that your function is correct then use it as a condition for your dynamic action.
    Regards
    Nico
    ps: I haven't tested that function. Be aware that you most correctly enter the format mask you use in APEX. Also before APEX may know about these variables you should set a dynamic action on your items to always submit their value to the server when they change!!!

  • Stopping Navigation Between two items

    Dear All,
    i have two items in JSF Page and first contains contains validation (with auto submit),
    if i am trying to navigate from first two second with false data , first item will be read , but navigation still going second one, i need to stop this navigation.
    Please Advise

    I believe that in general you should not design web application like that.
    In general you cannot prevent user to navigate away from web pages and components.
    He can allways close explorer or type a diferent url.
    For specific cases though you can do it by java scripts and there is an example at Andrejus blog:
    [http://andrejusb.blogspot.com/2008/04/adf-faces-rich-client-complex.html]
    Yet this would require a lot of effort to do it in all validations.

  • On certain links near the status bar, the cursor icon is itself quivering as if caught between two items it wants to select

    See the following video: http://www.youtube.com/watch?v=3ZCTzNoHz9c
    Thanks!
    Art

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Gap between two execution

    Help!I have got an urgent issue.
    I code a complex sql that joins three tables.
    When I first run it, it works well.
    When I second run it, it works pool. The performance is so low that I wish to see the output before the end of this year. No any change is made during the two execution. Any guru has any suggestions or idea what is the root cause? or what happened here.

    Is the "first run is fast, second run is slow" reproducible? I mean, is it the first run of the day? Or was just the very first run fast, and now it is always slow?
    You have the ability to get an explain plan for the query, as long as you can login via sqlplus.
    Once in sqlplus, do this:
    explain plan for select * from dual;Change the select stmt to whatever your query is. Then look at the table PLAN_TABLE. It has your explain plan in it.
    See this doc for how to view that table. This is 10 docs... not sure, but it may be different in 9, if that's what you have.
    http://download-west.oracle.com/docs/cd/B13789_01/server.101/b10752/ex_plan.htm#16939
    Tom Best

  • Gaps between divs tags in IE8

    I designed a custom Facebook welcome page in DW and transfered it to FB.  According to BrowserLabs, it looks fantastic on every browser and platform except IE8, which shows horizontal gaps between each div.  I have tried and tried and can not find a solution.  Thank you so much for your help.
    http://www.facebook.com/RiverCoyoteDesign
    Here is the entirety of the code:
    <style type="text/css">
    #wrapper {
        margin: 0px auto;
        padding: 0px;
        width: 520px;
        height: 703px;
    .like-us {
        height: 112px;
    .quote {
        height: 112px;
        width: 157px;
        float: left;
    a img {border:none;}
    .bot-nav {
    .below-like {
        height: 55px;
    .clearfloat {
    margin: 0px;
    clear: both;
    height: 0px;
    }.web-design {
        height: 171px;
    .below-web {
        height: 57px;
    .logo-design {
        height: 211px;
    .below-logo {
        height: 43px;
    .nav {
        background-color: #050c0f;
    </style>
    <div id="wrapper">
      <div>
      <div class="like-us"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_01.jpg" width="363" height="112" /><a href="http://www.rivercoyotedesign.com/quote.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_02.jpg" width="157" height="112" /></a></div>
      </div>
      <div class="below-like"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_03.jpg" width="520" height="55" /></div>
      <div class="web-design"><a href="http://www.rivercoyotedesign.com/portfolio.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_04.jpg" width="520" height="171" /></a></div>
      <div class="below-web"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_05.jpg" width="520" height="57" /></div>
      <div class="logo-design"><a href="http://www.rivercoyotedesign.com/logos.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_06.jpg" width="520" height="211" /></a></div>
      <div class="below-logo"><img src="http://rivercoyotedesign.com/fb-graphics/mock1b-rev1-flattened_07.jpg" width="520" height="43" /></div>
      <div class="nav">
        <div class="bot-nav"><a href="http://www.rivercoyotedesign.com/portfolio.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/bot-nav-flat1_01.png" width="162" height="19" /></a><a href="http://www.rivercoyotedesign.com/logos.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/bot-nav-flat_02.png" width="131" height="19" /></a><a href="http://www.rivercoyotedesign.com/enews.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/bot-nav-flat_03.png" width="227" height="19" /></a></div>
      <div class="bot-nav2"><a href="http://www.rivercoyotedesign.com/business-cards.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/bot-nav-flat_04.png" width="221" height="37" /></a><a href="http://www.rivercoyotedesign.com/ecommerce.htm" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/bot-nav-flat_05.png" width="124" height="37" /></a><a href="http://www.rivercoyotedesign.com/" target="_blank"><img src="http://rivercoyotedesign.com/fb-graphics/bot-nav-flat_06.png" width="175" height="37" /></a></div></div>
    </div>

    "BruceCSI2" <[email protected]> wrote in
    message
    news:fgnj8t$pan$[email protected]..
    >I set up this demo page,
    http://www.mistchild.com/gruen/index.htm
    and there
    >are
    > gaps between divs when viewed in IE, but not Opera or
    FF. The weird thing
    > is,
    > they show up between the themepic div and the nav div,
    and between the
    > content
    > div and bottom div, but not between the nav div and the
    content div. I've
    > set
    > top margins of 0 for all divs in my stylesheet.
    > Can anyone help me figure this one out?
    Your construct is really "weird", try this:
    #nav,#content,#bottom{float:none}
    img{vertical-align:bottom}
    If that fixes your problem, then you can simply *remove* the
    float
    declarations from your sheet.
    As a side note, you should try to keep things as simple as
    possible. I'm
    sure you can safely remove "position:relative" from many
    rules. Also, there
    is no need to set a width on DIVs that are not floats (their
    natural
    behavior is to fill the the parent container).
    HTH,
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    http://www.divahtml.com/products/scripts_dreamweaver_extensions.php
    - divaGPS - Add "you are here" highlighting to virtually any
    menu
    - divaFAQ - Create FAQ pages that toggle (show/hide) the
    answers
    - divaPOP - Easy, clean, standards-compliant popup windows.

  • Gap betwwen two lines in xml o/p

    Hi,
    I am working on Xml reports now.
    I am getting output but there is huge gap between two lines in the table.
    I want to reduce that gap. Any one can suggests any thing.
    Regards,
    Shakeera

    Hi,
    Its not the problem with Address / End Address.
    It could be probably maintained that way.
    Please check the entry in the table where it is maintained.
    reagrds,

  • Setting the Horizontal gap

    Hello Guys.
    I am using java.awt .
    I have a Jpanel and i am placing a button and a lable in it.
    Now the thing is that i have to srt the horizontal gap between the button and lable with setHgap(), but i really do not know how to use it, i did try to get it from google, but no luck.
    Pleae show me an example of it being used.
    Any sort of help will be appreciated.
    Regards
    UnderDog

    I am using java.awt .
    I have a Jpanel and i am placing a button and a lable
    in it.JPanel is from javax.swing, not from java.awt... :P
    Now the thing is that i have to srt the horizontal
    gap between the button and lable with setHgap(), but
    i really do not know how to use it, i did try to get
    it from google, but no luck.
    Pleae show me an example of it being used.Setting the gap is depend on the Layout that you are using.
    Example of using FlowLayout to set the HGap:
    FlowLayout layout = new FlowLayout();
    layout.setHgap(10);
    JPanel panel = new JPanel(layout);

Maybe you are looking for

  • How to add a time stamp to an array

     Currently the VI that I have attached has the capacity to log data from the set of 14 arrays. I currently have a tick counter hooked up. However, I would like to add a time stamp that will display the elapsed time in seconds from the begining of the

  • Exchange Rate Type upon PO/PR

    Hi Experts, Is there a config to default exchange rate type upon PO/PR creation? I was told that by default it will read type 'M' and I'll be the happiest man if it can link to type 'M'. In my case, it reads from other type i.e. '2004'. Thus, I was w

  • Is there anyway to get a CD image of the Installation CD for E1000 Wireless Router?

    My CD-ROM drive broke and i'm not sure what to do now?

  • Error running mvc application

    why when I run a MVC application is giving me an error saying Server Error in '/' Application. The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name ch

  • Can't upgrade to CS6 Standard from CS5.5 Premium - Error: Failed CopyDirectory

    I just downloaded CS6 Design Standard as an upgrade from CS5.5 Design Premium. The CS5.5 DP software was on another machine with a hard drive that crashed two weeks ago and is unrecoverable. I have all of the necessary serial numbers. Please help! I