Having problems trying to figure out the masters

I started using muse Saturday and I made a site Web 55 great page and he published and everything, but I can't get my head around the whole master thing... I have 2 masters, one for the navigation page and one for content pages 'top 10 '. My content is long and takes a lot of page and some is small and takes just one page. How can I do to the page wraps the content. In these photos it shows how should there is a white space and it isn't really nice and also how the page shrinks.Capture.JPGeeee.JPG

its probally something simple, but I need some advice or a video on youtube or something. Thank you all!

Looks like you just want to disable the sticky footer for Master Page Properties pages.

Thank you

Vinayak

Tags: Adobe Muse

Similar Questions

  • Trying to figure out the TYPE clause

    Hi all

    I'm finally bite the bullet and learn how to use the clause type, but I'm having a little trouble.

    The following example data comes from a book "Advanced CQL works in Oracle 10g".

    with sales1 as (select 'blueberries' product
                          ,'pensacola' location
                          ,9000 amount
                          ,2001 year
                      from dual
                    union all
                    select 'cotton', 'pensacola',16000,2001 from dual
                    union all 
                    select 'lumber','pensacola',3500,2001 from dual
                    union all
                    select 'cotton','mobile',24000,2001 from dual
                    union all
                    select 'lumber', 'mobile',2800,2001 from dual
                    union all
                    select 'plastic','mobile',32000,2001 from dual
                    union all
                    select 'blueberries','pensacola',9000,2002 from dual
                    union all
                    select 'cotton', 'pensacola',16000,2002 from dual
                    union all 
                    select 'lumber','pensacola',3500,2002 from dual
                    union all
                    select 'cotton','mobile',24000,2002 from dual
                    union all
                    select 'lumber', 'mobile',2800,2002 from dual
                    union all
                    select 'plastic','mobile',32000,2002 from dual
                    union all
                    select 'blueberries','pensacola',9000,2003 from dual
                    union all
                    select 'cotton', 'pensacola',16000,2003 from dual
                    union all 
                    select 'lumber','pensacola',3500,2003 from dual
                    union all
                    select 'cotton','mobile',24000,2003 from dual
                    union all
                    select 'lumber', 'mobile',2800,2003 from dual
                    union all
                    select 'plastic','mobile',32000,2003 from dual
                    )
    select location, product, year, s
    from sales1
    model
    --return updated rows
    partition by (product)
    dimension by (location,year)
    measures (amount s) ignore nav
    (s['pensacola',2003] = sum(s)['pensacola',cv() > cv()-1])
    I expect the provision of measures to return the sum of all the amounts of pensacola where year > 2003 - 1 = 2002. which would make the total [blueberries, 2003] is 1800, but instead, it comes out like 27000, apparently adding up all the values for blueberries for this partition... equivalent to concern ["pensacola", ANY].

    How would I go about doing s ["pensacola", 2003] = the sum of itself and the previous row?

    I realize I can do
    s['pensacola',cv()]+s['pensacola',cv()-1]
    but I'm really trying to figure out why what I have doesn't seem to work the way I expected.

    Because

    (s['pensacola',2003] = sum(s)['pensacola',cv() > cv()-1])
    means
    (s['pensacola',2003] = sum(s)['pensacola',cv(year) > cv(year)-1])
    means
    (s['pensacola',2003] = sum(s)['pensacola',2003 > 2003-1])
    means
    (s['pensacola',2003] = sum(s)['pensacola',2003 > 2002])
    means
    (s['pensacola',2003] = sum(s)['pensacola',year is any])
    
    s['pensacola',cv()]+s['pensacola',cv()-1]
    means
    sum(s)['pensacola',year between cv()-1 and cv()]
    
  • Trying to figure out the average

    I'm trying to figure the average number of cases from the date the case was opened on the date, that the case was closed. I tried this:

    AVG (to_char(case_completed_date,'DDD')-to_char(incident_date,'DDD')) AS 'AVERAGE '.

    but unfortunetly it does not work. Could someone help me?

    Thank you
    Deanna

    It's similar to my current output:

    (Box #)-(#Cases)-(%)---(Date Case Opened) (days)---(Date Closed)-(Average) case
    2009102801---1---50---29---12-FEB-09---13-MAR-09---29
    2009102803---1---50---300---01-JAN-09---28-OCT-09---300
    Total:---2-329


    select      
             "CHART"."INCIDENT_DATE" as "INCIDENT_DATE",
             "CHART"."CASE_COMPLETED_DATE" as "CASE_COMPLETED_DATE",
             "CHART"."CASE_NUMBER" as "CASE_NUMBER",
    
    AVG(to_char(case_completed_date,'DDD')-to_char(incident_date,'DDD'))AS "AVERAGE",
    to_char(case_completed_date,'DDD')-to_char(incident_date,'DDD')AS "DAYS",
    count(case_number)as "#Cases",round(ratio_to_report(count(case_number))over()*100,2) AS "%"
    
    from      "CHART"
    where
    group by 
    CASE_NUMBER,CASE_COMPLETED_DATE,INCIDENT_DATE

    Something like that maybe...

    WITH data AS
    (
      SELECT '2009102801' AS case#, to_date('12-FEB-2009', 'DD-MON-YYYY') AS case_opened, to_date('13-MAR-2009', 'DD-MON-YYYY') AS case_closed FROM dual UNION ALL
      SELECT '2009102803' AS case#, to_date('01-JAN-2009', 'DD-MON-YYYY') AS case_opened, to_date('28-OCT-2009', 'DD-MON-YYYY') AS case_closed FROM dual
    )
    SELECT CASE WHEN case# is null THEN 'Report Total' ELSE case# END AS case#,
           count(*) AS cases,
           count(case#) / count(case#) over()  * 100 AS pct,
           sum(case_closed - case_opened) AS days,
           CASE WHEN case# is null THEN null ELSE min(case_opened) END AS date_case_opened,
           CASE WHEN case# is null THEN null ELSE max(case_closed) END AS date_case_closed,
           avg(case_closed - case_opened) AS average
    FROM   data
    GROUP BY GROUPING SETS (case#, ())
    /
    
    CASE#        CASES                  PCT                    DAYS                   DATE_CASE_OPENED          DATE_CASE_CLOSED          AVERAGE
    ------------ ---------------------- ---------------------- ---------------------- ------------------------- ------------------------- ----------------------
    2009102801   1                      50                     29                     12-FEB-09                 13-MAR-09                 29
    2009102803   1                      50                     300                    01-JAN-09                 28-OCT-09                 300
    Report Total 2                      100                    329                                                                        164.5                  
    
  • trying to figure out the names of the packages...

    I'm following: A10_Writing_Your_First_Application_V5.pdf and writing within Eclipse Ganymede 3.4.2 projects

    When creating this sample package, the name is:

    com RIM. Samples.HelloWorld

    It works and creates the coresponding files in my workspace.

    Then, I tried:

    com RIM. HelloWorld

    and the program does NOT work on my Storm

    So there must be a reason why this package name is required, i.e. my Storm is looking for files in a specific folder, not just any folder. I have tried to identify the folder corresponding to the Eclipse plugin directory, and I see:

    C:\Program Files\eclipseGanymede342\plugins\net.rim.eide.componentpack4.7.0_4.7.0.46\components\samples\com\rim\samples\device\helloworlddemo

    I see some similarities...

    Could someone help me understand the requirements for the names of 'package', i.e. the folder tree in my project?, or direct me to a document where it is explained?

    Thank you.

    If you have placed the source file in the particular package names that you have set, it should work.

  • Compaq presario CQ56: trying to figure out the password?

    Enter the password administrator or power on password - after than three bad tests off System [57363131]

    can someone tell me what is the password?

    or how to understand?

    @Elitewelshie94

    Enter 48041117

    Kind regards

    DP - K

  • What we call this effect? Trying to figure out the name of it, so I can search for tutorials...

    Hey guys, just have a quick question.

    What we call this effect? I'm looking to do a clip like this: Her.ie - storm Queen Teresa Mannion | Facebook

    Basically I want to motion track an object in a video and paste it into another.

    Thank you!

    You would follow the head in the shot that you want to replace, and then apply to a null tracking information.

    In another composition stabilizes you the replacement head so that the head does not move in the picture, then mask around the head. It is important that the head does not move much in the frame. So, if you were effective, you must set the "region of interest" to the computer simply include the stabilized head and then reframe the model of the region of interest. (If you don't know what I'm talking about then look it up using the search help field in the upper right of EI or don't you worry about this).

    Then you nest your head stabilized inside the main comp comp, set the anchor to the bottom of the neck, place the replacement on the body head and parent then head replacement for the null value.

    AE Basics...

  • Trying to figure out how to 'Cancel' option on the e-mail hotmail page? Is it possible to display the arrows to "undo" on the page e-mail through Hotmail?

    Trying to figure out how to 'Cancel' option on the e-mail hotmail page? Is it possible to display the arrows to "undo" on the page e-mail through Hotmail? Do not see it as a tool bar option? Thank you!

    Hello

    I'm sorry, but we cannot help with hotmail problems in these forums in response to vista

    Please repost your question in hotmail in the hotmail link below forums

    http://windowslivehelp.com/product.aspx?ProductID=1

    Forums
  • I am a student and I bought the web of adobe design premium in my first year. Recently, my computer got crashed and I had to buy a new one. I'm trying to figure out how to reinstall adobe web design premium on my new computer.

    I am a student and I bought the web of adobe design premium in my first year. Recently, my computer got crashed and I had to buy a new one. I'm trying to figure out how to reinstall adobe web design premium on my new computer.

    Click on the drop-down list below the product you wish to download. Then you will receive the link to download the installation file.

  • I have a Verizon Tablet and trying to figure out how I can download the software on this subject?

    I have a Verizon Tablet and the invitation to the cloud of AdobeCreative through my school, University of Everest online. I was trying to figure out how I can get the same download to my Tablet?

    Hello

    Please see: -.

    Adobe mobile, iPhone, iPad, Android apps | Adobe Creative Cloud

    Also, you can read:-what tablet do you use with creative cloud / Apps?

  • I really need someone to help me. I tried to figure out how to select a PDF to convert a Word doc. When I go to select a PDF file, all that comes is the WORD documents. doesn't show ANY of my PDF files... Please help me understand wh

    I really need someone to help me. I tried to figure out how to select a PDF to convert a Word doc. When I go to select a PDF file, all that comes is the WORD documents. doesn't show ANY of my PDF files... Please help me understand what is happening? We put it on automatic renewal so I know it's not that we have not renewed this subscription, because we pay automatically.

    Hi olivias,.

    Looks like there may be some confusion on your system which application should be associated with PDF files. You can reset the file name associations by following the steps described in these articles (depending on your operating system):

    How to change the default application for a file type. Macworld

    http://Windows.Microsoft.com/en-us/Windows/change-default-programs#1TC=Windows-7

    Please let us know if you have any additional questions.

    Best,

    Sara

  • Trying to figure out what model of monitor I have here

    Trying to figure out what model it is, at the back is a sticker with this (but no service tag, being a monitor):

    CN-OMK7Y4-64180-155-06FS

    Thank you!

    MK7Y4 = IN2030M of a 20 "monitor. Built on 5 May 2011

  • Trying to figure out how to put my adobe on my other computer

    Trying to figure out how to put my first from adobe on my other computer so I can use it when I'm not on this computer. I read that I have two computers with one license as long as I'm not on both at the same time.

    Please help if you can guide me in this process or give a link that already has the answer.

    I am running windows 10 on my system, main and windows 7 on the other. Don't know if it's important, but I thought I would mention it.

    Thank you!

    Download the desktop CC app, connect to your Aperture controls session, download apps & start working.

    That's all. Assuming that you are on the CC program.

    If you are on the old CC version, and have a drive for example, just do what you did before... or download from ProTools & give your activation number on the other machine.

    http://prodesigntools.com/Adobe-CC-2015-updates-links-Windows.html

    Neil

  • New to vCO. Trying to figure out which cluster a virtual machine lives in

    Hello.


    I created a simple 'Hello' workflow VM in vCO and added to vcenter so that it appears in the right click menu of a virtual machine.


    When I run it, the entrance is pre-populated with the name of the virtual machine just as I expected.


    In the Scripting section, I am just running


    System.log ('Hello', + vm.displayName);

    System.log (' VM ID: "+ vm.id");

    I'm trying to figure out how I can get the cluster who lives this virtual machine, but the property is not part of the VC:VirtualMachine.

    I have to take advantage of another type of entry to obtain data or another workflow to get this information?

    Thank you.

    My bad. I didn't know this when I tried first.

    https://communities.VMware.com/thread/464671

    I'll try that. Thank you!

  • Trying to figure out how to use the Windows calculator to convert a basic number of 50pico.

    I can't find out how to enter to the power 10 - 12. When I type exp it evokes 10th + 0, I want 10-12. I also can't figure out how to use the brackets and parentheses, I tried to use help and can not find an answer for what I am trying to do. I need to convert a number of basic rating scientist 50pF.

    Thank you, Doug

    I found the answer to my question.  When I clicked on the button in the calculator of + /-he would change 50 * 10 + 12 to 50 * 10-12 and give me the answer I was looking for.

    Doug

  • I'm trying to figure out how to edit the files with a watermark of mass...

    And I can't figure out how! I know that Lightroom has a feature, but freedom as a sucks (fonts, colors, size). Can someone help me? I have 900 images to stick a watermark on, and I really need to know how to do it in Photoshop CS4

    Thank you!

    You need to install fonts in windows. go to control panel, folder select fonts. Click on file and install a new font. Then navigate to the folder where you have the fonts must be installed. After this open Photo shop and you should see the new fonts.

Maybe you are looking for

  • mail application does not work correctly

    Hello I have a ZTE Open C, Firefox OS with an Orange SIM card that works well in the phone call and SMS I've added an account in the Mail application the list of received mail looks OK When I want to load a mail something from 10 minutes to over an h

  • Satellite 5100 603: where to find a new graphics card?

    Hello I am currently the owner of a Toshiba Satellite 5100 603. The problem is the video card. But I can't find a new or second hand video card for this laptop anywhere. Anyone has suggestions where to look for this card or maybe has a replacement pa

  • Error fatal blue screen - Stop: C000021a

    Hi 'think that did something stupid to my pc (windows XP) I get the blue screen saying' STOP: c000021a {fatal system error} the windows logon system process ended unexpectedly with status 0xc0000034(0x00000000 0x00000000). The system has been shut do

  • Impossible to apply automatic updates

    I can't activate the automatic updates of Windows.  The message that I need administrator permission, but I am the administrator!  I really need to use this feature so any help would be appreciated.  Thank you

  • Why multiple jumps are not applied internet ladies?

    In your ladies of the internet game, the opponent is not required to fill out a multiple jump when it is not to his advantage not to.  This leaves me, the other player, without any breaks than I had expected.  It's what do not prescribe rules.