Putting a shape in a header

I want to put a Shape in a header - making it appear on the top of every page. This does not seem to work. Text appears on the top of every page, but shapes do not. Am I missing something? Is there a way to get shapes to show up in headers? Thanks.
BR

berrett,
The question isn't, "Is there a way to get shapes to show up in headers?" It's "Is there a way to get shapes to show up on every page?" The answer is yes.
Drag the shape to where you want it to appear on every page. With it still selected, click on Format > Advanced > Move Object to Section Master. That's it. This assumes you're working in a word processing document.
-Dennis

Similar Messages

  • How can I put one "shape" on top of another in pages?

    Hi all:
    I'm trying to do something pretty simple.  I made some shapes using the "shapes" tool in the toolbar.  I want to put one shape on top of (or in front of) another but it gives me the masking tool instead.  I tried putting a shap in the background but that didn't work either.  it tends to snap the shape I move to it right back to where it was when I tried to move it.  How can I do this?
    Thanks!

    I really don't understand what you are doing.
    I inserted two shapes with their default settings and I got what you see.
    I unchecked the box "Object causes wrap" but it's usefull when there are text objects in the page.
    Yvan KOENIG (VALLAURIS, France) samedi 7 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How to put checkbox into classical report header row?

    Hi,
    I have a classical report that has a check item as a first column. I would like to put a check box item into the header row too, When checked it is supposed to set the check box item in all report rows. Something like in APEX Shared components / Links / Grid Edit.
    Is this possible to do? TIA.
    Tamas

    Hi,
    See e.g. this post
    Re: Tabular form check all checkbox header
    Regards,
    Jari

  • APEX 3.0 PDF FOP OC4J REPORT: how to put a variable in the header or footer

    hello.
    I want to put a variable ( like :P15_MY_PARAMETER) in the header OR footer of a standard PDF report , but does'nt work.
    I tried HTML formating with ' &P15_MY_PARAMETER. ' like described in the thread Include a display value in HTML footer ( Include a display value in HTML footer )
    but PDF generated is not readeable by Adobe, , I suppose html codin was not translated.
    Is it a possibility to put a variable in a PDF header / footer.?
    Thanks
    Fernand Ducarme

    Keith,
    If you want to use the value of page items in your PDF page header or footer, they need to be written to session state first. In order to do this, your form needs to be submitted. So a button that redirects to a URL or a report print links (that also redirects), won't do that. But submitting your form doesn't necessarily mean you'll have to leave or refresh your current page. All you would have to do is create a branch that points to your PDF document, and make that the target of your submit action. This way, your page doesn't refresh, and you'll get the open/save PDF dialog you would expect.
    So to give you an example, if you have a regular reports region, enable PDF printing, but do not specify a link label. Then create your own print button, which needs to be a submit button (not redirect to URL). And then create a branch to the current page that is executed when pressing your print button. That branch also needs this request:
    FLOW_XMLP_OUTPUT_R[Report Region ID]
    so if your report region ID is 90104803966374878, then the request would be:
    FLOW_XMLP_OUTPUT_R90104803966374878
    The same technique works for report queries, only in that case you would point to page 0 and use this request:
    PRINT_REPORT=[your report query name]
    So if your report query name is "myreport", this would be
    PRINT_REPORT=myreport
    Hope this helps,
    Regards,
    Marc

  • PHP put page-specific text in header file

    Hello!  I am creating a website, and I have created a header that includes a title bar (ALL of my pages are .php).  This code for the title bar is as follows: 
    <div id="titlebar"><table style="margin:0 auto;"><tr><td>TEST</td></tr></table></div>
    When I put this into each page I create, I use this:
    <?php require("header.php"); ?>
    What I WANT to do is replace "TEST" in my title bar code with a php code that allows me to put in specific titles (which could be Home, Contact, Merch, etc.) in my individual pages.  Is this possible, and if so, how?

    OK, I deleted the table (I had used that when I first started making these pages, I was completely new to html, then learned css, and I'm just now tesing out php).  Works better than I thought it would.  Now, as far as everything else...  this is my website:  http://pcassistant.net  It's a band website, and ALL I'm using the php for is putting the header and footer on my page.  The top image, nav bar, and title bar are included in the header.php, the footer.php contains all normal footer info.  I'm doing this to help out with changing the info in both the header and footer ,that way I don't have to do it to every single page, just that file specifically.
    My index.php code looks like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Home</title>
    <link href="http://asc.pcassistant.net/main.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div id="wrap">
    <?php require("header.php"); ?>
    <div id="content">
    <p>I STILL have no freakin clue what to put on this page.</p>
    </div>
    <?php require("footer.php"); ?>
    </div>
    </body>
    </html>
    My header.php looks as follows:
    <html>
    <body>
    <div id="image"></div>
    <div id="nav">
       <ul>
       <li><a href="http://asc.pcassistant.net/index.php">HOME</a></li>
       <li><a href="http://asc.pcassistant.net/music.php">MUSIC</a></li>
       <li><a href="http://asc.pcassistant.net/band.php">BAND</a></li>
       <li><a href="http://asc.pcassistant.net/merch.php">MERCH</a></li>
       <li><a href="http://asc.pcassistant.net/contact.php">CONTACT</a></li>
       </ul>
    </div>
    <div id="titlebar"><p>TEST</p></div>
    <br>
    </body>
    </html>
    If you looks as the website, every page displays "TEST" in the titlebar.  I want to be able to change this according to each page, but I want to keep the titlebar located in the header.php file.  These pages are in their very early stages, and there's TONS more info to put on the pages, and more pages to add, so I want to keep all changes required as simple as possible, hence using php.  With all that being said, is there a way to put in my titlebar in my header.php a php code to allow me to edit the title of each page individually.

  • Can you put a company logo in header of standard ABAP report

    Is it possible to put a company logo in the header of a standard abap report.  It's easy with an ALV report and I'm sure you can do it with SAPScript, but can it be done on a standard ABAP (write: /) report?

    You can put it on a screen (dynpro) but I think it's impossible to put it on a list.
    :bus

  • Where to put documentation and change log heading?

    Hello, i'm creating a new global class (SE24), and by client standards I need to create a heading on any (code) object, where its purpose is briefly explained and where further changes that may be made to the object should be documented. For example:
    *     PROGRAM              ZCL...
    *     CREATION DATE        dd/mm/aaaa
    *     APPLICATION          MM
    *     AUTHOR               Alejandro Bindi
    *     DESCRIPTION          Does X check
    *     TYPE                 Class
    *     MODIFICATION LOG
    *  DATE        AUTHOR     Transport#   DESCRIPTION
    Now, where is this heading generally put when creating classes? I thought on putting it on Documentation but it'll be created on a specific language, I don't want that...
    Thanks,
    Regards

    Hi Alejandro,
    Why don't you create this header as a Pattern ? After created all can use it easily, independent of language.
    I created it here in my company and all people use it.
    To do this in SE24 or SE38... go to Utilities->More Utilities->Edit Pattern->
    There you have:
    Create Pattern
    Modify Pattern
    Delete Pattern
    Display Pattern.
    Kind Regards.
    Marcelo Ramos

  • I want to put a .jpeg in the head of a page.

    It should repeat it on every page. But it is not possible to put a .jpeg file in the header.
    Can somebody help me. In word it is no problem at all.
    Kind regards,
    A pages user

    With which application are you doing this?

  • Numbers '08 - Why can't I put a formula in the header row? i.e. in cell H1  =SUM(H2:H46)

    When I try to add the SUM formula to H1 and press ENTER, the formula automatically moves to every cell within column H and disappears from H1. If I instead press the Function icon then SUM, while in the H1 cell, the formula automatically moves to the last cell in the H column.

    It seems that you discovere the wonderful feature which was dropped by iWork '09.
    Applying a Formula Once to Cells in a Column or Row
    When a table has header cells, you can use them to quickly apply a formula to all the
    cells in a row or column. The values in the cells are recomputed using the formula. This
    formula is called a header formula.
    To apply a header formula to cells in a column or row:
    1 Select the header cell for the column or row.
    2 Open the Formula Editor. For example, type the equal sign (=).
    3 Type the formula you want to apply to each cell in the column or row.
    For example, to assign values to the cells of column C that are five times greater than
    the corresponding cell in column B, you’d use the formula B*5 or B:B*5.
    The formula is duplicated in all the cells in the column or row. In this example, cell C4
    would contain the value computed by using the formula B4*5.
    4 Click the Accept button or press Return or Enter to save the formula.
    Yvan KOENIG (VALLAURIS, France) jeudi 8 septembre 2011 19:01:05
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How can i put some more fields in header portion of my main window

    I am having one table in main window.Item no,itm desc,net valu,Uom.I need to add required date and unit price these to into my table.I had declared these two in text fields.So that these two fields are coming in the below line of the header portion.How can I maintains all these 6 fields in header portion.

    Hi ,
    click on the table element. Then click on Table Painter. There create two more coloumns . Simplly by drawing two vertical lines. Over there u have the facilty to do that.
    Then create two text nodes in the header window .and give the output options properly .Then u can get the desired result.
    Also try to increase the width of the table, so that it can accomodate all the cells in one line.

  • Put a Gun to My Head

    My itunes for some reasons keep coming up with "required files missing" reinstall but I cannot delete my program from my "add and remove" file. Help

    This may help:
    Bugie: Perform a Thorough & Complete Uninstall and Reinstall of iTunes/QuickTime.

  • Pages 5: How can I put a picture in the header of a Page?

    In the previous version (4.3) this was no problem. This seems not to possible any more?

    I have a suggestion for doing this here:  https://discussions.apple.com/thread/5483860

  • How to make shapes appear behind page header/footer in Pages '09

    In a Pages (v4.0.2) page layout document, I'm trying to make a gradient as the page background. Since there's no built-in way to do this (as far as my googling shows), I've tried what others have suggested:
    1. Create a new shape and resize it so it fills the entire page
    2. Go to Arrange > Send to Back
    3. There's no step three!
    This work great for most of the page. However, the page header and footer are always hidden by the shape, and I can't find a way to get them to lay +in front+ of the shape. How can I get the background shape behind the header & footer?
    Thanks for your help,
    Mike

    fruhulda wrote:
    As far as I know you don't need to send the shape to the back.
    Choose in the menu Format > Advanced > Move Object to Section Master
    Are you sure that we may do that with a shape?
    Here the item is greyed
    Yvan KOENIG (VALLAURIS, France) samedi 29 août 2009 21:28:21

  • Putting shapes in master slide that allow text to be inserted in slide

    Is there a way to put a shape or text box in a MASTER slide and then be able to enter text into the shape or text box on slides created using that master? When I do that and try to select the shape to enter text, a drop-down box appears to inform that objects can ONLY be selected on the master. Thanks!

    Welcome to the forum!
    Here's a method:
    1. Start with a master that already has an "enter text" field on it. I used the "Title & Subtitle" master.
    2. Duplicate it, and re-name it something appropriate (Text on Object).
    3. Place your shape on it, adjusting it however you wish.
    4. Depending on your desired final result, you might want to delete one of the fields. (I deleted the "Title", but it's immaterial, since you'll probably want to re-format it.)
    5. Highlight the remaining text field and arrange it to the front.
    6. Place this field over your shape and format it as you wish.
    Voila! Slides made from this master will achieve what you wanted.

  • Insert "head" should put content in the header -- but doesn't

    Insert
    Head
    Meta
    Provides a call up box to complete the description or other meta data.
    Since it is in the insert "head" area, one would assume that it would mean whatever you enter would go as a meta tag in the header. Low an behold it inserts it wherever the cursor is.
    Is this a bug?
    Or is there some unknown reason why a meta tag would be inserted into the body, but be listed as insert in the head?

    That fact that is implies that it is inserting a meta tag -- and meta tag by definition goes in the header (except when using this tool) then it would indeed be a bug.
    Why would you insert a meta tag anywhere but inside the header?
    The pulldown says : Insert (assuming putting something in the document) >> Head (assuming into the header) >> Options
    So, it indicates what and where it is going to insert, but in reality, it doesn't.
    That would be the definition of a bug.
    Thank you.

Maybe you are looking for

  • Payment Term - Advance & Retention

    We have a requirement.  We need to define a payment term as follows: 5% Advance, 90% Payment, 5% Retention In the above case, should I define it as an installment term with 5%, 90%, 5% slabs ?  Please advise what is normally done for this type of pay

  • Formating Hard Drive

    My first problem with I tunes is changing the user name, upgraded my computer from desk top to lap top. Since I changed computers I could not get my original I Tunes setup on my new computer. All of the songs, movies and prod cast could not be transf

  • Process Import Supplier Addresses

    After submit Process ImportSupplierAddresses, the following message appears: Process contains parameters and cannot be rendered locally. Please check your portlet configuration to enable launching this process inside a portlet. Do you know what to ch

  • Logging in without a keyboard...

    So, here is a strange issue... My wireless keyboard died completely while my computer was on... I took it in and got a replacement for it... but now, my computer is password locked and I need to get the new wireless keyboard to work in order to log i

  • JDialog creation in Jbuilder

    I have created a Jdialog and set various component on it throughDesign of Jbuilder.Now after creating the GUI,when i press Control Z,an empty Dialog comes up which is same as the one i created.