How to make more pages

I did my first fluid layout index.html.  Do I just save that using SAVE AS and give it the name of another page such as contact.html, then save that as learning.html etc...
also to make the mobile.css, tablet.css and desktop.css as the instuctions suggest, do I just copy what dreamweaver inserted in the original .css (I called it fluid-grid.css) when I first started the fluid-grid, whatever is under the media query for each size, is that what goes in the respective custom .css file
I make a ton of progress, but get stopped by stupid things that have to come with time, or maybe if the videos just said how to create the custom .css like mobile.css instead of the author just saying he created mobile.css, tablet.css and desktop.css out of thin air.

If your FluidGrid Layout page validates and performs well in all browsers you can use that page to create new site pages with File > SaveAs > some_filename.html. 
Or you may wish to look into the power of using DW Templates: 
File > SaveAs > Template.dwt. 
DW will create a Templates folder in your local site and prompt you to add Editable Regions for content that will change from page to page. 
http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7ab7a.h tml
Once you're done this, save Template & close it.
Go to File > New page from Template.  This is a child page. 
SaveAs index.html (your home page). 
Repeat step 3 for your other site pages. 
Templates are a convenient site management feature in DW that allows you to make changes to the .dwt file (edit the menu, for example) and have those changes automatically populated to the child pages.    If you decide to use them, be sure to thoroughly read the F1 Help section on DW Templates.
Nancy O.

