Chapter - Heading - Graphics Background

I'm trying to figure out how to create a different Page background and different text "header or footer" located on the page. In either case the background page and text header are dependant on the Chapter #.
For example)
1. a page which is part of Chapter "apple" would have a picture of an apple in the corner with the word apple under it.
2. a page which is part of Chapter "orange" would have a picture of an orange with the word orange under it.
A master layout applied to all pages would not work since the backgrounds need to vary with each page part of a different section.
I haven't figured out a good way to do this. Seems to me that you need to create section text, but can a section graphic be created?
Thanks,
Ken

You'll need a different master for each chapter.

Similar Messages

  • Links positioned on graphic background.  How?

    I'm working my way through the Adobe Fireworks CS5 version of "Classroom in a Book" and I've come to an impasse.
    I'm in Chapter 8, page 199, step #4; the task is to use the CSS and Images Export.  At this point we have a web page with seven distinct regions.  One of these is a slice, a navigation banner with a graphic background and text for navigation links.
    The instructions in the book are to change the img_nav slice type to Background Image and to hide the sublayer containing the text for the links.  The book explains that "...since the slice will become a background image, it cannot have HTML links applied to it."
    It goes on to say that "...creating the navigation is not a job for Fireworks, and the navigation menu would need to be created later in a web-page editor."
    How?  The links are sort of in the middle of the graphic.  When I try to add links in Dreamweaver I don't seem to have much control over there placement.  It is either at the beginning of the div or the end. 
    Can someone point me to a resource that explains how to place a link on top of a graphic where I want it?  Also, since I'm learning, I'd like to stick with Best Practices and use CSS while minimizing the use of tables.
    Thanks,
    Dan Earley

    Perhaps it's time for you to purchase Dreamweaver CS5 "Classroom in a Book"!
    I'm not directly familiar with this textbook... If the navigation is the blue text (Features - Fashion - Calendar - Video - Blog), it would typically be handled in HTML using an unordered list (ul), with each list item (li) containing a link (a) that surrounds the text itself. CSS would be used to position the navigation, perhaps applying display: inline or float: left to the list items (li) to make the list run horizontally. The list itself might be positioned within a surrounding div using margin or padding—or even using absolute positioning (in a relative context), given that there's probably a specific height to the background image (the "check" logo).
    As far as links go, they're traditionally inline elements that wrap around other inline elements—like text within a paragraph or heading, or an image. However, I think as of HTML5, they're also allowed to be wrapped around multiple block-level elements. Regardless, the simplest way to add a link to an image is to surround the image (img) tag with a link (a) tag. However, like your book says, if an image is being applied via CSS as a background image, it cannot have a link applied to it, because it's not part of the HTML. But a background image must be applied to some HTML element, and perhaps the link could be applied to that element.
    A link can also be converted to a block-level element via CSS using a display: block rule. This will make it occupy the full-width of its container, which can make it more "clickable" by giving it a larger area of interactivity.
    Not sure if this information is helpful or not... I wonder if the book goes on to answer any of your questions later on. Often, these types of books complete a project step-by-step, chapter-by-chapter, eventually addressing issues brought up in earlier chapters.

  • How to set an image to be a chapter heading?

    Hello folks. I am trying to work out how to set an anchored image - which I am using as a chapter heading - to be detected as a chapter heading when I generate a Table of Contents?

    I don't think the images being anchored is an issue. Since the same principle would apply to non-anchored images.
    I'm just anchoring the header images so they remain in place with the text as I am still editing the text of the document. But here is a screenie. As you can see, the titles "Package Contents" and "Guidelines" are both graphical elements.
    What I want, is that when I generate my Table of Contents, the software will output the text ""Package Contents ... 3" and "Guidelines ... 3" instead of "[image] ... 3"
    Thus why I wonder if I can in essence, mark or tag the images, then have the mark or tag displayed in the TOC.

  • Extra White Space Around Header Graphic & NavBar

    I have a header graphic and Navigation Bar (rollover images)
    positioned inside a table. Unfortunately, there is about 1-2 pixels
    of white space on the left, right, and top of the header graphic.
    Same with the NavBar--there's 1-2 pixels of white space on the
    edges (left & right sides). By default, cell padding for the
    table is set to zero. If cell padding is set to zero, why am I
    seeing white space between the edge of the graphic and the edge of
    the table?
    You can see what I'm referring to here:
    http://newstartinvestment.com
    What is causing this extra white space, and how do I get rid
    of it?

    On 26 Mar 2007 in macromedia.dreamweaver, csbridges wrote:
    > I have a header graphic and Navigation Bar (rollover
    images)
    > positioned inside a table. Unfortunately, there is about
    1-2 pixels
    > of white space on the left, right, and top of the header
    graphic.
    > Same with the NavBar--there's 1-2 pixels of white space
    on the edges
    > (left & right sides). By default, cell padding for
    the table is
    > set to zero. If cell padding is set to zero, why am I
    seeing white
    > space between the edge of the graphic and the edge of
    the table?
    >
    > You can see what I'm referring to here:
    >
    http://newstartinvestment.com
    (Btw, I
    > don't like the yellow rollovers--they'll be removed
    shortly.)
    >
    > What is causing this extra white space, and how do I get
    rid of it?
    Personally, I thought that the white border was a feature,
    but... In
    addition to the cellpadding, add cellspacing:
    <table width="780" border="0" align="center"
    cellpadding="0"
    cellspacing="0" bordercolor="#000000" bgcolor="#FFFFFF">
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • How to set Analysis graphics background color to Transparent? not White.

    How to set Analysis graphics background color to Transparent? not White.
    thanks
    Edited by: user13257485 on 2010-8-15 下午11:53
    Edited by: user13257485 on 2010-8-15 下午11:55

    Hi,
    We almost had the same requirement, but we just needed to color a specific column.
    Here goes the solution to that, you might do the same for your row highlighting
    Changes are required in jsff and one method to be added in backing bean
    1. JSFF :
    <af:column headerText="Amount"
                     id="c4" width="100"
                     inlineStyle="#{backingBeanScope.BackingBean.cellColor}">2. Backing Bean
    //searchResultTableVO is Table's VO
    public String getCellColor() {
          FacesContext ctx = FacesContext.getCurrentInstance();
          ExpressionFactory ef = ctx.getApplication().getExpressionFactory();
          ValueExpression ve = ef.createValueExpression(ctx.getELContext(), "#{row}", FacesCtrlHierNodeBinding.class);
          FacesCtrlHierNodeBinding node = (FacesCtrlHierNodeBinding)ve.getValue(ctx.getELContext());
          Row row = node.getRow();
        if(row.equals(searchResultTableVO.getCurrentRow())){
    //You can add your inline style for font-style too
          return "background-color:Red;";
             return null;
      }Hope this is helpful :)
    Regards,
    Neha..

  • Possible to randomize header graphic per page?

    Hello all,
    I work at a product design consultancy and am seeking to create a standard (-ish) InDesign template for use in all of our presentations.  I have created several header images, and would like to set up a system (using a master page) in which a random header image is used upon creation of a new page in a document.  In other words, if my Adobe-challenged mechanical engineer is creating a new page in a presentation, I want InDesign to choose a random image from some directory and use it as the new page's header image.
    Is this possible?  I know it's a very basic script in web coding, but I don't know a single thing about InDesign scripting.
    Note: I would also be satisfied if, when the user creates a new page, no header image is generated; instead, a script is run after finishing the presentation, inserting random header graphics on each page retroactively.  I would then save/pack the presentation.
    Thanks in advance,
    Matthew Spencer

    It's certainly possible, but workflows where things happen automatically in documents can be...confusing and hard to debug.
    But you can write a startup script that listens for an AfterOpen event and then checks to see if the file is an unmodified template file, in which case it substitutes a random image...
    Or you could have the script simply open the template file and make the change, and have the user run the script instead of opening hte file. That's safer and less error-prone.

  • Adobe Forms: Printing Header Text - Background as Dark

    Hi,
    We are upgrading our ECC system to Enahncement Pack 5.
    We have Adobe forms for Sales Order, Delivery Notes,... In Border Palatte, we have set 'Solid' as a background fill for our header texts
    After applying patches, Adobe forms started printing header texts background very Dark.We are not able to read the texts. If I view the document in the spool then they are displayed correctly. If I save spool document on the desktop and print it then also output is printed as we want. Only when we print it directly through VA01, VA02 ( directly from SAP ) then it gives this error.
    I removed the background fill then it prints text correctly but then I loose the separation between header and content.
    I will appreciate any help in this regard
    Jitendra Pongurlekar
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Mar 4, 2011 10:55 AM

    Hi mrudul,
    as usual in programming, you got different ways to solve the problem. So if you work through the content here on SCN you will find a lot of examples how to decide between different letter heads. The easiest solution (and might be the best) is to pass the necessary data via the interface and do not add any condition in the form itself.
    How to create a dynamic field and all the stuff is very basic knowledge, so I think you do not need any explaination how to do that. If so I refer you to the official documentation provided by SAP.
    If you have some minutes please work through this blog Before You Ask - Just another guide and phrases like "urgent" or "do reply" are just not necessary to get an answer
    ~Florian

  • Graphic Backgrounds

    I used to be able to create new graphic background images with AppleWorks-Draw. Now that Appleworks is no longer compatible with Mac OS, does anyone know of a simple way to create your own background images using Pages? (I don't think it's possible)
    Here is a three page sample of some of the graphics I created in AppleWorks-Draw:
    http://www.fotofabini.com/Backgrounds/
    They can be used for browser or page backgrounds in iWeb. In Draw I could work designs at the pixel level and in any color. Now I can't. Do you know of an alternative in Pages or iWork?
    I've posted similar questions in the AppleWorks & iWeb forums. Thanks. - Fabe

    I understand your frustration, Fabini, but I think you may be asking for the wrong functionality in the wrong applications. Pages is a word processing and page layout app, and Keynote is a presentation app. Neither are designed to do creation and editing of pixel precise bitmapped graphics (unlike the apps I listed earlier). Pages outputs its documents to a variety of different printers as well as PDF, and those cases you wouldn't want to create 72DPI bitmapped graphics, you would want resolution-independent vector art, which Pages gives you.
    It is indeed annoying when some device or application that you had used for a purpose unintended by the developer no longer supports that purpose, but it shouldn't be unexpected. I liken this to coathangers -- although old-fashioned wire coathangers were useful for all sorts of other things than just hanging coats (e.g., car antenna, impromptu drain router, structural wire for craft projects) it is unreasonable to expect that plastic or wooden coathangers would support those uses.
    And it would be cool if Apple at some point created a graphics app, but I seriously doubt that such will happen while Adobe is so important to the platform. Given that, the alternatives listed above are a good start for useful and lightweight applications that are easy to use and good value for the money.

  • Present style of the Chapter Heading of the excisable Items...

    As per the present style of the Chapter Heading of the excisable Items, there is no dotsu2026 itu2019s a plain number without dotsu2026 Is it possible in SAP B1 2007 B PL 7?

    If you need to print out the Chapter Heading with dot, you could use formula to reach your goal.
    Thanks,
    Gordon

  • Tutorials on Header Graphics

    Hi,
    Could I please have some good tutorials on how to make good header graphics?
    I'd appreciate it. Thanks in advance!

    There is nothing special about header graphics – they are just a wide, rectangular image inserted in the top of the document, whether it is for web or print.
    I suggest you try an internet search for photoshop tutorials.
    (Or look for templates to get some ideas.)

  • Section Header Text Background Color

    Hi have a catalog that has a running section header that will be placed over a black graphic the width of the page header.  I would like to have a white background box appear the length of the header section text, but not be the full length of the text box defined on the master pages for the header.  I would like to do this in an automated fashion rather than manual placing the graphic around the header text on each page.  It won't work to place a white box under the text as it is part of the background already being a master page item, or am I missing something.  In brief can I have a background color that dynamically adjusts to the length of a text string?
    Thanks,
    Dave

    If that text has a character style (or if it doesn't give it one) make the character style include an underline, then make that underline really thick and give it a baseline shift.  The same technique is commonly used for highlighting.  There's a few other options you can play around with in the underline options too.

  • Best Graphics backgrounds for final cut pro and g-5's

    I am not sure if this is the best place to post this but I was wondering if anyone could tell me what are some of the best graphics to use with final cut pro that work real well with a dual g5, this would be like quicktimes for backgrounds. I have had alot of people tell me after effects but then I am looking more for software that you dont have to build, I have been looking at Digital Juice and was wondering how well that works with final cut pro, are there any other High Quality graphics already put together, thanks for your help and if this is not posted in the right spot let me know where would be the place to post something like this. thanks

    New Discussions ReponsesThe new system for discussions asks that after you mark your question as Answered, you take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts.
    If we use the forums properly they will work well...
    Patrick

  • Change Column Header / Column Background color based on a value in a specific row in the same column

    SSRS 2012
    Dataset (40 columns) including the first 3 rows for Report layout configuration (eg: the <second> row specifies the column background color).
    Starting from the 4th row, the dataset contains data to be displayed.
    I would like to change the background color of the ColumnHeader/Column based on the value in the same column in the <second> row.
    How can I accomplish the this requirement? (this must be applied for all the columns)
    Thanks

    Hi Fasttrck2,
    Per my understanding that you want to specify the background color of all the columns/column header based on the value in one special column of the special row, right?
    I have tested on my local environment and you can add expression to condition show the background color in the columns properties or the column header properties.
    Details information below for your reference:
    Specify the background color in the Column header: you can select the entire column header row and in the properties add expression in the Background color :
    If you want to specify the background color for the entire column, you can select the entire column and add the expression, repeat to add background color for other columns.
    If you want to specify the background color based on the value in the specific columns and row, you can create an hidden parameter to get the list of values from the  specific column, specify the Available values and default values by select "Get
    values from a query", finally using the expression as below to get the specific value you want:
    Expression(Backgroud Color):
    =IIF(Parameters!Para.Value(1)="1221","red","yellow")
    If your problem still exists, please try to provide some smaple data of the report and also the snapshot of the report structure to help us more effective to provide an solution.
    Any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Separate Header Footer Backgrounds

    Is there a way possible to specify different backgrounds for the header and footer in iWeb. As of now it seems you can only specify the page and browser backgounds. Any work around to specify different repeating backgrounds in a header and footer?
    Thanks for any help.

    There is a workaround. Create a rectangular shape and move it into the header or footer area. Then move it back or front as needed. Remember you can also create TEXT in the footer area if you create a TEXT and then press CMD while holding the TEXT with the mouse and moving it across the line that divides main body from footer. These two actions allow you to customize the footer area... caveat: you will need to do CMD-C and CMD-V to paste same change on every page of your site as this modifies just the page you are working on, not all the footers at once.
    Hope this helps,

  • Supress heades on background report

    When I run a standard ALV report in the background, the spool list has header information after every page break.  Is there a way to suppress this so that I have only the header information on the first page, and not on subsequent pages.  This is causing an issue with verly large reports that would time out if run in the foreground.  Further, the user wants to be able to extract the spool list ot Excel and not have do manually delete all the header rows.
    Thanks

    What is the question?

Maybe you are looking for

  • Dynamic week view in calendar

    Hey everybody, Is there any way to display the week in a DYNAMIC way in calendar for mac (showing e.g. the past 2 and future 4 days rather than a fixed Monday to Sunday view)? Thanks in advance for your help! Best, C.

  • EDI 823 for Lockbox

    Hi, We are trying to implement Lockbox functionality using EDI(FINSTA01 IDOC Type / Lockbx message type). Where can I find what information will be available in which data segment of the FINSTA01 type? I went to we60 and there is no detailed informat

  • Oracle Service Bus Debugger: stepping an inexisting frame

    Hi, We are frequently getting below alert on production. The messages are not failing beucase of this. Does anybody face this error before? ..... not able to reproduce this on our test environment. <BEA-382004> <Failed to process request message for

  • Awful sound using Jambox speaker with my iMac

    I just purchased a Jawbone Jambox speaker hoping to hook it up to my iMac and subsitute for my bulky receiver and speakers. The sound quality is awful. Sounds fine when connected through a USB cable, also works fine with my iPhone. Any chance of impr

  • Help: SAP Netweaver 7.0 ABAP Trial Version, Progess 22%, no response.

    SAP Netweaver 7.0 ABAP Trial Version                     Preparing packages for installation...                     SAP Utilities 7.6.02.14 32 bit                     |||||||||||||||||||||||||||_____22%_______________________ As you can see, the inst