The page height is adjustable so that it extends from the content and either?

I'm building a site that doesn't have a lot of content. I have a background color of the browser and the substantive pages is white. When I view the site on a large monitor the height of page will extend up to the browser, and I find myself with all that white empty space at the bottom. Is there a way to Muse to set the height of the page so that it extends only where content ends and not further?

I appreciate your help! Thank you!!!

Hello

Can you go to file-> Site properties and disable "Sticky Footer", and then preview the site to see if it is what you want?

I hope this helps.

See you soon

Parikshit

Tags: Adobe Muse

Similar Questions

  • Published site has a huge gap between the content and the footer

    So I just publish my site and when I watch it after be published, I got a good gap 2 inches between the bottom of the content and the footer.

    I read on a number of bits and pieces and they tell you Colin have a container hidden on the pages that I accepted it completely so I looked and nothing. I thought then it might be a problem with the master page I used, then verified that. Could not see it.

    However when I looked through my site and saw the master pages, I used, I had a mix and some worked and some didn't. IM lost!

    I launch the Sam and is a bit of a pain. Someone had this problem? The preview looks perfect, not sure where this gap comes so im.

    Thanks in advance!

    Hello

    Please check if you have "Sticky footer" option enabled in the properties of the Site.

    If so, please uncheck and then preview your site in a browser.

    In case there still this gap, please provide us with the URL of your Web site so that we can have a look at the issue.

    Kind regards

    Sachin

  • Hello. I have perchased the new iphone, and I gave my old iphone to my little brother. I erased all the content and the date in the settings menu. This will automatically delete all my photos data old messages etc. thanks

    Hello. I recently perchased the new iphone, and I gave my old iphone to my little brother. I erased all the content and the date in the settings menu. This will automatically delete all my photos data old messages etc. thanks

    Follow the directions here: what to do before you sell or give away your iPhone, iPad or iPod touch - Apple Support before giving the phone to your brother. -AJ

  • Issues of white space between the content and footer.

    I have the problem of length of the areas whites/page between the end of my content and footer.

    I have read the forums and tried to change the height of minium length of page in 800 and then I

    disabled the foot sticking in the properties of the page on the master page and content page itself.

    Here is a link to one of my pages.  http://www.ueonline.com/RoHS-info.html

    This page has very little content, and you can see the white space.

    Any help is appreciated.

    Hello

    Check empty rectangles/related texts executives on the page. Check the screenshot below.

    See you soon,.

    Vikas

  • Problem with image extract the content and the tile at the same time show on ListField

    My application is Application News get JSON webservice to appear on ListField.

    On each line in the list, it will show you the image thumbnail, title and Teaser as below.

    _______________________________________

    |                |                       Title

    |   Thumb  |_______________________________

    |_______  |                       Teaser

    First of all, I have to get JSON that contains the url of the thumbnail image, title and Teaser.


    I managed to view the title and Teaser, but the thumbnail is not. When I Fetch image with the url of the thumbnail image, it returns only bitmap = null for me.

    My method is first call httpdispatcher to get the thumbnail image, title and Teaser and then wait and call another httpdispatcher to retrieve the url of the image thumbnail, then added to listfield.

    Here is my code

    Class helloScreen{
    
    public void requestSucceeded(byte[] result, String contentType)   {      if (contentType.equals("image/png") ||        contentType.equals("image/jpeg") || contentType.equals("image/gif") ||contentType.equals("image/jpg")) {         bitmap_temp = Bitmap.createBitmapFromBytes(result, 0, result.length, 1);                     synchronized (UiApplication.getEventLock()) {
    
                   }         }         else if (contentType.startsWith("text/")) {
    
                  strResult = new String(result);
    
                 try {                     ja = new JSONArray(strResult);
    
                  } catch (JSONException e) {                   // TODO Auto-generated catch block                    e.printStackTrace();              }
    
               synchronized (UiApplication.getEventLock()) {
                                  int temp_int_next=0;
                    try {
                        callback.erase();
                         for(int x=0;x<10;x++){
    
                             j = (JSONObject) ja.get(x);
    
     String get_htmlOff_first = j.get("teaser").toString().substring(j.get("teaser").toString().indexOf(">")+1);
     final String thumb = replace(j.get("thumb").toString(),"files/","http://www.eng.chula.ac.th/files/");
    
                                    UiApplication.getUiApplication().invokeAndWait(new Runnable() {
    
                                    public void run() {
    
                           getImageURL(thumb); 
    
                                 }});                      
    
    callback.insert(j.get("title")+" ", ""+get_htmlOff_first.trim(), bitmap_temp , temp_int_next , "Event");                      temp_int_next++;
    
                      }
    
                       } catch (JSONException e) {                  // TODO Auto-generated catch block                    e.printStackTrace();              }               
    
                }         }         else {            synchronized (UiApplication.getEventLock()) {         Dialog.alert("Unknown content type: " + contentType);         }         }
    
    
    
    public void getImageURL(String url) {                HttpRequestDispatcher dispatcher2 = new HttpRequestDispatcher(url,                "GET", this);    }
    

    }

    httpRequest, class Dispatcher is used to get the data from the url

    public HttpRequestDispatcher(String url, String method, helloScreen screen)
    {
    this.url = url;
    this.method = method;
    this.screen = screen;
    
    }
    
    public String getType(){
    
        return type;
    
    }
    
    public void run() {
        try {
    
            if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)
           {
                connection = (HttpConnection)Connector.open(url+";interface=wifi");
         }else{
    
            String uid = getWap2Uid();
            connection = (HttpConnection)Connector.open(url+";deviceside=true;ConnectionUID=" + uid);
    
            }
    
        connection.setRequestMethod(method);
    
        connection.setRequestProperty("Accept","text/html, image/jpg, image/jpeg, image/,image/gif");
    
        int responseCode = connection.getResponseCode();
        if (responseCode != HttpConnection.HTTP_OK) {
        screen.requestFailed("Unexpected response code: " + responseCode);
        connection.close();
        return;
        }
        final String contentType = connection.getHeaderField("Content-type");
        final ByteArrayOutputStream baos = new ByteArrayOutputStream();
        InputStream responseData = connection.openInputStream();
        byte[] buffer = new byte[10000];
        int bytesRead = responseData.read(buffer);
        while(bytesRead > 0) {
        baos.write(buffer, 0, bytesRead);
        bytesRead = responseData.read(buffer);
        }
        baos.close();
        connection.close();
    
                  UiApplication.getUiApplication().invokeAndWait(new Runnable() {
    
                        public void run() {
    
                            screen.requestSucceeded(baos.toByteArray(), contentType);
    
                        }
    
                        });
    
        } catch (IOException ex) {
        screen.requestFailed(ex.toString());
        }
    }
    

    The point here is that I have JSON and get the url of the thumbnail to fetch before add to listfield. The image should be ready in bitmap_temp but it still get null.

    UiApplication.getUiApplication().invokeAndWait(new Runnable() {
    
                                   public void run() {
    
                           getImageURL(thumb); 
    
                                 }});
    
    public void getImageURL(String url) {                HttpRequestDispatcher dispatcher2 = new HttpRequestDispatcher(url,                "GET", this);    }
    
    callback.insert(j.get("title")+" ", ""+get_htmlOff_first.trim(), bitmap_temp , temp_int_next , "Event");
    

    All day trying to fix it but no success, so I need help from you guys.

    Thank you

    "Is it possible to leave only 1 thread completely pick 10 pictures.

    Yes and this is how I would recommend that do you it this way.  So have a Thread that you give a list of things to do and let it work through each.

  • Items 10 freezes after attempting in vain to rebuild the content and the effects library, help?

    Hi guys,.

    I recently received some actions and progressed to install as I did with actions in the past... Put them in the file of the photo effects, then go to the locale folder and delete the file MediaDatabase.db3. (I'm on a mac, in the case that it is different for the PC).

    He's worked in the past for me, but for some reason, the last time I tried, the content library and effects would not rebuild. He got 75% done and then frozen.

    Fortunately I had kept an old MediaDatabase.db3 file to the case where that ever happened. So I just deleted the unfinished MediaDatabase.db3 file and put the old one back in the folder and opened 10 items. Items 10 open, but then wouldn't let me use all the menus. I got the death spinning beachball.

    I don't know what happened... like I said, I have nothing was out of the ordinary and it worked for me before!

    Any suggestions? Short of completely reinstall the elements (which I don't know even if I do, since I've only got an activation code when I bought it.)

    Thank you in advance!

    Yes, you can reinstall the PES, but that shouldn't be necessary. Activation related material is so it is not serious, and uninstaller gives you the ability to disable during the uninstallation. Try to remove the mediadatabase once again, and this time also delete thumbsDatabase.db3, which is in the hard drive > library > Application Support > Adobe > Photoshop Elements > 10.0.

    That's assuming this isn't the app store version. Is it?

  • Just access to the content and using MovieClipLoader property

    The code below is a code very simple I use to upload a film and able to pass a variable for the onLoadInit event...
    but, anyway the target_mc. Name is not defined.

    Please help me...
    Thank you

    Properties or code that have been put in a clip will be deleted when you start loading the content in the video.

  • Resize the content and mulitple art advice?

    Long story short, I do the formatting of a book, adding images, etc. I received an e-mail yesterday that the size has changed. Problem is, I did so far more than 100 pages, and they are broken

    down in 10 pages / files.

    Please tell me there is a way to batch resize all this?  I don't mind doing 10 pages in time, do not want to resize all images. The text, although most likely will need to be

    handmade. Unless there is a way to export a PDF file to the right size? Or that you resize in PDF format...

    Try this thread:

    Is it possible to resize all work plans at the time the way that you used to be able to do in the configuration of document?

    You really should work in InDesign.

  • Where is the installation of the previous version, which helped save the content and saute upward during the restart, is no longer available?

    During the closure of Firefox version 4 it "just closes", no option to save the displayed pages or multiple windows in... alternative now use to 'crash' the computer as the installation of "restore" then click in but frankly it is a bad option... Please bring back the option 'Save' and will bring up when the next time you use Firefox...

    Firefox 4 saves the previous session automatically, so it is no longer necessary for the dialog box asking if you want to save the current session.

    You can use "Firefox > history > restore previous Session ' to get the previous session at any time.

    There is also a button 'Restore previous Session' on the default on: Home home page.

    Another possibility is to use:

  • Receive calls from a person claiming that they are from Microsoft Support and my computer sends Error Messages

    I get phone calls from someone who says they're the Microsoft Technical Support. They tell me that my Microsoft system sends error messages and they want to fix it for me. They let me in my computer. Microsoft EVER made these calls?

    Scam phone virus running from India call centers

    Britons targeted by cold callers pretending to be from Microsoft by calling a fake computer problem

    http://www.guardian.co.UK/world/2010/Jul/18/phone-scam-India-call-centres

  • I started to edit a magazine model and I can't find how to change the feet to a side. I can't retype it or to do anything whatsoever to change as in a section of text. You can see in the picture ("about the title of the content" and "YOURMAGAZINEAUGUST201

    11111.jpg

    Command/Ctrl + Shift on the text to change it or remove it.

    The pink highlight means that you do not have the correct font installed on your system.

  • $$$ / ADMDialog/iFontProblemWarning = The Adobe UI police could not be loaded. For best results, please exit the program and either install it or uninstall other fonts.

    Hello

    Since I ugraded to Windows 10, CS5.1 Illustrator and Photoshop CS5.1 raise the warning above to start.

    For Photoshop, I found a solution (solution?), published in the Photoshop forum: renamed ADmPlugin.apl to ADmPlugin.apl.bak in the macros folder Photoshop\Required\Plug.


    It does not work for Illustrator: when I rename the equivalent file in the Illustrator file, no longer, start saying "plug-ins required missing: Plugin ADM, BRS pencil tool and expands...


    Interestingly, InDesign has no problem at all.


    Any ideas how to fix? Reinstall did not help.


    Kind regards

    Julian

    Problem solved

    This thread finally has the solution: ACTIVATE the Windows Firewall during installation. Don't ask why...

  • I am able to isolate the content of a page in a spread so that it does not bleed more?

    Hi all.

    I am currently working on a book, but I'm having some trouble with one of the spreads.

    In my case, I have a title page which is then followed by a content page and the page (if you want) on a Board. However, I work to create a different design for the content and, consequently, a couple of my items to extend beyond the page. These bleeding then on the next page in the spread and I was wondering if there was a way to stop this?

    As you can tell, I'm not an expert and don't use InDesign for over a year. I understand that I may just to design the elements to adapt to another program like Illustrator, but I just wanted to check that there wasn't a solution easier, internal.

    Thanks in advance,

    James

    Thanks for the reply, Haakenlid.

    'Make the smallest element' was, of course, one of the first things that I considered. However, it distorted the shape of the element (it is a full path) and there are some areas I wanted to clip.

    I just found the answer myself. I just copied and pasted the item in a rectangle frame (draw a rectangle with the rectangle frame tool, and then right-click, 'paste') and I can now crop the item as such. I just do the same size as the page framework.

    Well, maybe this will be useful for others.

    Thanks again,

    James.

  • Create a menu accordion that pushes the content down?

    Okay, so I am what some new Muse and I am working on a site that requires me to have several sensitive pages.

    So I want to create a menu Burger in the left corner of the header when you click on in her pushes her contented below him down not just open on the top.

    Now, I had this ins the past when tested the menu when scratch starts out but now I can't re - pro wanted this result?

    What I am I missing here are my steps

    1. on a blank page for testing, I create a black bg header 960 x 200

    2 drop an Accordion widget on the page (by emptying all the contents and styles)

    3. move a vertical menu on the page in the lower area accordion

    4 - Position the accordion in the black box in the header that I drew

    5 - test it and the menu opens but does not push only the lower content down, it opens on the top.

    Any ideas or a video tutorial that I can check?

    Thank you

    B

    use the widget base of Muse

    and put a tick in the box to overlay

    example page = example widget

    the two have left ticks so they more | under the knees and the right pushes down

  • RH10: Is is possible to publish files in Sharepoint only for the content page?

    Hello

    I have a SharePoint site where the header is predefined and not supposed to change. Whenever a new page is created, the header remains the same and the file names are listed in the glossary area. New pages are created and the content of the new pages is displayed only in the box "Content" (in this photo).

    I have some html files created in robohelp and I am trying to publish them in sharepoint (version 2010) with HTML5. But when the project is published in SharePoint, it creates a new page with the content and the glossary.

    Is it possible to have this files "published" in the area "contained"? Do we not have an option to manage it into Robohelp 10?

    untitled.JPG

    Thanks in advance.

    Kind regards

    Nefertari

    I think that I get it. In the optimization of your SSL settings, there is an option to apply the styles only to the output. Enable this setting to optimize and try again. In my view, that will solve your problem.

    Take a bow

    Willam

Maybe you are looking for

  • Add Proxy settings to a Smart TV Toshiba RL958

    I recently bought a Toshiba RL958.I use a proxy server to access the internet. My problem is that I can't find anywhere in TV menus to enter the details of the proxy server.Help, please.Appreciate some help or ideas on getting the TV to access the in

  • How to synchronize multiple devices (294 x) Rio usrp

    Hello I'm trying to receive 4 channels using two devices USRP-294xR (USRP RIO) to synchronously and run the example for the reception of several device program.   Often, I receive the error message "failed synchronization.  If I run the example sever

  • The screen on the side

    Suddenly my laptop screen is sideways, how can I get that back to normal to research?

  • network device is already installed but now need to return and guarantee

    I have a network connection already setup, but have to go back and fix it don't know how

  • What I do with defrag?

    I know how to start defragmentation and I see when he finished to scan the discs, but is there something I need to do? I myself remember I could see a Visual on the defragmentation process, but now I just see an hourglass and after many hours, a mess