Can i change the page titles?

Can i change the page titles in iWeb easily? for example i want to change the "My Movie" title to My Music and put some music on there i am listening too? when i use the same page twice it just calls it "my movie2"
i would also like differnt pages such as My Gossip etc.
Does anyone know if this can be done easily?

There are two ways to change page names. (1) Double-click on the name in the Site Organizer and type in your change. (2) Select the page, then type the new name in the Page Name box in the Page Inspector.

Similar Messages

  • Change the Page title of Default.aspx in SharePoint Hosted App using ECMA Script

    Basically i want to change page title dynamically. the thing is default.aspx page is present in the below location
    Folders/Pages/Default.aspx ( Verified using
    SharePoint Manager 2013 Online )
    Could any one let me know how to iterate through the folders and then go to pages and change title of Default.aspx page?
    Navaneeth

    All the links which is mentioned above is either they are doing it in code behind or javascript like document.title.
    I want to change dynamically using ECMA script. the point i found here is if you use the below code you will get an error saying list "Pages" does not exists in the SharePoint site.
    clientContext.Web.Lists.GetByTitle("Pages");
    So i am wondering how can we change the page title of SharePoint hosted app ( Default.aspx) dynamically
    Say example i have one text box and submit button. when give the title in the text box and click on submit  the title should reflect in the page.
    Navaneeth

  • Change the Page Title for all the pages when viewing the Reports in Bi Publisher

    Hello ,
    I have a requirement for changing the Page Title for all the report displayed pages on the browser window.

    As far as I know, answer is NO.
    it's very simple answer  Manikandan-S-Oracle
    for 1210326 's requirements there are some places for changes of property "title" and in some pages "title" can be different
    "one place or option for changing" does not exist imho ( may be i'm wrong )
    so you can change places for your needs but not sure what it's adequate
    as example
    ...wls\user_projects\applications\bipdomain\xmlpserver\catalog\navigator.jsp  -->  find <title>
    it changes title in http://somehost:7001/xmlpserver/servlet/catalog
    ... wls\user_projects\applications\bipdomain\xmlpserver\home\home.jsp  -->  find <title>
    it changes title in http://somehost:7001/xmlpserver/servlet/home

  • How can I change the page size of a pdf so i can view it on my iphone more clearly?

    How can I change the page size of a pdf so i can view it on my iphone more clearly?

    I think there may be more to this question than you say.
    If your PDF page is say, 8 x 12 inches, and you found a way to scale it to 25%, changing it to 2 x 3 inch, shrinking everything on the page to quarter size - wouldn't it look exactly the same on the iPhone? It's just going to be the same as zooming.
    Or were you hoping for something more like in Word, where changing the page size keeps everything the same size and spreads it over more pages? That isn't something you can do.

  • How can I change the page size of a scanned PDF document?

    How can I change the page size of a scanned PDF document?
    I scanned a 50-page document with an HP 5610xi All-In-One using the software that comes with it: HP Scan Pro. Though the physical document has standard 8.5" x 11" pages, the PDF resulting from scanning has page size set to 35.42 × 48.67 inches (according to Preview's "Tools > Inspector". I want to resize the pages to 8.5" x 11". Shouldn't Preview be able to do that with "Tools > Adjust Size..."? When I try, the menu option is grey so I can't select it.
    I'm using Preview Version 4.2.

    Thanks for the insight; that explains why it's the wrong size. I selected 300dpi scanning (which is the default, actually), but HP Scan Pro evidently created a PDF with 72dpi indicated. I want it fixed because I want to distribute the file to other people and have them able to print or display it without problems.
    I still don't know why Preview won't let me change it, but your question about whether I wanted to print it did lead me to find a workaround: "File > Print" and "Save as PDF..." saved it with the correct page size.

  • How can i remove the page title above the File,Edit,View,History,Bookmark tab?

    how can i remove the page title above the File,Edit,View,History,Bookmark tab in firefox

    In Firefox 29 and Firefox 30:
    "3-bar" menu button > Customize
    In the lower left, click the Title Bar button to switch the title on and off.
    In Firefox 28, I actually can't remember!
    I would be remiss if I didn't remind you:
    * Firefox 28 is not secure: Mozilla has disclosed its [https://www.mozilla.org/security/known-vulnerabilities/firefox.html known security flaws].
    * You can modify Firefox 30 to restore many of the UI features of earlier versions of Firefox using the techniques in the following article (and/or with assistance from forum volunteers): [[How to make the new Firefox look like the old Firefox]].

  • Can't change the document title when the browser is opened in dialog mode

    Hello experts,
    I'm working on a solution which involves opening up another .jspx page in dialog mode. I need to change the title of the dialog browser window dynamically when the user performs a specific action on the dialog page.
    Unfortunately, I can't get this to work. I have tried using JavaScript and had no luck. I tested this technique on a non-dialog page and it works fine. Please help.
    Here is the markup code for launching the dialog page:
    <af:activeCommandToolbarButton id="actbPreview"
    icon="/graphics/previewscreen_enabled.gif";
    text="Preview"
    action="dialog:weCreate"
    useWindow="true"
    windowHeight="620"
    windowWidth="1120"
    disabled="#{empty bindings.MapElemUnqId.inputValue}"
    launchListener="#{backing_weQuery.launchPreviewerListener}"
    binding="#{backing_weQuery.actbPreview}"
    returnListener="#{backing_weQuery.returnPreviewerListener}"
    clientComponent="true"
    windowModalityType="applicationModal"
    windowEmbedStyle="window"
    disabledIcon="/graphics/previewscreen_disabled.gif";/>
    On the dialog page, here is the markup and javascript for setting the browser window title:
    <af:commandButton text="title" id="cb10">
    <af:clientListener method="setWindowTitle"
    type="action"/>
    </af:commandButton>
    function setWindowTitle(actionEvent)
    actionEvent.cancel();
    var doc = AdfPage.PAGE.findComponent("d1");
    doc.setTitle("TEST");
    alert("Title="+doc.getTitle());
    }

    Thanks for your response.
    I tried that and I could not get it to work. Even though I can set pageFlowScope.pageTitle dynamically, the browser window title does not refresh (I tried to refresh via PPR and full post back).
    here is my code:
    public void setPageTitle(ActionEvent actionEvent)
    RequestContext requestContext = RequestContext.getCurrentInstance();
    Map pfs = requestContext.getPageFlowScope();
    pfs.put("pageTitle","TEST 2");
    RequestContext.getCurrentInstance().addPartialTarget(this.document);
    public void setPageTitle(ActionEvent actionEvent)
    RequestContext requestContext = RequestContext.getCurrentInstance();
    Map pfs = requestContext.getPageFlowScope();
    pfs.put("pageTitle","TEST 2");
    FacesContext context = FacesContext.getCurrentInstance();
    String currentView = context.getViewRoot().getViewId();
    ViewHandler vh = context.getApplication().getViewHandler();
    UIViewRoot x = vh.createView(context, currentView);
    x.setViewId(currentView);
    context.setViewRoot(x);
    }

  • Change the page titles in New Tab

    When I drag a new page into the New Tab window the title of the tab becomes the title that is on the page, which is not always meaningful. For example, Home Depot uses a slogan on the title, the company name does not appear there at all. So, when I look at the tab page I can't tell which one is Home Depot. The images are always empty.

    The point from ''madperson'' is that you first bookmark a web page (URL), possibly on the Bookmarks Toolbar.<br />
    Then you can edit the title of that bookmark via the properties or by clicking the star on the location bar to change the name to what you want to appear as title on the about:newtab page and subsequently drag the modified bookmark in a slot on the about:newtab page to pin that URL.
    See also this article about the New Tab page (about:newtab):
    *https://support.mozilla.org/kb/new-tab-page-show-hide-and-customize-top-sites

  • Can I change the page color in Pages?

    I am just getting a mac and was curious if it is possible to change the color of the page your typing on, since the black text against the white background gets really annoying after hours of staring at it.

    You can add a rectangle shape to your Wp page, resize, colour it and send it to the back.
    You can also change what You see by using the options in System Preferences > Universal Access > Seeing. White on Black (negative) and grey scale are options.
    S

  • How can I change the SAPGUI title?

    I want to change the SAPGUI  titlebar to include the client.  So, when Ihave multiple sessions open I can see which client I am working with.   Is this possible? 
    J

    in the sap gui window...
    click on the small page kind of icon a menu appears .. in that.. select cllient.. and it will show ur dev client number..

  • How can I change the page size in an existing layout?

    I have an 8.5x11 layout that I need to change to 8x10 without starting over again… Help?

    If you just need to change the size of the page, go to File > Document Setup
    Check out the Layout Adjustment feature as well -- it will make things
    that are close to margins cling to the margins if the doc is resized.
    But if you want to simply scale the entire document and everything
    that's in it to the new size, check out:
    http://www.id-extras.com/products/quickresize

  • When opening a new tab, how can I change the page that is initially displayed?

    When I open a new tab, the page that is initially displayed is one that provides a simple Bing! search. What can I do to make the initial display one of my own choosing?

    Select Firefox (Top left) / Options/ Options / Main or General.
    There you can select the thing you whant firefox to do when it is started up. If you would like it to open www.google.com for instance, you have to paste that url (= www.google.com) into the space below.
    That's it!

  • How can I save the web page by using the Page Title as the file name ?

    When i use Internet Explorer ,I can save the web page by using Page Title as the file name(as default no need to adjust anything). But when i use Firefox ,It can not use the Page Title to save as the file name. How can I do that like in Internet Explorer?

    See:
    *File Title: https://addons.mozilla.org/firefox/addon/834
    *Title Save: https://addons.mozilla.org/firefox/addon/712

  • Changing the page size in smart form

    hi to all experts,
    im printing barcode of size 1x3 how can i change the page format from A4 size to 1x3

    hI,
    it is possible to create a new page format using tcode SPAD
    go to full administration from the applitool bar. go to device types tab
    1) create a page format
    2) under device type : include the page format in SWIN.
    now go to devices/servers tab
    1)create a new output device here. and use it in program.
    Edited by: kat k on Feb 25, 2009 9:46 AM

  • Can you change the field names in the address book?

    Can you change the Pager field name to read 2nd cell?

    No.
    This add-on https://freeshell.de//~kaosmos/morecols-en.html allows you to modify the labels of the 4 custom fields of the contact card

Maybe you are looking for

  • Can't find a folder after upgrading to maverick and still have the previous OS

    Hi, Last night I upgraded my mac to maverick...my previous OS was in Disk C and since it was showing that disk is full i had to put maverick in disk D..so i have two disks with OS that means less space for my personal use....also while putting maveri

  • A little help w/a tut?

    Hello: I hope it's okay to post this question in this forum. I'm working on an other tut and it seems to me that quite possibly there's a step or two missing from the instructions. So, I am hoping that someone may be able & willing to help me out. Be

  • Function module to find the path of application server

    Hi can any one say me what is the function module to find the path of the application server

  • Expand, unhide table and set variable at the same time?

    Hi all, How should i go about to create the following? I want to Expand a table at the same time as i set at variable and unhide another table. I have implemented a single-click solution i the Table API that works fine. I would like to use the Table

  • Costing issue in production order

    Dear all My problem I have 25 pc component quantity . first6 I have issue (261) 1 quantity against that  sys has generated one material doc and then issued(261) 24 quantity ,sys has generated second material doc. In production order cost analysis  is