How do i use numbers for image gallery and arrows?

Hello there,
I'm hoping someone can advise me on the best possible way.
I would like to use numbers to help the user navigate through the image gallery i'm creating and arrows on either side of an image (one image viewed at any one time). I have attached an image of what i'm trying to acheive. I feel like the arrows will help aid the user to navigate and the numbers will inform them on the number of images to view.
I have so far created the site with a template (logo and nav bar) and child pages for: home/about/work/contact.
Hope to hear from someone soon.
Nicola

With so many pre-built image galleries available to you, there's no reason to re-invent the wheel.
CSS Image Viewer (view source to see the code)
http://alt-web.com/DEMOS/CSS-Image-Viewer.shtml
jQuery slideViewer 1.2
http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html
57 + Image Gallery, Slideshow & Lightbox solutions
http://www.1stwebdesigner.com/css/57-free-image-gallery-slideshow-and-lightbox-solutions/
In addition to the ones above, log-in to Adobe's Widget Exchange with your Widget Browser
http://labs.adobe.com/technologies/widgetbrowser/
    * jQuery Cycle Widget
    * Lightbox Gallery Widget
    * Spry Content Slides
    * Spry Image Slideshow
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • How can i use FNDLOAD for XML reports and data defnitions

    I registerd concurrent program and linked xml reports and data defnitions in staging instance, and successfully moved to DEV.. after that stage is refreshed and when i download the details from DEV and uploaded to Stage only concurrent program i can upload...Wheteher we can use FNDLOAD Command for the Data definitions or Data template for the XML Report,used FNDLOAD for the concurrent program, it uploaded only concurrent program details.

    Hi,
    Use XDOLoader.
    Note: 469585.1 - How To Use XDOLoader?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=469585.1
    Regards,
    Hussein

  • Can I use Ethernet for Internet connection and Airport express for printer

    How / can I use Ethernet for Internet connection and use an airport express to set up wifi for printer and Apple TV?
    Macbook Pro. OS X 10.9.4

    I've never tried it, so I don't know what the results will be.
    However, you can move Ethernet to the top of the Services list in Network System Prefs which will cause it to be the Internet source. There is a command in the gear menu to set the Service order.  However, after thinking about it, if there isn't an internet connection via Wi-Fi, it might automatically drop down to the Ethernet connection.
    Then, you can set up your Wi-Fi so that it doesn't connect to the Internet, as Linc stated. How to do that would be dependent on the Router.

  • I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    Oaky, at least we got that far.  Next step is to determine if all those "numbers" are really numbers.  Changing the format to "number" doesn't necessarily change the string to a number. The string has to be in the form of a number.  Some may appear to you and me as numbers but will not turn into "numbers" when you change the formatting from Text to Number. Unless you've manually formatted the cells to be right justified, one way to tell if it is text or a number is the justification. Text will be justified to the left, numbers will be justified to the right.
    Here are some that will remain as strings:
    +123
    123 with a space after it.
    .123

  • I'm using numbers for my students grades. the passing grade is 30 points. what i want to happen is that very students with a grade of less than 30 will have their points it red color. does the IF function can do this? how?

    i'm using numbers for my students grades. the passing grade is 30 points. what i want to happen is that very students with a grade of less than 30 will have their points it red color. does the IF function can do this? how?

    Hi efren
    Conditional format will do this.
    Select the Cells, then Menu > Format > Show Conditional Format Rules
    Regards,
    Ian.

  • How to invoke alt-text for images in a PDF file by Automation

    Hi,
    Can any one help me?
    How to invoke Alt-text for Images in a PDF file using script?
    Thanks for looking into this.
    Regards,
    Sudhakar

    What do you mean "invoke" alt-text?  If Alt-text is there, then it will be presented to a screen reader.

  • Numbers in web gallery and resource image folders do not match

    When I create a web gallery in Bridge, the numbers in the resource image folders, (Large, medium, thumbnail) do not match the name and numbers in the gallery and are completely out of order. The numbers are long and random.  My client is trying to email the small files and cannot locate them easily.
    I have never had this problem before....can you help?
    Thanks!!!

    Thanks Think, I've tried that. The strange thing is when I
    open the page in Contribute, it shows the original image. When I
    click Edit page, the image I want on the page is on the page. Not
    sure what I've done. Pages were originally created in Microsoft
    2007 and uploaded to the web. I am using Contribute to edit, it
    seemed like it would be much easier to edit pages.

  • I am trying to add a note in numbers when I can link an action required to my calendar... Is this possible? For example I am using numbers like a CRM and I would like to be able to have my next action required for a customer link to my calendar

    I am using numbers as a CRM and one of my columns is called 'Next Action Required' i.e
    Next Action Required
    Email Douglas on the 02-12-14 about information needed for tour
    Call Thomas 0446 393 about booking trip
    Thank you in anticipation
    Doug

    Utterly bizarre. I can't see your two follow-up posts when I'm logged in. However...
    Things would be simple if Apple implemented Data Detectors for dates in Numbers, as they have in applications like TextEdit and Script Editor. Then you’d have a system-level means of quickly moving from a selected date in your CRM spreadsheet to Calendar.
    Until that happy day arrives, though, we can approximate it with AppleScript and Automator.
    First, make sure your Numbers table is called CRM and your column has the header Next action required. (You can change these if you want but you’ll also have to modify the script.) This is the basic setup:
    Then, launch Automator and create a new workflow. From the Choose a type… dialog, specify Service.
    At the top of the workflow, “Services receives selected…” should be set to text in Numbers.app. (You'll need to choose Other... from the pop-up and then navigate to Numbers.)
    In the Library menu at the left, click on Utilities, then drag a Run AppleScript action into the main Automator pane. Delete all the boilerplate text from the script.
    It should look like this:
    Now copy and paste the script below into the Run AppleScript action.
    on run {date_string}
      tell application "Numbers"
      tell document 1
      tell active sheet
      try
      set crm_table to (item 1 of (every table whose name is "CRM"))
      on error
      display dialog "No CRM table in this sheet"
      return
      end try
      tell crm_table
      try
      set the_selection to selection range
      set the_row to row 1 of the_selection
      on error
      display dialog "Select some text in a cell"
      return
      end try
      set the_col to item 1 of (column of the_selection)
      set header_cell to cell 1 of the_col
      if value of header_cell is "Next action required" then my run_calendar(date_string)
      end tell
      end tell
      end tell
      end tell
    end run
    on run_calendar(date_string)
      try
      set date_string to date_string as string
      set real_date to date (date_string)
      on error
      set real_date to (current date)
      end try
      tell application "Calendar"
      activate
      switch view to day view
      try
      view calendar at real_date
      on error the_err
      display dialog the_err
      end try
      end tell
    end run_calendar
    Click the little hammer at the top to make sure that the script compiles (indents and colours in). If it doesn’t, you may need to sort out some line breaks in the copied and pasted script.
    Now save the workflow as Go to date in Calendar. Quit Automator.
    So what does the script do? Basically, it looks at the selected text in a Numbers cell and checks to see that the table name is “CRM” and the column header is “Next Action Required”. It then tries to convert the selected text into a valid date. If it can, it takes you to that date in Calendar. If it can’t, it takes you to today’s date. In both cases it switches Calendar to day view. You have to bear in mind that if you select all of “10/10/14 Call John re contract” it won’t understand that part of this is a date, and won’t go to October 10.  You'd have to select just "10/10/14"
    To run the Service, right-click or control-click on the selected text and go down to Services, then choose Go to date in Calendar:
    Alternatively, run it from Services in the main Numbers menu.
    You can set up a keyboard shortcut for any Service in System Preferences - Keyboard - Shortcuts. Post back if you need more info about this.
    Tested with Numbers 3.5 (2109). This will not work with Numbers '09.
    Hope this works for you, let us know how you get on.
    H

  • Question about using numbers for an address spread sheet

    I am using numbers for a mailing address spread sheet. When I try to type in a Massachusetts zip code, once I hit "enter" the cell deletes the zero, which is the first number in the zip code.  How can I change this? Thank you

    to open the cell inspector use the menu item "View > Show Inspector" then select the "cells":

  • What is the best product, for image gallery usage.. to crop, colour correct, and re-touch etc.

    what is the best product, for image gallery usage.. to crop, colour correct, and re-touch etc.

    Hi gardenzio2,
    You can try using Adobe Photoshop

  • How do i use my own image with keying (or green screen)

    how do i use my own image witrh keying (or green screen)

    Put your sky clip on a layer below the clip you want to key. One or the other will be a connected clip. Apply  the Keying filter to foreground clip (the one with the green screen). The green will be seen as transparent and the sky will show through as the BG. Adjust as necessary in the Inspector.
    Good luck.
    Russ

  • How do i use ibooks for saving my lecture notes / power point slides please?

    Hi, how do I use ibooks for savng / storing my lecture notes on please? (on either a iphone or ipad). Also, can I save powerpoint slides to it too? thanks.

    iBooks can only read two formats -- .epub and pdf.  So you have to convert your lecture notes or powerpoints to one of those.  To do that, check the Save, Export, or Share functions of whatever app you are using to create your notes.

  • I have two users with different music on each itunes and i can only use one library, how do i use both for one iTouch?

    i have two users with different music on each itunes and i can only use one library, how do i use both for one iTouch?

    Chris, I believe this link may have the information you're looking for. Welcome to discussions!
    http://docs.info.apple.com/article.html?artnum=300432

  • HT204053 How do I use the same Apple ID and different Cloud for other devises

    Hi
    How do I use the sane Apple ID and different Icloud for other devises

    http://support.apple.com/kb/HT4627

  • How can I use TopLink for querys that have two and more tables?

    I use TopLink today, and I can use one table to query, but how can I use TopLink for querys that have two and more tables?
    Thank you for see and answer this question.

    You can write a custom SQL query and map it to an object as needed. You can also use the Toplink query language "anyOf" or "get" commands to map two tables as long as you map them as one to one (get command) or one to many (anyOf command) in the toplink mapping workbench.
    Zev.
    check out oracle.toplink.expressions.Expression in the 10.1.3 API

Maybe you are looking for

  • How to set up time capsule with BT home hub 4.0 & Openreach

    Idiots guide needed. My TimeCapsule (year old model) had been running well from my BT Openreach box (without using the Home Hub 4.0) but recently had issues with connection dropping - BT said they've sorted out their end and can't see any remaining i

  • LCM Export of non-english-named artifacts

    Hello all, Is there a possibility to tell LCM not to use file names as artifact names when exporting to file system (unix server) ? For example, I have business rules, with non-english names, and after migrating them on file system, they looks like "

  • Import Format: Copy source account into UD1

    The Source G/L Account is used for both the HFM Account and HFM UD1 (Custom1). The mapping for FM Accounts and FM UD1 is set-up based on the GL Accounts. UD1 is not included in the GL extract file. How can I easy copy source Account into UD1 through

  • Problem in setting a Model Attribute of type Time

    Hi, I have two model attributes of type time(I mean corresponding structure R/3 fields are of type time). I do wdContext.currentModel1().setTime(wdContext.currentModel2.getTime); Till yesterday, this was working fine. Today it assigns a "time+GMT Off

  • Problems with photoshop CG

    I'm working on a CG in photoshop that is mostly white line drawings. I designed it to be all transparent except the white lines and some scanned text (in which the letters are masked around) When I imported it into FCP everything worked correctly and