Similar Messages

  • How to make more than one partition on Airport Time Capsule?

    how to make more than one partition on Airport Time Capsule?

    Only for the very brave......
    Open up the Time Capsule (voids the warranty)
    Pull the hard drive
    Place the hard drive in a separate enclosure
    Connect the enclosure directly to your Mac
    Use Disk Utility to partition the hard drive
    Reinstall the hard drive back in the Time Capsule
    For the rest of us.....
    The next best thing might be to set up one or more disk images on the Time Capsule, which will allow you reserve a given amount of space for each disk image.
    Open up Macintosh HD > Applications > Utilities > Disk Utility
    Click on the New Image tab
    Navigate to the Time Capsule
    Set up the disk image by naming it and specifying how much space you want to reserve

  • How to make a page break in numbers

    The only way I found to make a new page in Numbers was to make new rows down to where the page would break, but it's only letting me add a few new rows to the new page.  I'd like to know how to make a page break without just adding rows.

    Hi Yellowbox,
    Still I'm not convinced, it gives you indeed some advantages but this page break is a great fault.
    All the company is working on Apple, we try even to keep Microsoft away but what when you make a quote of several pages and have to make your lay out at the end, it is a pain in your xxx to make it well.
    We cannot make different tables for each page nor I want to make it in Pages with a Numbers table.
    Secondly, what do you do when you get a Excell offer that you want to bring to Numbers.
    It opens well but again, you need to make all the page lay out afterwards!
    Thanks for yoru reply.
    It won't change my mind about Apple and Microsoft but for timing earning I won't changes all Excel offers to Numbers anymore. Even if I do not want, it would take me less time to work it out in Excel.
    Our own offers will remain in Numbers ...
    It is a pity but time is so important nowadays!
    Nice week-end.

  • How to make more albums in photo library?

    How to make more albums in photo library?

    If you do not have iOS 5, you have to use subfolders in your one photo syncing folder. You can have one level of folders in the syncing folder and each folder is an album.
    With iOS 5 you can create albums in the Photo app.

  • How to make turning page with ibooks author?

    How to make turning page with ibooks author?

    This question has been answered on this thread
    https://discussions.apple.com/message/17981772#17981772#17981772
    Best regards.
    Alex

  • How to make a page header

    how to make a page header

    Lynn,
    Numbers 3 currently doesn't have page headers.
    However, there are some workarounds that can achieve the effect of having headers (though, for footers, you're limited to page number).  See this in Print Preview:
    You can set up extra Header Rows in your table and have them repeat on each printed page. The Table Name only shows on the first printed page, so you may want to uncheck Table Name before printing:
    See this thread for an example of how this workaround worked for one user.
    SG

  • How to make a page reload

    Hi every body, and thank you for reading my post, here's the question I have
    Does anybody know how can I make a page reload???
    Thank's

    If you mean how to make the page reload when someone pushes a button or clicks an action component such as a hyperlink, then have that component's action method return null. To create the action method for a component, double click the component in the Visual Designer.
    To make the page reload after someone selects from a drop-down or list, or when the user changes the value in an input text field, right-click that component and choose Auto-Submit on Change.
    Chris

  • When the page will be load how to make the page blank in run time

    Dear
    when i will run the page the fields shoud come with blank Field.
    i want to make it in runtime.
    example- i have one page having employees data. but when i will run that page the data will not come only blank fields should come, after thar i will create.

    duplicate how to make the page blank field in runtime

  • How to make Login Page in ADF?

    Hi,
    Can anyone suggest me, how to make Login Page in ADF.
    I am new on ADF, is any sample code or application is there than it will be helpful for me.
    please reply its urgent.
    Thanks,
    Ramit Mathur

    HI,
    Jspx code
    <af:panelFormLayout id="pfl1" binding="#{loginBean.mainForm}">
    <f:facet name="footer"/>
    <af:inputText label="Username" id="it1"
    value="#{loginBean.username}"
    binding="#{loginBean.usernameId}"
    required="true"/>
    <af:inputText label="Password" id="it2" secret="true"
    value="#{loginBean.password}"
    binding="#{loginBean.passwordId}"
    required="true"/>
    <af:spacer width="1px" height="20px" id="s3"/>
    <af:panelGroupLayout id="pgl3">
    <af:commandButton text="Submit" id="cb1"
    action="#{loginBean.doLogin}"/>
    <af:spacer width="85px" height="1px" id="s4"/>
    <af:commandButton text="Cancel" id="cb2"
    action="#{loginBean.clearFields}"/>
    </af:panelGroupLayout>
    </af:panelFormLayout>
    BackingBean code
    public String doLogin() {
    String un = _username;
    String pw = _password;
    // byte[] pw = _password.getBytes();
    FacesContext ctx = FacesContext.getCurrentInstance();
    System.out.println("ctx" + ctx);
    HttpServletRequest request =
    (HttpServletRequest)ctx.getExternalContext().getRequest();
    CallbackHandler handler = new SimpleCallbackHandler(un, pw);
    System.out.println("Handler" + handler);
    try {
    Subject mySubject = Authentication.login(handler);
    System.out.println("mySubject" + mySubject);
    ServletAuthentication.runAs(mySubject, request);
    ServletAuthentication.generateNewSessionID(request);
    String loginUrl =
    "/adfAuthentication?success_url=/faces" + ctx.getViewRoot().getViewId();
    System.out.println("loginUrl---" + loginUrl);
    HttpServletResponse response =
    (HttpServletResponse)ctx.getExternalContext().getResponse();
    System.out.println("response---" + response);
    // loginUrl = "/adfAuthentication?success_url=/faces/WelcomeScreen1.jspx";
    sendForward(request, response, loginUrl);
    System.out.println("---" + response);
    } catch (FailedLoginException fle) {
    FacesMessage msg =
    new FacesMessage(FacesMessage.SEVERITY_ERROR, "Incorrect Username or Password",
    "An incorrect Username or Password" +
    " was specified");
    ctx.addMessage(null, msg);
    } catch (LoginException le) {
    reportUnexpectedLoginError("LoginException", le);
    return null;
    private void sendForward(HttpServletRequest request,
    HttpServletResponse response, String forwardUrl) {
    FacesContext ctx = FacesContext.getCurrentInstance();
    System.out.println("sendForward--ctx--" + ctx);
    RequestDispatcher dispatcher =
    request.getRequestDispatcher(forwardUrl);
    System.out.println("sendForward--dispatcher--" + dispatcher);
    try {
    dispatcher.forward(request, response);
    } catch (ServletException se) {
    reportUnexpectedLoginError("ServletException", se);
    } catch (IOException ie) {
    reportUnexpectedLoginError("IOException", ie);
    ctx.responseComplete();
    // 12.Implement a reportUnexpectedLoginError() method:
    private void reportUnexpectedLoginError(String errType, Exception e) {
    FacesMessage msg =
    new FacesMessage(FacesMessage.SEVERITY_ERROR, "Unexpected error during login ",
    "An incorrect Username or Password" +
    " was specified");
    FacesContext.getCurrentInstance().addMessage(null, msg);
    e.printStackTrace();
    }

  • How to scan more pages into one PDF file using hP inkjet 2515

    Dear friend 
    How to scan more pages into one PDF file using hP inkjet 2515 

    Dear friend 
    How to scan more pages into one PDF file using hP inkjet 2515 

  • How to make the page expired when user click back

    how to make the page as expired when i click back button on the browser.
    i want a better way.
    actually i have a timer.when it reaches 00.00 then the expired page will be called automaticlly using location.href="expired.jsp" then if the user clicks back it should not show the previous page.this concept is applied with paging concept
    response.setheader is not working ...
    i have redirect when click back using
    <body onunload>....i call another page here.
    but it is not a good way.
    so pls help me to solve this problem
    using session or another good way

    Use this instead.
    Frame.setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);

  • How to make more than one person can access the database at one time

    how to make  more than one person can access the database at one time 

    Please post further f'up's in the Access forum.
    In short: for different reasons it is best practice that each user gets its own local copy of the database. This means that you need to split it into a front-end which only consists of the forms, queries, reports etc. Everything which doesn't need to be
    shared. And a back-end, which only stores the data.
    Take also a look at Allen Browne's article:
    Split your Access database into data and application.
    When you've splitted your database, you may often consider to use SQL Server as back-end. Here you may read Armen Stein's
    The Best of Both Worlds: Access-SQL Server Optimization.

  • How to make more voltage sources in multisim

    I am using MultiSim (power pro version 10) for schematic entry on a moderately complex design.  It has 5 different voltage sources and 3 different grounds.  The component library only has 4 DC sources (VCC, VDD, VEE, VSS) and 2 grounds (GROUND and DGND).  How do I make more?  I am not simulating but I will be using this to make a board with UltiBoard.
    I've tried renaming the Label and value on a VCC (to VC1 for example) and if I say no to the question that follows I get a new source (without editing all VCC on the page).  Sounds good but when I copy and paste that object, I always get the unedited original VCC again (that seems like a bug).  I also tried copying that new component to the user library but was denied because it is virtual.  What is the best practice method intended by the program to deal with additional supplies?
    On a similar note, How do I label a node so I can use it on the same page.  I tried an offpage connector and HB/SB connector but you can only use it once per page.  What if I have a several subcircuits using ther same signal on the same page and I do not want to draw a wire between them.  I would rather have the label name showing (similar to how an offpage connector looks). 
    I tried placing a junction then drawing a wire to that spot then naming the node but if I turn off node names, the label disappears from the page.  Is there a more universal way than doing this.  Furthermore, if I try to copy/paste the node, all I get is the junction which assumes the node name of whatever I connect it to (just like a normal junction) the node is not copied.
    If there is no way of copying a node or edited DC source around a page or to other pages than I quess I would be stuck editing each node's properties individually which is inefficient.  I am mainly looking for someone a little more experienced to tell me I am not wasting time.

    I can answer one of your questions about node labeling. If you put a wire from your component to a junction connector then you can label that node to what you want. If you want more component pins tied to the same node, just do the same thing to each one and label it to the first node. I will post a simple circuit showing this for you to look at. It is called Virtual Wiring and the circuit will simulate with it.
    Hears the Example circuit. Notice that all the nodes that are supposed to be connected together have the same name.
    Edit: Sorry, it seems like you have already tried this. If you leave them on it does show up in the print Preview. So I would assume it would print them if that is what you are wanting.
    Message Edited by lacy on 09-10-2007 06:33 PM
    Kittmaster's Component Database
    http://ni.kittmaster.com
    Have a Nice Day
    Attachments:
    Virtual Wring Example.ms10 ‏37 KB

  • How to make multi-page PDFs?

    A question on this in the Archives did not answer my problem. Until recently, I could easily make multipage PDFs from Pages on my iMac (10.8.4). Now suddenly it only makes a PDF of the first page of multi-page files. Cannot find anyplace to change that back. HOW do I make multi-page PDFs again?

    Check this portion of your code.
    if(rs.next())
       response.sendRedirect("02_dashboard_welcome.jsp");
    else
      out.println("Wrong username or password");Once the user is authenticated(valid username and password found), he is always redirected to a particular page no matter what kind of user he is. You need to add some if-conditional and redirect him to different pages based on his role.
    i have stored their login and password in different tablesI don't understand the need to create different tables for each kind of users. Rather i would do something like this.(Rough Schema)
    USER_ROLE(table)
    1. USER_ROLE_ID (Eg: 1:salesperson, 2:employees etc)
    2. DESC (Eg: salesperson, employees)
    USER TABLE
    1. USER_ID
    2. USER_NAME (Eg: AAA)
    3. PASSWORD (Eg: BBB)
    4. USER_ROLE_ID<Foreign Key, 1 if user is sales person, 2 if user is an employee etc>
    Please note that you will have to create a third table to assign role to an user if an user can have more than
    one role ie he can be salesperson and employees at the same time.
    Now use USER_ROLE_ID to redirect the user to different pages.
    Note: This is just an example(may be a worst one). please design your database and business logic as per your requirements.

  • How to make a page like this...

    I'm trying to figure out how to make pages in iWeb like this site:
    http://www.clairemyersart.com/index.php
    I don't care about the flash section, I'm more interested in the static background image with the centre scrolling section. I've looked at the source code, but I don't know enough about html to figure out which part of the code I need.
    Any suggestions?
    Lynn

    Have a look :
    http://www.wyodor.net/_Demo/tmf/Duckmenu.html
    And this is the code to paste in the HTML Snippet :
    <script type="text/javascript">
    parent.document.body.style.backgroundColor='#3B92CC';
    parent.document.body.style.backgroundImage='url(../duckmenu/duckassets/Spoorbackground.gif)';
    parent.document.body.style.backgroundPosition='50% 0%';
    parent.document.body.style.backgroundAttachment='fixed';
    parent.document.body.style.backgroundRepeat='no-repeat';
    </script>
    This one uses a similar background, but not static :
    http://ipad.dailynews.webege.com

Maybe you are looking for