How do you create a realy good web banner with changing pictures? I'm struggling to resolve this as I'm only a car detailer struggling with all this designing stuff.

I am using a CSS template from xsite p@ro and I can access my html script easily enough to make any edits: http://www.briansautodetailing.com.au/ I need to know what software I should purchase to create a changing header image. I would like to have larger pictures and have them change..Just a bit nicer to look at I guess.
Thanks for any responses in advance
Brian

Hello Brian,
in addition to osgood_'s hint, here some links to nice sliders:
http://sandbox.scriptiny.com/javascript-slideshow/
http://jquery.malsup.com/cycle/
http://wowslider.com/best-jquery-slider-crystal-linear-demo.html
http://www.jcoverflip.com/demo
http://www.jacksasylum.eu/ContentFlow/
http://addyosmani.com/blog/jqueryuicoverflow/
Have fun when choosing!
Hans-Günter

Similar Messages

  • How do you create folders in photo's

    In an IPOD4 (or IPhone for that matter) how do you create folders within Photo's to segregate your pictures in to meanigfull collections, rather than just random bunches.
    Thanks

    Bummer - seems like wasted effort - to move all the photo's to a computer, delete then from the IPOD/IPHONE,  organize them, and then move back to IPOD/IPHONE. Oh well, is what it is.
    Thanks
    Mike

  • How do you create THIS "grid" in Oracle Forms

    Hi,
    I am new to Forms. I have to develop a grid very similar to the one shown here.
    How can you create the grid in the bottom??
    I can't see using any of the standard Oracle toolbox items (like multi-record blocks) for this?
    Any help would be greatly appreciated.
    Thanks
    User 122...

    Hi Soofi,
    Appreciate your quick response.
    In the image, can you see a huge grid?
    Grid column headings are days of the week, Mon, Tue, Wed etc.
    Grid Rows also have names, like Room, Status and Rm. Type.
    Cells have various values in various colors (red, blue, green etc) and signs like ">>".
    Can you see that??
    My question is, how to create a grid like this in Oracle Forms??? We cannot do it using a multi record block.
    So, how have they done it??? The form in the image is an actual Oracle Form from a hotel reservation system.

  • How do you create a full frame sequence to change it from wide to full

    How do you create a new full frame sequence to change it from wide to full screen to burn a dvd? I tried creating a new project and importing the current sequence, but it imports the entire project with all the individual clips on the timeline, what is the practical way of doing this?
    Thanks
    Elio

    Create a new sequence using "full frame settings" and then nest the widescreen sequence in the new sequence. Now scale the nested sequence to your satisfaction.
    You will also find links to many free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie

  • How do you create a 800 x 200 pixell slide show with Photoshop Elements 8?

    I have a banner for a web page that measures 800 x 200 pixels. I would like to create a slide show in the whole volume but I have been unable to discover where to change the standard size of the slide show window to 800x200 in Elements 8. Can anyone help?
    Al

    Many thanks for your reply. I edited a series of photographs to 800x200 as
    you described and then attempted to create a slideshow in Slideshow editor.
    I get a good horizontal fit in the slide frame but there are black bars top
    and bottom since the frame is more than 200 pix high. My question really is
    how do I create a 800x200 slide frame that the edited photographs will fit.
    Subject: How do you create a 800 x 200 pixell slide
    show with Photoshop Elements 8?
    In the slideshow editor interface click once on your image in the main
    window - you will see a bounding box appear together with editing options.
    Click on the More Editing button and when your image opens in full edit
    select the crop tool.
    Set width to 800 px and height to 200 px and resolution to 72
    Drag out your crop rectangle and move your image to the position you want -
    this avoids image distortion but you will sacrifice parts of the original to
    create a banner.
    Press Ctrl=S to save and check version set to save an edit without affecting
    the original.
    Press Ctrl+W to close and your cropped image should automatically pop up in
    the slideshow editor.

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a écrit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

  • How do you create a slideshow in cs6?

    how do you create a slideshow in cs6?

    Have a look here http://foundation.zurb.com/page-templates4/orbithome.html
    This is a ready made template using the Foundation framework and already includes a slider. The framework will help you to quickly create Responsive Web Designs.

  • How do you create a role in EP6?

    How do you create a role in ep6?

    Hi Jeremy,
    You are thanking a poster for his answer.
    Please next time also give him points.
    See: Spread the Love!
    This time I did it for you.
    Remember: When you ask a question you also assume the responsibility to assign points.
    Please check your other questions and if the answers were good.
    Spread the love and give some points.
    Thanks in advance, Mark.

  • How Do You Create a POP 3 Email Account On Yosemite 10.10.1?

    Hello There..
    The title says it all.  " How Do You Create a POP 3 Email Account On Yosemite 10.10.1?"
    When I go to set up a new E-mail account, I don't seem to have an option to create a POP 3 account, it just defers to an IMAP account..
    Is there anyway in Yosemite to override this??
    When a Time Warner employee signed onto my computer remotely he created a IMAP E-mail account and in the process all the E-mail stored within "Mail" seem to be gone..
    The POP account on my older G4 seem to still be working fine, so I was wondering if I still had this option with Yosemite. (Mac OS 10.10.1)
    I spent a good part of last evening trying to get things back to normal to no avail..
    Thank You for your time..
    Eric

    Thank You Barney-15E,
    It worked perfectly, now I just have to hope that my Time Warner account works properly with it.  (It does on my good old G4)
    Thanks Again,
    Eric

  • How do you create a scrolling banner in Dreamweaver CS4?

    How do you create a scrolling banner/marquee in DreamWeaver 4?  I can't find anything about scrolling banners in the documentation or in the several books I've searched.  Thanks.

    Dreameaver can't create something like that out of the box, you need to use some type of script for the 'scrolling' to work.
    This is pretty good, with lots of variations:
    http://sorgalla.com/jcarousel/
    You may find something listed here that may give you an idea:
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-ligh tbox-solutions/
    or go over to www.jquery.com  (that's one of the popular frameworks being used at the moment for image slidehows/banners/galleries etc).
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • How do you create PopUp Layer Window?

    Hi!
    I have a question...
    How do you create PopUp Layer Window?
    PopUp Layer Window is a popup window that moves as an user
    scrolls up and down.
    And it cannot be blocked by popup bloacker.
    Please teach me!
    -p.b.p.

    Search the web for persistent layers.

  • Using Compressor 4, How do you create a droplet to transcode from final cut files to mp4, mp3 and m4v formatting?

    Using Compressor 4, How do you create a droplet to transcode from final cut files to mp4, mp3 and m4v formatting?

    Take a look at this section; it's pretty clear.
    Compressor offers settings for each of the output formats you want. (For example, the m4v sttings for Apple Devices.)
    Good luck.
    Russ

  • How do you create a user defined functions  UDF and passing a value like a ID to GEt a Value.

    How do you create a user defined functions UDF and passing a
    value like a ID to GEt a Value.
    using a query.
    are there example.
    Thanks

    tons of examples at cflib.org - good place to start, even
    though many
    udfs there are a bit outdated in their code...
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • We are creating templated pdf's for Buscards? How do you create so fillable is in pms color Ripping

    We are creating templated PDF's for our new web to print software.  How do you create the fillable pdf so that when ripped it will separte the pms colors?  Our designers say that the fillable text can only be in black and can't be in a pms color?
    Thanks
    Paul

    I see. It's true that form fields do not support spot colors. I know you can flatten form fields, converting the field text to regular text, and embed the fonts using Preflight. What I don't know is if you can then convert the font color to spot (maybe using Advanced > Print Production > Convert Colors), but it's worth looking into.

  • How do you creat a copy right symbol in aperture for your photos

    How do you creat a copy right symbol in Aperture 3?

    You can type the copyright symbol in any Mac application using the keyboard shortcut "{Option}+{g}".
    ©
    Google is a good source for answers to questions of this sort:
    how to type a copyright symbol on a mac?
    You can, of course, also use Copy and Paste.

Maybe you are looking for