Remove inner box in template

Hi Experts,
How to remove this? I tried with patters but it doesn't work.
I want to remove only that box in red except for the right line. Please suggest.
Regards
Mani

Hi,
I want exactly the opposite. Is it possible?
Regards
Mani

Similar Messages

  • How can i remove a pages/numbers template

    How can i remove a pages/numbers template.
    They used to  be in the library in my home map, but i can't find the library on my HD.
    Is there anyone who knowes a solution
    Greets Kloria

    Hi everyone,
    I find the answer myself.
    Go tot the finder, select Go in the menu, push the alt button and there it is.
    De library is now visible and you can open it.
    Find Application support > iWorks > Pages or Numbers > Templates > My Templates.
    Remove the template, thats it.
    Greets Kloria

  • Removing check box in Admin Explorer

    Hi All
    I am able to remove and modify the menu and command options in Admin Explorer
    I have no idea on remove the check box in Admin Explorer
    Please let me know how to remove check box in admin explorer
    Thanks
    Karthi D.

    Hi Karthi,
    In your AdminCollectionListRenderer change the parameter 'Item Selection Mode' to 'Not Set' and that will remove the checkboxes beside each resource.
    Note it is not recommended to modify the SAP delivered renderers and layout sets, it's better to duplicate them first and then modify the duplicate.
    Regards,
    Lorcan.

  • How do I remove inner rings from a complex geometry of SDO_GEOMETRY type

    Hi All,
    I am just looking out for a best way to remove inner rings from a complex geometry of SDO_GEOMETRY using ORACLE packages. I have a complex geometry called MAINGEOM which is having two disjoint elements ELEM1, ELEM2 and each element will have a hole/inner ring completely inside the ELEM1 and ELEM2 respectively.
    I just wanted to remove the two holes/inner rings from each ELEMs.
    Initially, I have planned to collect all individual rings which are not inside the element using SDO_UTIL.EXTRACT and collecting them into a collection and subsequently appending all of them to the first element in the collection to prepare a new geometry.
    FOR rec in c1
    LOOP
    new_g := SDO_UTIL.APPEND(new_g, rec.GEOM);
    END LOOP;
    I feel, this a crude way of solving the problem. I doubt that there should be an existing SDO packages to remove the inner/required rings/elements.
    Can anyone please help me to solve this problem and let me know if further information is required.
    Regards,
    Kumar

    Hi Paul,
    Thanks for the given code. I could not adopt the assumptions and logic in my case. But, here is my approach and suggest me if I am wrong anywhere.
    FUNCTION remove_holes(p_geom_in IN mdsys.sdo_geometry) RETURN mdsys.sdo_geometry IS new_geom mdsys.sdo_geometry;
    temp mdsys.sdo_geometry;
    numelem NUMBER;
    BEGIN
    numelem := sdo_util.getnumelem(p_geom_in);
    FOR idx IN 1 .. numelem
    LOOP
    temp:= sdo_util.EXTRACT(p_geom_in,   idx,   1);
                        IF IS_GEOM_INSIDE(temp, p_geom_in) = FALSE THEN
                        IF new_geom is null THEN
                        new_geom := temp;
                        ELSE
                        new_geom := sdo_util.append(new_geom,   temp);
                        END IF;
    END IF;
    END LOOP;
    RETURN new_geom;
    END remove_holes;
    FUNCTION IS_GEOM_INSIDE(p_look IN mdsys.sdo_geometry, p_list IN mdsys.sdo_geometry) RETURN BOOLEAN IS
              corrunt mdsys.sdo_geometry;
              str_relationship varchar2(60);
              IsInside varchar2(60);
              IsCoveredBy varchar2(60);
              BEGIN
              FOR i IN 1 .. sdo_util.getnumelem(p_list)
    LOOP
                        corrunt:=sdo_util.EXTRACT(p_list, i,1);
    str_relationship := SDO_GEOM.RELATE(p_look,'DETERMINE',corrunt,0.5);
                        IF str_relationship = 'EQUAL' THEN
                        NULL;
                        END IF;
                        IsInside:=SDO_GEOM.RELATE(p_look,'INSIDE',corrunt,0.5);
                        IsCoveredBy:=SDO_GEOM.RELATE(p_look,'COVEREDBY',corrunt,0.5);
                        IF  (IsInside='INSIDE') OR (IsCoveredBy='COVEREDBY ') THEN
    RETURN TRUE;
    END IF;
    END LOOP;
                   RETURN FALSE;
              END IS_GEOM_INSIDE;
    END pseudo_fg;
    +/+
    With the above logic and implementation, I could solve the classic Island issue and able remove a normal hole from a geometry as well.
    I found another interesting case where I have a Geometry Collection which is having two poligon Geometries. You may imagine two identical square geoms where the upper left quarter portion of the second square is placed at lower right quarter portion of the first square geometry.
    If I execute sdo_util.getnumelem(GEOM), it is returning '1' instead of returning '2' as mentioned below.
    select sdo_util.getnumelem(MT.geometry) from MY_TABLE MT where MT_ID=18;
    SDO_UTIL.GETNUMELEM(MT.GEOMETRY)
    1
    1 rows selected
    Im I expecting wrong results? How can I solve this issue?
    My apologies, if I am posting unnecessary/unrealistic doubts here.
    Regards,
    Kumar

  • How do I remove whitespace from a template header

    I am trying to work myself thru understanding html coding by using a dreamweaver template and creating a page for my company. I have used dreamweaver before CC, however I am trying to understand the new changes.
    I ran into a problem I am hoping to get help with.
    I tried swapping out a placeholder logo on the template with my own logo. I seem to have a bit of white space at the bottom of the logo when I see it in live view or a browser. How can I get rid of it. I tried combinations of 0 margins and changing padding, but it seems I'm just whistling in the dark. Here is the code:
    The CSS associated with this page is here:
    @charset "UTF-8"; body {   font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;   background-color: #42413C;   margin: 0;   padding: 0;   color: #000; } /* ~~ 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 block. 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 blocks, instead of the block elements themselves, gets rid of any box model math. A nested block 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: #42413C;   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: #6E6C64;   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 fixed width container surrounds all other blocks ~~ */ .container {   width: 960px;   background-color: #FFFFFF;   margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */ } /* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */ header {   background-color: #A36BE8; } /* ~~ These are the columns for the layout. ~~ 1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element 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 block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element'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 blocks 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 left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source. */ .sidebar1 {   float: right;   width: 180px;   background-color: #C5C2B8;   padding-bottom: 10px; } .content {   padding: 10px 0;   width: 780px;   float: right; } /* ~~ 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) ~~ */ nav ul{   list-style: none; /* this removes the list marker */   border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */   margin-bottom: 15px; /* this creates the space between the navigation on the content below */ } nav li {   border-bottom: 1px solid #666; /* this creates the button separation */ } nav a, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */   padding: 5px 5px 5px 15px;   display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */   width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */   text-decoration: none;   background-color: #15EE00; } nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */   background-color: #ADB96E;   color: #FFF; } /* ~~ The footer ~~ */ footer {   padding: 10px 0;   background-color: #CCC49F;   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 */ } /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */ header, section, footer, aside, article, figure {   display: block; } 
    Thank you for your help!

    Try this -
    <img src="assets/jpgs/Prodigy Logo Large 2014.jpg" width="180" height="180" alt="" style="display:block;">
    What you are seeing as whitespace is the space reserved for glyph descenders on any element that is rendered within a text box (i.e., an inline element). By making the image "display:block" you eliminate that space because a block element doesn't have descenders. If that works to your satisfaction then you can give the logo an id, and create a CSS selector containing that block style.

  • Removing alert box in Add to Cart

    Hi,
    I really need your help on how to remove the add to cart alert box.
    I thought using window.alert=function(msg){}  would help but it removes all the other alert boxes in the site.
    Thank you.

    I wouldn't remove the alerts all together, just display them in a div.
    Here is what I do in the shopping cart.
    First open the shopping cart layout ( /Layouts/OnlineShop/shopping_cart-XX -- XX is the country code)
    Right above my checkout button (aka: {tag_buybutton} ) I insert this div:
    <span class="msg" style="display:none"></span>
    Then, in the same layout I insert this code:
    <script>
    $(function() {
         window.alert = function(msg) {
            msg = msg.replace('ERROR: ','');
            $('.msg').text(msg).fadeIn().delay(5000).fadeOut()
    </script>
    If you add this code to your site template it will remove all your alerts; this is why you only add the code to your layout.
    Hope this helps!

  • Help removing search code from template?

    Can someone please tell me which html to remove to take out the search box in the template below.  I would like to maintain the same background pattern but remove the search.  Thanks for your time.
    http://www.freecsstemplates.org/preview/widgetlike

    Here's the HTML Search Form. Of course it doesn't do anything without a script.
    <div id="search">
    <form method="get" action="#">
    <fieldset>
    <input type="text" name="q" value="search keywords" id="q" class="text" />
    <input type="submit" value="Search" class="button" />
    </fieldset>
    </form>
    </div> <!-- end #search -->
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • How do I remove text boxes from Pages

    I have an awful time with Pages on my lap top.  I am used to Appleworks  6.2 on my older desktop (PowerMac G4 / OS 10.4.11).  If I specify a US letter page I get that in Appleworks, it  is then 8.1/2" x 11", without running into pre-existing formats or other similar distractions. I can immediately type a neat business letter.
    Not with Pages.  On my MacBookAir, with Pages 4.3 and OS 10.8.4, I can type alright, but when I want to print what I typed, only a small part of what I typed shows up in in Print Preview of my typed page.  After a bit of backtracking,  I notice a blue-lined rectangle on my typed page containing the portion of my typing that appeared in that Print Preview.  It is apparently a self-formed "text box", that was not a part of my blank template page and was not inserted by me while or just before I typed.
    I did not find any way to delete the edges of that text box. The "delete" option under the pull down edit menu is blanked out.  If I click on the "Text box " symbol in the menu bar it does not let me switch off the text box, but instead gives me another text box inside the first one!  I suppose this is to allow user to print only a single keyboard stroke of the entire letter.  The "Inspector" seems to have no options to set text boxes.
    Pages "Help" Menu has nothing of how to delete a text box, or how to prevent it in the first place from screwing up what you have typed in such manner that it becomes unprintable.
    Similarly a small rectangular box formed on both the top and the bottom of each page (which could be a space reserved for a header or footer), but again I do not use these on my business letters, and they appear self-formed by Pages, and I would like to know how to prevent them, or delete them.
    In other words I like to get a blank page to start with, which will only set up and type what "I, THE  USER" enter on my keyboard. 
    Can anybody tell me how to this with Pages? 
    (PS. I can do it with even with Thunderbird !)

    1. Open a blank Word Processing template (they are listed in the Template Chooser sidebar), you have opened a Layout template that requires Textboxes for you to type into.
    2. To select a Textbox hold down the command key and click on its edge or lassoo it, then hit delete.
    3. If you don't want Headers or Footers, uncheck them in the Document Inspector
    4. Download the Pages09_UserGUide.pdf from under the Help menu and familiarise yourself with Pages' basics. Also look around your Menus and Inspectors which are laid out logically from left to right from broad to details.
    I suggest you click inside your textbox first go command a and copy the contents before you delete it and then paste that into a new Word Processing template.
    Peter

  • Task termination due to sending of out of box email templates

    Hi,
    We are using custom templates to notify end user during creation, group approval and deletion process. Handling of proper template has taken care in workflow.
    Instead of deleting the Out of box templates, the smtp address has changed to "1.0.0.0", to make sure end user won't receive these templates even its triggered by mistake.
    In group approval scenario during update of a user, approver is getting an email notification through custom template and workitem is adding into approver's bin but randomly observing that the task is getting terminated with error message "javax.mail.SendFailedException: Sending failed; nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: 1.0.0.0, port: 25; nested exception is: java.net.ConnectException: Connection timed out: connect".
    This could be due to IDM sending default templates (as SMTP host: 1.0.0.0 is present only in default templates).
    Due to this no action is getting executed upon the group approval request approved by the approver as main update task itself has terminated ( it makes sense).
    Workflow trace shows task has executed fine with no errors.
    Can any one help us why out of box templates is kicked off though custom templates names were set in workflow??
    Is there a mapping of templates with scenario similar to form and process mapping??
    Is deletion of out of box templates affect the system as we no where using??
    Regards,
    Laxmi

    vilynne46 wrote:
    Denial Letter: I don't understand something i have 3 Synchrony bank accounts, Which 2 of them have a zero balance of $102.00 dollars  which I will pay off on Monday  and I was denied for a BP gas credit card .I totally disagree with the reasons you gave for the denial as my credit report says nothing of the sort. If you really check my credit report you will see that I pay my bills on time I have never been late for the past seven years, I had a Bankruptcy in 2008 because I co signed for my step daughter for a house and she reniged on the payments and they came after me , so my Attorney suggested I claim bankruptcy, But if you check I always paid my bills on time every month Even before the Bankruptcy. I earn a good living , and I do not have any financial problems. My wife and I both use BP Gas as it is right down the street from our house, so rechecking my credit report will show you I always pay my bills on time  Sincerly Victor GrecoDenial reference # is Loo22tWelcome to MyFico. Just so you know this is not Synchrony Bank but the forums for Fico, the issuer of credit scores.  If you wish to communicate with Synchrony, you need to contact them directly though they are not known to overturn their credit decisions.  Good luck

  • Box in Template Cell(Smartforms)

    Hi all,
    I am having a text inside a Template Cell.
    I need to have box,all around the text.
    The system (ECC 6.0)is not allowing borders in the template.
    Please suggest some way to do this.
    Thanks in advance
    Regards
    Ananya

    Hi,
    In the Template -> TEMPLATE tab -> u will find several square buttons like SELECT PATTERN, OUTER FRAMEINNER FRAME etc.
    use those ,  more revert back
    regards,
    Prabhu
    reward if it is helpful.

  • Can't remove Criteria box under find - Mavericks, CC

    I am trying to organize a large number of files using Bridge and keywords. it was working just fine when I would right click on a keyword and find that way. I typed a search term in the search box in the top right corner. Now when I right click a keyword and find it has both the keyword and whatever the last search term was as separate criteria boxes. I am unable to hit the minus to remove either of the search terms but the plus button will add them. The only fix I found was deleting preferences which I am NOT going to do everytime this happens. Is there any fix to this aside from trashing the preferences? The reason I need this to be foolproof is because it will be used across a few machines and several users. I would like to avoid having to run to their machines to delete their preferences for them.

    I was able to duplicate this issue on another machine running Mavericks and Bridge CC, logged in under a different account.

  • Can't Delete Black Box from Template

    I am novice using Indesign CS4 on Windows Vista 64 bit.  I am using the brochure template "brochure3.indt" from the built in templates.   Page 2 of the template has a black box or background extending across pages 2 and 3, beginning on the lower right hand corner of page 2.  I want to delete the box, but I cannot select it.  How do I delete this thing?

    InDesign is not designed as a "jump in and create anything" package -- you need a bit of background. Follow the advice in
    Need advice as to best way to learn ID
    to get some basic education.
    (Because your "problem" is an extremely basic one: the black rectangle is drawn on the Master Page, and so you could either delete it there, or apply another master page, or shift-ctr-click it and then delete.)

  • Table in box of Template - SmartForms

    Is posible put a Table into a box of the template in SmartForms, how could I do that?
    Thanks in advance.

    Yes you can do that.
    Context Menu > Create  > Flow Logic  > Loop
    Regards,
    Naimesh Patel

  • Why my check box in template show out is rhombus?

    Hi~~
    I want use check box in my template, it result is OK .
    But it shows rhombus, not standard style 「check box」.
    Is font problem?
    I want 「check box」style , not rhombus .
    How can I do ?
    Emily, Thanks

    This check box is picked up from Wingdings font style,
    thsi font is not shipped with XMLP product.
    Alternatively
    you can map it in the Oracle Apps
    through the configuration or have property in Template
    In Template
    Go File ..... Property and Custom tag
    you'll see the property setting required for the check box.
    name: rtf-checkbox-glyph
    type : Text
    value : fontname;9746;9746
    value syntax is like
    fontname;
    <unicode font number for true value’s glyph>;
    <unicode font number for false value’s glyph>
    Use this,
    http://www.alanwood.net/demos/wingdings.html
    Visit this link , check for the character representation for 9745, 9746 in unicode is
    and the one i have said above, is Check box , check & unchecked characters.
    It should work.
    in Wingdings
    for sample "Wingdings;0168;0254"
    168 represents ¨     168
    254 represents þ     254
    This will come in the report.
    Or else same property can b set in Apps level
    in the configuration page, check for administration
    general
    RTF Templates ==> Characters used for checkbox
    set the value , as i said .
    One thing , i was not able to find is
    documentation says
    use this
    "Albany WT J;9746;9745".
    i found link
    http://www.alanwood.net/demos/wgl4.html#w2500
    Using special characters from Windows Glyph List 4 (WGL4) in HTML
    i was not able to find the character for the corresponding number.
    will investigate further.

  • How to delete (remove) a approval procedures templates ?

    I have added an approval procedures template for 2 stages for Good Receipt PO.
    then we used this approval procedure for several days.
    recently , our manager hopes me to remove this approval procedure.    &#9582;(&#65088;_&#65088;")&#9581;
    I have tried many methods to delete (remove) or stop this approval procedure.
    but , I still can not find out the solution.
    hope somebody can kindly give me a suggestion. :P

    Hi!
    THERE IS NO WAY TO DO IT.
    If you still want to delete it from the database please create message to SAP support. May be it helps.
    Regards,
    Anton.

Maybe you are looking for

  • Canon MF4150 not compatible with Lion.

    Hello, I upgraded to Lion and since my Canon Image Class MF4150 doesn't want to print anymore. I checked the Canon's website and no drivers are out yet to support Lion. Canon UFR II Driver Error : Printer open failed.: -9781 Anyone have a workaround

  • ITunes recognizes iPod but can't sync - driver missing?

    Here's the rundown. Several months ago, the complete content of the old XP machine where this iPod's library resided was migrated to a Windows 7 Home Premium system using LapLink PC Mover.  iTunes had never previously been installed on the Windows 7

  • Help with project: trying to create variables from decimals

    topic may be a bit unclear, but I have a project from a java course. I need to create a simple program, but hit a bit of a bump. I have made a formula to find that the total hours equals 2.7350 which is equal to 2hours, 44minutes, 6seconds. so to sum

  • My HP 2210 printer has completely locked up

    My HP 2210 printer has completely locked up, all lights are on, not blinking, and no response from any buttons.  Only message I get is no printer connected...help...please!

  • Interesting result: Benchmarking MBP w Battery w/o Battery

    Machine: MacBookPro3,1 Standard 15" version with 2GB ram and 256 Vram Running windows XP SP2 with everything updated/patched via Bootcamp 1.4 Here are the following results: AC plug in w/o Battery AC plug in w Battery Aquamark 3: 69,300 / 100,500 Fin