Border Color of Photos in Photo Book

Example - Creating Photo Book using the Crayon Theme there are two options for displaying photos. A Photo Edge Border and a "drawn crayon" style Border.
At different points in the book using a 2-photo layout on a page it generates pink as a border for the first set of 2 photos. But then on a 2nd page further along in the book using another 2 photos elsewhere on a page it draws the borders as green. And a 3rd page makes them yellow.
Is there any way to control this ? Have the color I want appear where I want it ?
Beacuse I have also implemented a color scheme from one page to the next using the Background Color Option and the "pink" crayon border happens to coincide with the "pink" background.
I don't really want to have to change the background scheme and the photos are layed out chronologically for a travel excursion.
Is this something I should take up with Apple as an implementation in an update ?
Thanks.

In the Layout menu for two photos per page try selecting one of the top two options. That seemed to give me pink borders every time I selected it.
Do you Twango?
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Similar Messages

  • Help With Editing The Background Color On PHP-Based Photo Gallery Software!

    I recently installed and began using some PHP-based photo
    gallery software for my website. I've been able to customize other
    areas of the software's appearance (text color, etc), but am unsure
    of what need to be done to change the background on the 'Default'
    skin from white to black. Any suggestions? Below are copies of the
    code from the 'index.php' and the css from the 'default skin'
    portions of the software:
    <title>BigMusicGeek.com -- Your Online Concert
    Photography Authority!</title><?
    include "config.php";
    include GAZ_DIR_FS_ROOT . "includes/init.php";
    include GAZ_DIR_FS_ROOT . "includes/classes/gallery.php";
    $gaz_gallery = new gallery();
    //$gaz_gallery->gazimage = 78;
    echo $gaz_gallery->show();
    ?>
    a.gaz_nav {
    color: #FF0000;
    a:hover.gaz_nav {
    color: #FF0000;
    .gaz_path {
    font-size : 11px;
    font-family : Tahoma, Geneva, Arial, Helvetica, sans-serif;
    .gaz_cat_descr {
    font-size : 12px;
    font-family : Tahoma, Geneva, Arial, Helvetica, sans-serif;
    color: red;
    .gaz_cat_title {
    font-size : 12px;
    font-family : Tahoma, Geneva, Arial, Helvetica, sans-serif;
    color: red;
    font-weight : bold;
    .gaz_comment {
    font-size : 11px;
    font-family : Tahoma, Geneva, Arial, Helvetica, sans-serif;
    color: #FF0000;
    .gaz_nav_thumb {
    border-color:#f0f0f0;
    .gaz_nav_thumb_sel {
    border-color:orange;
    .gaz_image_info {
    font-size : 11px;
    font-family : Tahoma, Geneva, Arial, Helvetica, sans-serif;
    color: #000000;

    BigMusicGeek posted in macromedia.dreamweaver:
    >
    quote:
    Originally posted by:
    Newsgroup User
    > BigMusicGeek posted in macromedia.dreamweaver:
    >
    > > Okay, so I've been able to change the background to
    black (thanks
    > > again, BTW), but I'm still unsure of how to add a
    menu bar to the top
    > > of the gallery's main page. I keep copying and
    pasting in the code,
    > > but can seem to make it work.
    > >
    > > My main gallery page:
    http://www.bigmusicgeek.com/gallery/index.php
    >
    > I see no evidence on that page that you've pasted the
    table containing
    > your menu bar. When you do paste it, just be aware that
    the path to the
    > images and links will be slightly different (the images
    are not in the
    > gallery folder but at the root of your site: "/Home
    Navigation
    > Photos01.png" *)
    >
    > <IMPORTANT>
    > You have your <title> tag before your DOCTYPE.
    Make sure your DOCTYPE
    > is the first line. Then make sure the <title> tag
    is inside the <head>
    > section, not before it.
    > </IMPORTANT>
    >
    > > An example of my menu bar:
    http://www.bigmusicgeek.com/Home.html
    > > (it's at the top of the screen).
    >
    > When I paste the table code from there into the gallery
    page - and
    > changed the paths to match where they are, it appears
    just fine. Note
    > that you'll need to include the JavaScript from the
    gallery page in
    > order for all those JS rollovers to work. Probably need
    that big onLoad
    > section in the <body> tag as well - again,
    adjusting paths to match
    > where the images are.
    >
    > * You will very often see recommendations to avoid
    spaces or unusual
    > characters in your file names. ie: "Home Navigation
    Photos01.png"
    > should probably be "Home_Navigation_Photos01.png" or
    maybe a "-"
    > instead of spaces.
    > Mark
    >
    > Thanks for the input...again! Pardon me for being a
    novice, but what
    > piece(s)
    > of the paths for the menu bar need to be changed?
    If you've set up your site definition properly in
    Dreamweaver, you should
    be able to copy the table in design view from home.html and
    paste into
    gallery/index.php and DW will correct the paths
    automatically. It /might/
    even copy the relavent JavaScript over (I don't have DW on
    this computer to
    test that).
    But to answer your question, any path to the images must
    point to the site
    root (where your images are stored). The links will likely
    need to point
    there as well. For example, the Home button in your table
    gets its image
    from:
    src="Home Navigation Home01.png"
    In order for that to work from pages in the gallery folder,
    it will need to
    be linked with either a site root relative, or a simple
    relative path:
    src="/Home Navigation Home01.png"
    The above example tells the server to look for the image in
    the site's root
    folder.
    src="../Home Navigation Home01.png"
    This example tells the server to get the image from one
    folder up from the
    current folder.
    Likewise for the links. ie: href="Home.html" would become
    either
    href="/Home.html" or href="../Home.html"
    href="phpBB3/index.php" could become href="/phpBB3/index.php"
    or even
    href="/phpBB3/"
    HTH
    Mark A. Boyd
    Keep-On-Learnin' :)

  • Iphoto not displaying front cover photos in my book project

    After installing iphoto 11 the front cover page in my book project will not display the photos or the text, how ever the text will display if clicked on and then only 1 line at a time.  The photos on the  other hand will not.  When the photo boxes are clicked on, the border will highlight and the photo in the thumbnail list will be outline and the word "COVER" will appear when the curser is over the photo.  The back cover is fine.
    When the book is previewed the front cover is blank just as it appears in the working process.
    Is there a fix for this?  If the book is ordered will the photos magically in the hard copy?
    Bob

    Be sure to preview the book as described in this Apple document before ordering: iPhoto, Aperture: Previewing an order in iPhoto or Aperture. If the PDF file is has no errors continue and order. Save the PDF file that is created for comparing to the printed copy when it arrives.
    OT

  • How do i add a border to my assignment in photo shop

    can someone please walk me thru adding a border to an assignment in photo shop

    There are lots of ways of adding borders, it really just depends on what kind of border you want (appearance).
    For example, to add a simple matte to your work, you can set your background color swatch to the desired matting color and then go to Image > Canvas Size and increase the size by the desired amount (if you want 1 inch on each side, increase by 2 inches which will add half to each side if your position is in the center).

  • HT201471 I updated my iPad 2 (model A1395) to IOS 8 and all the colors changed and the photos are like negatives.  why? and how do I fix it?

    I updated my iPad 2 (model A1395) to IOS 8 and all the colors changed and the photos are like negatives.  why? and how do I fix it?

    Looks like someone changed setting in iOS8.
    Change this setting.
    Settings -> General -> Accessibility -> Grayscale or Invert Colors

  • How do I overlap photos in my books

    how do I overlap photos in my books

    rockyfromfort lauderdale wrote:
    how do I overlap photos in my books
    Not sure what your question is
    If you want to do a two page layout then under the page design choose the spread layout
    If you want to move photos around on a page so they are in different positions select the photo and depress teh command key and press an arrow to move it a bit - add the shift key to more it a bit more
    LN

  • Why can I no longer add photos my iPhoto book? Is there a limit to the number of photos? Must I delete unused photos??

    Why can I no longer add photos my iPhoto book? Is there a limit to the number of photos? Must I delete unused photos?

    This is book # 13 and I've not encountered this problem before. I am dragging photos into the sourse pane but they are not imported. I have other books w/ over 700  pics (not all used) but this has only 300+ so far. I've copied the book to a pdf and it looks as if I'll have to redo it unless there's another solution.

  • How can I transfer all my photos on MAC book pro in iphoto to a pc for back up and storage

    How can I transfer all my photos on mac book pro in iphoto to my PC. 

    Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.

  • Many times I drop a photo into a book page box and it resizes it.  I want to scale it smaller but it only allows me to make it bigger.  Why can't I slide to make it smaller?

    many times I drop a photo into a book page box and it resizes it.  I want to scale it smaller but it only allows me to make it bigger.  Why can't I slide to make it smaller?

    Control (right) - click on the photo in the frame and select Fit to Frame Size in the contextual menu.
    Here's an extreme example of that:
    OT

  • Accidentally uploaded entire photo library - 18,000 photos - to one Book. How do I get them out???

    Help! I accidentally uploaded my entire photo library -- 18,000 photos -- to the Book I am working on. Now everything runs slow, and I can't figure out how to get them out quickly. It takes several seconds to just delete one photo. I don't want to delete the entire book, because I already spent a lot of time laying out 30 pages. How do I get rid of all the extra photos from the book?

    Four  choices
    1 - delete the book and start over
    2 - delete the extra photos in the book
    3 - resotore your backup from before you did this
    4 - leave them in the book and ignore the extras
    LN

  • Problem Dragging a photo into a BOOK project

    I did this last week. But now I can't seem to drag a photo out of one album into a book album so that I can add this photo to the book during the layout process. There doesn't seem to be a work-around for this. When I called Apple, they wanted $199.00 to help me trouble-shoot this. Anyone have any ideas how I could fix this or make this work?

    I hope I have the right context: Ruscle is correct, but you have another option. If its not the pick of the stack, you can designate a non-pick as an "album pick". It should work for the book you are working on from then on. Go to the Stack menu and select Album Pick. See example here (scroll about halfway down - look for the "Non-Pick Images" error window):
    http://homepage.mac.com/bagelturf/aparticles/books/blayout/blayout.html
    That site has several nice tutorials and some great tips, by the way.

  • Export contact photos from Address Book [REPOST]

    Exporting contact photos from Address Book in Mac OS X 10.4 Tiger is a simple drag-and-drop to iPhoto or Finder. The picture is saved as a TIFF. However, in 10.5 Leopard, dragging the contact photo is non-responsive in both viewing and editing mode.
    How do you export contact photos from address book in Leopard?

    I dont believe you can. The address book usually makes use of photos already available on your drive, such as those in your iphoto libraryd, or the login icons, etc. Perhaps the lack of drag and drop is something they unintentionally left out, in which case you can request it by sending Apple feedback here: http://www.apple.com/feedback/macosx.html

  • How can one create a paint color generated from a photo using Kuler?

    How can one create a paint color generated from a photo using Kuler?

    The best way to remove a pattern is to use a Fast Fourier Transform.  There's a free plugin (as well as examples and instructions) here:
    http://dl.dropboxusercontent.com/u/6795661/4N6site/improc/fftplugin/examples.htm
    Using the plugin requires editing the individual colour channels, which PSE does not natively allow.  You'll need the reasonably-priced Elements+ addin:
    http://elementsplus.net/
    Here's a crop at 100% of the result I got:
    The pattern is much reduced.  With some experimenting, you can probably do a little better.
    Ken

  • Insert photo in purchased books

    Dear friends I have very simple question :) . I will give you example I want to create photo book but reason is how to create this book that after purchase customers wll have posibilities directly from iPad insert some pictures or video in this photo book.
    It is possible or not? Let customers insert photos in purchased book from ibookstore

    Right, not possible with iBooks & iBooks Author.
    But certainly doable by making an app, instead. Disclaimer that this may not be a trivial effort applies.
    As always, feel free to use the 'Provide iBooks Author Feedback' menu item for features you'd like added in the future, etc.
    http://www.apple.com/feedback/ibooks-author.html

  • Unable to add re-edited photos to a book.

    I uploaded a folder of photos to ibook and found the book quite easy to assemble.
    I then decided to re-edit 2 photos. I went back into the original folder to do so, and re-loaded the whole folder to iphoto.
    The 2 re-edited photos don't appear - I have tried to do allI can think of, but they still dont appear.
    When I deletd them from the folder in ibook, they also were deleted from the book - but I cant find any facility to add photos to the iphoto folder.
    Must have missed something & I hope my explanation isn't too confusing.
    These are 'informal' wedding photos I am doing as a wedding present for a friend's daughter so I need to finish ASAP.
    Hope you can help,
    many thanks.

    awimaging:
    Try dragging the photos onto the book icon in the left hand pane.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Selecting photos for a Book

    I cannot figure out how to get photos from iPhoto "albums" into a book I want to produce.
    There's a selection of recently downloaded photos at the top of the window, and I can move these into the book, but do not see how to move those I put into and "album" for this purpose.

    To start a book make an album and put the photos for the book in it, select all and create the book - to add photos to a book taht is in process simply drag photos to the book in the source pane on the left
    LN

Maybe you are looking for

  • Itunes auto-ejects my iPod classic immediately after mounting

    greetings, a very strange problem started today...  i have a 120Gig iPod classic, software version 2.0.1 i have 3 macs of different: 1 macbook pro about 3 years old with 10.6.6 and iTunes 10.1.2, 1 macbook pro also 3 years old with 10.6.7 which is my

  • Third party gratis order and cost centre allocation

    Hi all I have a problem with third party sales. When the sales order is gratis, the cost centre allocation is determined by our gratis order reason. This particular cost centre is locked for invoice receipt posting (as it is gratis), and so we cannot

  • OC4J: error compiling intro.java

    I've got Oracle9i db (9.2.0.1) & OC4J 9.0.3 installed on Windows 2000 for development. OC4J is installed in E:\oracle\ora90\oc4j, J2EE_HOME is identified as E:\oracle\ora90\oc4j\j2ee\home. I've installed JDK 1.3.1. I've got a file 'intro.java' that I

  • Full backup does it include andriod apps downloaded through SNAP

    I just want confirmation if I use BB Link to do a full backup, it will backup not only the app data but the app itself which was downloaded through SNAP and not Amazon or BB world. Thanks

  • Enabling the sip/alg

    Hi  I am looking to use a softphone from a third party software and for that  I have just purchased a new BT Home Hub 3 in the hope that it would work (I had BT Home Hub 2 and was told to buy the Home Hub 3) but unfortunately it doesn't. I was told t