How do I create sub pages/menus in Creative Cloud?

How do I create sub pages/menus in Creative Cloud?

If you're looking for a replacement for the deprecated Spry Menus, look at the links below.
Pure CSS Drop-Menu
http://jsfiddle.net/NancyO/zN7fU/
CSS3 Dropdown Menus
http://www.red-team-design.com/css3-dropdown-menu
PVII's Pop-Menu Magic3 (commercial DW extension)
http://www.projectseven.com/products/menusystems/pmm3/index.htm
jQuery Superfish
http://users.tpg.com.au/j_birch/plugins/superfish/
jQuery MegaMenu 2
http://www.geektantra.com/2010/05/jquery-megamenu-2/
Nancy O.

Similar Messages

  • How do I create sub-pages in iWeb?

    Hi, How do I create sub-pages in iweb like it does in this website
    http://www.e-alliance.ch/index.php?id=405
    with all the main menus "about us", "advocacy capacity", etc?
    Thank you for your help!!!
    Boaz

    To create sub pages, just ensure that the main menu item is in the main menu and then for the sub pages themselves, ensure that they are NOT in the main menu and you link back by creating links instead.
    For example, you could use Staff as a main menu item, so Staff would be in the main menu and then descriptions of different staff members would be underneath, but not in the main menu - they would have separate links that you create and then hyperlink.
    If you want to make drop down menus in iWeb, as in the site that you linked to, you can't do this directly in iWeb itself.  You have to make it and then upload various css files to your web host and link to it in iWeb etc.  It is quite a complex task to create drop down menus in iWeb.  If you want to do that, then I would suggest that you use a different app instead - take a look at http://www.everwebapp.com.

  • How do I create a new project in Creative Cloud?

    Okay, complete noob here - I downloaded the Creative Cloud Illustrator free trial.  Now, how do I actually create a new project to start working on? 

    Hi camarogirl67,
    Once the application is installed you can launch it and start using it. Here are some goods links for getting started:
    Illustrator CC tutorials | Learn how to use Illustrator CC
    Illustrator Help | Illustrator Help
    http://tv.adobe.com/show/learn-illustrator-cc/
    http://mashable.com/2010/08/19/adobe-illustrator-tutorials/
    http://tv.adobe.com/watch/creative-suite-podcast-designers/how-to-get-started-with-adobe-i llustrator-cc-10-things-beginners-want-to-know-how-to-do/
    Adobe Illustrator for beginners: 11 top tips | Illustrator | Creative Bloq
    Thanks,
    Nikhil Gupta

  • Creating sub-pages in iWeb'09?

    Hello!
    i've just starte using iWeb, and trying to create my own web page. I can't find a solution on the above: how can i create "sub-pages"? For example: I want to create a main page called Photos (appearing in main menu bar), and UNDER this page i want to create "sub-pages" called photos1, photos2, photos3, etc. (appearing UNDER Photos page).
    How can I do this?
    Thanks,
    Bazsi21

    Hello:
    I just read your post regarding creating web pages in iweb. This is something i have been trying to do also. Do you happen to know whether there's a way of creating sub pages from the main navigation menu, rather than pasting hyperlinks into the page. If i create an envertainment magazine, and one section is "movies", then I want all articles on movies to fall within that category, WOuld be far easier if visitors click on 'movies' link in navigation bar, and then see the list of articles. Is there a way to do this in iweb?
    If not, i am wondering why Apple didn't include this basic necessity when creating the program.
    I look forward to hearing from you.
    Thanks.

  • Creating sub pages

    How does one do this in iWeb?

    Keep main page in the navigation menu and then for your sub pages, you don't put them in the nav menu - open the Inspector and then click on Page and then click on the box that has "don't include page in nav menu" and that is it.
    You then create your own links on the sub pages back to the main page and wherever you want by using either shapes or text boxes or whatever.
    To make the whole process easier, you could always ditch the iWeb page template nav menu by turning it off and creating your own text based nav menu, which makes creating sub pages easier - you just don't include what you don't want.

  • How to add/create additional page in Crystal Report Layout SAP B1

    Hi,
    I wanna ask about How to add/create additional page in Crystal Report Layout SAP B1 ?
    I want when user print Purchase Order then on last page also print some page like Penalty Clause etc.
    Pls help me to find the solution.
    Br,
    Thomas Marsetyo

    Hi,
    In your report footer, set it to create a new page before it is printed (In 'Section Expert', select the Report Footer -> 'Paging' tab -> Check 'New Page Before' checkbox). Throw your Terms & Conditions into the Report Footer section.
    If you already have a Report Footer that you want to keep, just split the footer into two sections (Right-click the Report Footer section -> 'Insert Section Below') and follow the same procedure for the newly created section.
         Check this Link
    http://stackoverflow.com/questions/9232239/adding-an-additional-page-to-end-of-a-crystal-report
    http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=18960
    Regards,
    Manish

  • RE: How can I create a page break in a file?

    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a page break in a file?

    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the following
    two methods, but neither of them works. Specifically, it seems a special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);
    -----------------------------------

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • Can/How can I create a page with all my blog pages RSS??

    Hello all.
    I have a website containing many seperate Blog pages according to their topics like News, Tech and Scifi.
    Is it possible to create a new page, that will contain the latest entries of all these blog pages a one "consolidated" page, maybe perhaps of RSS feed?
    Thanks and cheers

    Apple states
    How can I create a page that aggregates my podcasts?
    If you have multiple podcasts listed in the iTunes Store, the iTunes staff can create a single page that lists all of them in one place. We call this page an “artist page.” Note that a podcast can only appear on one artist page.
    To request an artist page, navigate to one of your podcasts, click on Report a Concern, and select Remove a Podcast. In the dialog box, explain that you would like an artist page, give us the exact name of the artist (please don’t include “Inc,” “LLC,” etc.), and list the exact feed URLs or links to your podcasts.
    at the bottom of this page
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    I hope two is enough and if not that someone contacts me and maybe even changes the info on the above link.
    Thank you for your input!

  • Create sub-pages programatically

    Hi,
    Is it possible to use the add_folder in PDK pl/sql api to create sub-pages to the root page of a content area programatically?
    Thanks

    hi,
    this is the right function to create sub pages. for more information and an example check out:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/plsql/doc/pldoc_9026/wwsbr_api.html#function-add_folder
    regards,
    christian

  • How do i create a page template in order to spawn new pages?

    How do i create a page template in order to spawn new pages?

    Where did you find the link/interface that led you to ask your question here?
    You should find the forum for whatever product your question involves and post there.
    Here is a link to a page that has links to all Adobe forums...
    Forum links page:
    http://forums.adobe.com/index.jspa

  • Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09, but can't find the option in new Pages.

    Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09 but can't find the option in new Pages. I have documents created in Pages 09 and want to do some further work on them, but am now using new pages.

    There were 100+ features that didn't make it into the "new & improved, rewritten from the ground up” Pages 5. Some have returned with the updates & there are some new features that are worthwhile, but there are still 90+ features missing. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • How many times can a team member install Creative Cloud for teams ?

    How many times can a team member install Creative Cloud for teams ?
    Is it possible for one team member to install it for example on a portable mac and a desktop pc at the same time?

    From the Creative Cloud FAQ at https://www.adobe.com/products/creativecloud/faq.html under the Purchasing and getting started section:
    On how many computers can I install the software I download from Creative Cloud?
    You can install the desktop applications available in Creative Cloud on your primary computer and one backup computer, as long as they are not running at the same time. You will have access to both the Mac OS and Windows versions, so if you have a Mac at home and a PC at work, for instance, you can install your applications on both. See the product license agreements page for more information.

  • I had Adobe CS3 products on my Macbook Pro. How do I prove this to get the Creative Cloud $29.99 membership price on my new iMac?

    I had Adobe CS3 products on my Macbook Pro. How do I prove this to get the Creative Cloud Complete $29.99 membership price on my new iMac?

    https://www.adobe.com/account.html for your Adobe orders page to find your old serial number

  • Im using windows 8 how do i save work done in the creative cloud as a CS6 file?

    Im using windows 8 how do i save work done in the creative cloud as a CS6 file. Ron C

    Im on the CC2014 and im doing projects in aftereffects & photoshop for my school projects and they're using CS6 how do save them as a CS6 project.
    John T Smith <[email protected]> wrote:
    John T Smith  created the discussion
    "Im using windows 8 how do i save work done in the creative cloud as a CS6 file?"
    To view the discussion, visit: https://forums.adobe.com/message/6783259#6783259
    >

Maybe you are looking for