Photoshop button added to master page does not apply to correct spot on pages attached

When working on the master page on the tutorial for Muse, after adding the photoshop button, it does not align correctly to the pages that are attached with the master file? It ends up underneath the footer and expanding the page longer than i fixed it to? How can I fix this?

Try to optimize the image that you are using, this can happen if you are using original file size being large enough to expand.
http://helpx.adobe.com/muse/topics/graphics.html
http://tv.adobe.com/watch/learn-adobe-muse-cc/optimizing-graphics-assets-in-muse/
Thanks,
Sanjit

Similar Messages

  • FireFox home page does not always display correctly, hence I cannot do anything

    On my Dell laptop the FireFox home page does not always fully display. When this happens I cannot access several web sites and some that I can do not display correctly either. On some occasions everything works correctly.
    I have 2 Dell Inspiron laptops the same except one is running Vista (the one that does not always work) and one running Windows 7 (this one has no problems).

    On my Dell laptop the FireFox home page does not always fully display. When this happens I cannot access several web sites and some that I can do not display correctly either. On some occasions everything works correctly.
    I have 2 Dell Inspiron laptops the same except one is running Vista (the one that does not always work) and one running Windows 7 (this one has no problems).

  • New tabs do not include the history icons as before.The option to show images on a page does not appear in upper right of page.

    The solution in the FAQ's is clear, but the small icon that is supposed to be showing in the upper right of a new Tab page are not showing up so that I can get the images to appear. I recently installed Java 7 and after that they had disappeared. Can you help me get them back? They are very helpful.

    You can reset the browser.newtab.url pref on the <b>about:config</b> page via the right-click context menu to the default value.
    You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • Since last update anything on the first three lines of a web page if it has a a button to click on to go to another page does not work. use Google Crome for fo

    Loging onto my bank I go to the barclays pege there on the top line is "log in" it used to work when I click on it but has stoped, any button on the first three lines of a web page does not work.
    I now use Google crome but would like to stay with Firefox if this coruption can be sorted.
    Rod

    Please reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with the left mouse key.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    See if this helps solve the issues you had and please report back to us!

  • OEM 12c: buttons in GUI page does not work

    Hi,
    I am using OEM12c, we just installed BI publisher last week and we have problem configure it to integrate with OEM12c. One day after the failed configuration, one of the target Authorization Policy Manager (oracle.security.apm) shows down, then we start seeing GUI problems on the console:
    1. Under My Oracle Support, all links except for the Community link show blank pages.
    2. Buttons in a lot of pages does not work. For example, view/edit/create on the administer page, nothing happen when click on these buttons. This is all overall the GUI, I think in general http post method is not working. Basically the GUI is un-workable.
    Any suggestion to how to fix these problem?
    Thanks for the help!

    Enterprise Manager Cloud Control Workbook for Applying Bundle Patch 1 (February 2012) and 12.1.0.2 Plugins [ID 1393173.1]

  • 'My Application Page' is not allowed here because it does not extend class 'System.Web.UI.Page'

    I have a custom SharePoint 2010 solution that includes an aspx page. The aspx page in is in the /layouts folder within the solution and I created it by just adding an application page to the solution. I am trying to create a parent-child relationship between
    two different lists in SharePoint. From the parent I have a custom button on the ribbon that creates a child item with the ID of the parent stamped on it.
    The page is just a processing page that forwards on parameters from the parent to the new child item. (i.e. the ID value)
    The code generated when I add the aspx page is below:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    <asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
    </asp:Content>
    <asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
    </asp:Content>
    <asp:Content ID="PageTitle" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server"> Processing Page </asp:Content>
    <asp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" > Processing Page </asp:Content>
    The code behind is as follows:
    using System;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.WebControls;
    using Microsoft.SharePoint.Utilities;
    using System.Reflection;
    namespace MY.Solution.Layouts.MY.Solution
    public partial class processingpage : LayoutsPageBase
    protected void Page_Load(object sender, EventArgs e)
    try
    //Get a reference to the SPWeb object
    SPWeb oWeb = SPContext.Current.Web;
    //Use the Parameters That Are Passed In
    SPList thisList = oWeb.Lists[new Guid(Request.QueryString["List"])];
    SPListItem thisItem = thisList.GetItemById(int.Parse(Request.QueryString["ID"]));
    sContentType = thisItem["ContentType"].ToString();
    sContentTypeID = thisItem.ContentTypeId.ToString();
    if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["ID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/Blist" + "/NewForm.aspx?AIID=" + sAIAuditID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["AIID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/AList" + "/NewForm.aspx?AIID=" + sAIID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAICID = thisItem["AICID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/CList" + "/NewForm.aspx?AICID=" + sAICID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else
    LoggingService.LogError("MY.Solution - Processing Page", "No Applicable Content Type Found.");
    catch (Exception ex)
    LoggingService.LogError("My.Solution - Processing Page", ex.Message);
    finally
    //DO SOME FINAL THINGS HERE WHEN REQUIRED.
    In the page I need to use Request.QueryString to get the values from the URL. But when I deploy the solution and load the page I get the error:
    'MY.Solution.Layouts.MY.Solution.processingpage' is not allowed here because it does not extend class 'System.Web.UI.Page'.
    When I change the line:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    to inherit as follows:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="Microsoft.SharePoint.WebControls.LayoutsPageBase" MasterPageFile="~/_layouts/application.master" %>
    it does not work either.
    If I change it to inherit like below:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="System.Web.UI.Page" MasterPageFile="~/_layouts/application.master" %>
    it also does not work.
    What does this error actually mean?  And why doesn't the default code generated by Visual Studio work?

    @NadeemYousuf I have tried this too and it didn't work.  
    What does the error even mean?  And why does the error appear with default Visual Studio code?  In my example I have just added a basic application page with no other code in it and it still does not work.

  • Page does NOT load correctly in FIREFOX

    My HOME page does not RELOAD correctly in FIREFOX when when
    the link is clicked on from another page in my little "2 page"
    site.
    BUT if I click on the BACK button it loads CORRECTLY
    It works correctly in IE
    Here is the Home page:
    http://www.quicksubmitbrokerswholesale.com/
    Here is page 2 where clicking on the link in FIREFOX loads
    incorrectly:
    http://www.quicksubmitbrokerswholesale.com/submitforpricing.html
    What do I need to TWEAK to make it work OK in FIREFOX?
    Thanks in advance

    Here is the crux of all your problems:
    <!-- Fireworks 4.0 Dreamweaver 4.0 target.
    You built the site in Fireworks, and a very old version at
    that, and then
    imported the site into DW. Graphics apps like Fireworks and
    Photoshop
    produce bloated, convoluted code and fragile structures. If
    you want a
    worthwhile site you will have to start over. Create only your
    graphics in FW
    and build the entire site in DW. Be cautioned though such an
    old version of
    DW won't produce a site consistent with today's standards.
    You really should
    upgrade if you want to deliver value to your client.
    Walt
    "electro-dud" <[email protected]> wrote in
    message
    news:gb2k07$9v4$[email protected]..
    > My HOME page does not RELOAD correctly in FIREFOX when
    when the link is
    > clicked
    > on from another page in my little "2 page" site.
    > BUT if I click on the BACK button it loads CORRECTLY
    >
    > It works correctly in IE
    >
    > Here is the Home page:
    >
    http://www.quicksubmitbrokerswholesale.com/
    >
    > Here is page 2 where clicking on the link in FIREFOX
    loads incorrectly:
    >
    http://www.quicksubmitbrokerswholesale.com/submitforpricing.html
    >
    > What do I need to TWEAK to make it work OK in FIREFOX?
    >
    > Thanks in advance
    >
    >

  • Page does not navigate: form re-displays

    In my project there is a page which consists of 5 radio buttons and a "Submit" button at the last of the page.
    User selects a radio and on press Submit it navigates to a different page.
    Instead when i select a radio button and press Submit "Validation error:Value is not valid" is displayed on top of the page and page does not navigate.
    JSP code:
    <h:selectOneRadio
                                  styleClass="selectOneRadio" id="radio1"
                                                                     value="#{SL.objectSpace.sPId}" 
                                                                     onclick="return sL_radio1_onclick(this, event);">
                                                                <f:selectItem itemValue="#{varBObjs.pId}"
                                                                          itemLabel=" " />
                                                           </h:selectOneRadio>
    <hx:commandExButton type="submit" value="#{labels.button_CS}"
                                            styleClass="commandExButton" id="button_CS"
                                            action="#{SL.objectSpace.cS}"></hx:commandExButton>JS snippet:
    function sL_radio1_onclick(thisObj, thisEvent) {
         var parentRadioButtonName = thisObj.name;
         var p1=thisObj.value;
         var indexStart = eval("form1:table1:".length);
         var indexEnd = parentRadioButtonName.indexOf(':radio1');
         var parentIndex = parentRadioButtonName.substring(indexStart,indexEnd);
         if (!thisObj.checked){
              //parent unchecked, uncheck all children for this parent
              for(i=0;1==1;i++){
                  childRadioButtonName = 'form1:table1:'+parentIndex+':table2:'+i+':radio2';
                  if(thisObj.form.elements[childRadioButtonName]){
                      thisObj.form.elements[childRadioButtonName].checked=false;
                 } else {
                        break;
         } else {
              //parent checked, uncheck other parent
              for(i=0;1==1;i++){
                  parentRadioButtonName = 'form1:table1:'+i+':radio1';
                   if (thisObj.form.elements[parentRadioButtonName]) {
                     if(thisObj.form.elements[parentRadioButtonName].checked && (i != parentIndex)){
                          thisObj.form.elements[parentRadioButtonName].checked=false;
                             //uncheck children of this parent
                          for(j=0;1==1;j++){
                               childRadioButtonName = 'form1:table1:'+i+':table2:'+j+':radio2';
                                 if(thisObj.form.elements[childRadioButtonName]){
                                      thisObj.form.elements[childRadioButtonName].checked=false;
                                 } else {
                                            break;
                    } else {
                        if (i>parentIndex) {
                             break;
    }SL.java code:
    protected String sPId="same";
    |
    |
    public String getSPId() {
              return sPId;
              public void setSPId(String sPId) {
              this.sPId = sPId;
         }Thanks in advance.

    In addition my IDE throws the below error:
    (jsf E com.sun.faces.context.FacesContextImpl addMessage Adding Message[source Id = form1:table1 0:radio1,summary=Validtion Error:Value is not valid)                                                                                                                                                                                                                                                                                                                                                                                                   

  • My jsp page does not get refreshed

    I have a jsp page which looks like -
    the top portion of the page has 3 textboxes and a submit button to add an entity.
    the rest of the page displays a list of all the entities in the system.
    when i load the jsp and add a new entity, the new entity shows up on the list. when i try to add a new entity second time, the entity does get added into the database, but does not show up in the list.
    In the action class, i make a request to the dao and print all the values from the list, returned by the dao. Since the newly added values are present in the list, returned by the dao, i dont think there is anything wrong with my business layer or the DAO layer.i dont understand, why it does not show up in the jsp page.
    any ideas. i am wondering if the data is being cached, so, in the jsp page i have also set the following parameters:
      <head><meta http-equiv="Expires" CONTENT="0"><meta http-equiv="Cache-Control" CONTENT="no-cache"><meta http-equiv="Pragma" CONTENT="no-cache">
    --------------------------------------------------------------------------------Has this to do anything with Struts and Hibernate which i use in my application? The same thing happens, when i edit. when i click on edit button, it takes the user to a different page, i edit the details and click on save button. the control returns back to the list page, but the changes are not shown, although the changes are saved to the db. how do i prevent cache. i am putting my entire list in a request object, before doing an action forward to the jsp page

    Hi,
    instead of using the cache in the meta tag try with the following lines,
    response.setHeader("Cache-Control", "no-cache");
    response.setHeader("Pragma", "no-cache");
    response.setDateHeader("Expires", 0); Regards,
    Bala A

  • Adobe photoshop cs2 download on adobe website does not work-  the serial number does not work?

    photoshop cs2 download on adobe website does not work - the serial number given isn't recognised when you enter it when trying to install. the live chat at adobe cannot help and suggested that I may find the answer here. Can anyone help with this?

    Adobe has decommissioned the CS2 activation servers, so your old serial number is no longer usable.
    If you download the special non-activating version of CS2 that Adobe has made available to licensed CS2 users, you MUST also use the new serial number provided by Adobe on that download page:
    https://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2_downloads
    That S/N does work.  I double checked.

  • What can I do when  in Photoshop Elements (version 11) the organizer does not start up??

    !@@

    Yes, thanks a lot. I understand now.
    I now am able to open the old catalog again!! I tried now several times with the new shortcut.
    Thank you very much indeed for ALL YOUR EFFORT and patients with me.
    You suggest now I should click on the repair button. When I do so, the catalog will be overwritten, or I can choose not to overwrite and than the catalog will be twice as big. So I decided not to click on the repair button. When I see afterwards that some functions do not work anymore, I allways can use the repair button. As far as I can see now nothing is lost.. )
    As far as I understood it is only possible to repair with a backup. Happily I made that allways, but I am afraid to use it, for the reason above.
    When I have more time to spare, I will look for all the foto's from the apps of my cellphone and delete them.
    Now I can finish my fotowork, what I had started before, and make Photoshop Elements again the main fotoprogram on my desktop.
    Thank you again! Trees
    Van: Little_Pale_Face 
    Verzonden: woensdag 1 april 2015 21:53
    Aan: Trees kaizer
    Onderwerp:  What can I do when  in Photoshop Elements (version 11) the organizer does not start up??
    What can I do when  in Photoshop Elements (version 11) the organizer does not start up??
    created by Little_Pale_Face <https://forums.adobe.com/people/Little_Pale_Face>  in Photoshop Elements - View the full discussion <https://forums.adobe.com/message/7396555#7396555>

  • I applied a template to a page with SWFs and now that page does not play the SWFs. Why?

    I applied a template to a page with SWFs and now that page does not play the SWFs (just a blank area where the SWF should be). When I detach the template it will play the flash file. This site will eventually be updated via Adobe Contribute. And I just discovered that when applying a template to a page that uses HTML datasets (Master/Detail),it no longer reads the Master/detail regions and displays a blank. Any thoughts?
    [Moved to Dreamweaver forum by moderator]

    Firstly, you shouldn't really 'apply' a template to a page, you should create a child page by going to FILE>NEW>Page from Template.  Too many things can happen when applying a template the way you are doing it. eg:; editable and non-editable regions not matching up and being asked where to place these regions and in all likelihood, you end up with 2 or more of the same region.
    When a swf file is inserted into a page, a corresponding Scripts folder is written automatically is stored in the root of the site - it is also linked to in the head of the document. What I believe is happening is that when you apply a template to the page, the Template has no idea that there is a swf file on the page and is not aware of the correct link to the Scripts folder.  If you do a test and add the swf file to the template page itself, I bet that the links to the swf and the scripts folder are correct - because DW knows the correct path to the script file.   Hence the reason the page probably works when you detach it from a template.

  • Spry tool tip does not work in template or child pages within an editable region. Why not?

    Ok. so I am getting pretty frustrated. I take the time to learn how to use CSS and to create a template page for a Contractor Site (www.ContractorInsurance.net). The idea is to create a page that I can use for different classes of Contractors...right?
    Then I get all happy about being able to insert ToolTip onto pages to help the user. Great!
    LIfe to turn to Sorrow after nearly five hours of searching for a "eeking" answer.
    So what good does it do to have an Editable region to update if we cannot have the flexibility to insert a tool tip on child pages?  Ok so the fast solution is to what... Have a question mark image, insert another apDiv, name it toolTip_Not and provide it with a show=hide behavior?
    RRRRRrrr...
    This really sucks not being able to find a solution within a reasonable amount of time.

    I have tried thank you. However...it is still not working.
    www.ContractorInsurance.net/course_of_construction.php
    The error message is "Making this change would require code that is locked by a template translator"
        Re: Spry tool tip does not work in template or child pages within an editable region. Why not?
        created by altruistic gramps in Spry Framework for Ajax - View the full discussion
    If you have a look at the following simple document with a tooltipTooltip trigger goes here.
    Tooltip content goes here.
    you will notice that a couple of lines have been placed in the HEAD section of the document. When using DW templates, the HEAD section is usually not editable, hence the error mesaage. By default, your template should have an editable region in it just before the closing tag. It looks like this: <!-- TemplateBeginEditable name="head" > <! TemplateEndEditable --> Dreamweaver should be able to find that editable region and insert the
    <script> tag there automatically. Because you don't have an editable region like that in the <head>, open the master template, and paste the code above just before the closing </head>
    tag. Gramps
    Edited to remove personal data

  • Page does not show data

    Hi all,
    I would appreciate any help for the following problem that I am facing.
    I have created master-detail pages sharing the same AM.
    The details page shows details of the request from 3 different VOs.
    The VOs are entity-based and I modify the VOs using the setwhereclause for my purpose.
    The master page runs fine and shows the searched request but when I goto the details page, it renders correctly but does not show any data.
    Thanks in advance.

    Hi,
    Thanks for the reply.
    The view instance and view attribute to the details page columns are already set.
    To add to the information,the AM is also used by othe pages for logic calcuation.
    After executing these pages for one of the request, when I use ther master detail page for ther same request, it works.
    But for the other requests, the details page does not return any data.
    I suppose this is linked with EO not getting updated/refreshed with the new search request in the master details page.
    If this is supposedly the reason,then how can I refresh the EO for each master detail search?
    Has anybody encountered this issue before?
    --Riyaz
    Edited by: mriyaz on Mar 7, 2009 12:29 PM

  • Page does not fit on paper when printed directly to printer

    Hi experts,
    I have developed a form in transaction SFP, using A4 as the paper format for the master pages. If I print to spool and preview and print my form from spool using transaction SP01, the form prints nicely. If I print directly to printer using the generated function module for the form (setting parameter REQIMM to true), the page does not fit on the paper (it is cropped), and also I do not get duplex printing.
    Why do I get different results when printing directly to printer as opposed to printing to spool first? How can I ensure that the form is printed correctly when printing directly to printer?
    thanks!
    Frank

    Did you check the window settings of the Firefox desktop shortcut to see how Firefox opens?
    Did you try to delete the current Firefox desktop shortcut and create a new shortcut?
    Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window (use the keyboard cursor keys).<br />
    If that works then first close all other open Firefox windows and then close Firefox via "File > Exit/Quit" to save that setting.

Maybe you are looking for