website displaying incorrectly after download

I downloaded my site I did Muse to my external host. In safari, it loads perfectly however in chrome and internet explorer, it loads funny. I even added the Center to the widget page and tried to get all the items on pages to extend to 100% of the width always no chance.

Any help would be greatly appreciated.

www.zionfredericksburg.org

Hello tiffanyt416245,

Thank you for sending me the file.

Here are my observations for 2 issues you mentioned

1. white rectangle under the menu isn't full width

Then rectangle square on the page master "main Zion" going to the outside page area.

This won't work in all screen sizes, to ensure that it remains full width in all sizes screen you use the button of width of 100%.

To do that select the rectangle and press 100% with button in the toolbar as shown in the screenshot.

2 slide show is not full width.

Slide show is placed in the "Home" page and has the similar problem. You have increased the width of the target, but it will not make full screen in most screens.

You cannot use 100% option you use a Widget for Composition. I have 2 suggestions for you.

Suggestion 1:

If you want to create a 100% with the slide show then try slideshow widget instead of composition as a slide show widget, you get the possibility to apply 100% width on the Images of heroes. You can insert a slidwshows of the object > Inset Widget > slide show

slideshow of width 100%. Adobe Muse CC tutorials

Suggestion 2:

If you want to use the composition on then you can try to create an illusion by placing a rectangle of width 100% on the back of the composition. But the background color used in the images must be the same as the color of the rectangle 100% width in the rear.

Concerning

Vivek

Tags: Adobe Muse

Similar Questions

  • Websites displaying incorrectly after reset - Strange bars horizontal across the screen.

    Hi all

    Recently, AVG has updated on my PC. I'm normally on the ball with this stuff and always avoid the add ons auto install tools for search free etc, but this one slipped in front of me. The end result is that whenever I opened a new tab AVG had diverted FF and I was presented with an AVG search page. Trying to get rid of him without success so reset FF.

    Since that some sites (not all) have display problems. Most affected appear to be Ebay and FB. What happens is after the page loads and I scroll through the major part of the page of disappears behind black and grey horizontal bars. It was certainly not like it before delivery to zero so something wrong obviously walk in the settings but I could do with help on which parameters must be twisted re. If this can help I can take a screenshot of the problem and host it.

    In case its relevant I am running Win 7 ultimate 64-bit.

    Thank you very much, Chris

    Because the reset Erases a lot of settings, changes may have done and forgotten a long time ago can be once again. Here are a few thoughts:

    (1) try to disable the use of Firefox hardware acceleration

    When Firefox is not entirely compatible with the driver for your graphics card, there may be seeds of inexplicable display. The standard solution is to fall back to the most basic rendered graphic to see if this can help, especially if the issue cannot be resolved by updating your graphics drivers.

    You can disable hardware acceleration here:

    "3-bar" menu button (or tools) > Options > advanced

    In the mini ' General' tab, uncheck the box for "use hardware acceleration when available.

    That will take effect the next time you exit and restart Firefox.

    (2) disable or remove unnecessary extensions

    Open the page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click Extensions. Then, for acts recognized or non-essential, turn off.

    Typically, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    (3) disable unnecessary plugins

    Open the page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click on Plugins. For non essential or mystery plugins, change the selector to "activate" to "never activate. Depending on the nature of the plugin, this can help as soon as you reload the tab, or it could take effect only in a new window launched after the change.

    Even if #1 or #2 fix the visible problems, I suggest to complete these three steps.

    Any improvement?

  • Web pages displayed incorrectly after the upgrade to Firefox 10.0.2

    Many web pages is not correctly displayed after upgrading to Firefox 10.0.2. Also, I'm not able to view YouTube videos. I checked my plug-ins and all are up-to-date, including Adobe Flash Player 11.1.102.62. I have no problem when you use Chrome on the same computer. Also, my laptop on the same network running Firefox 3.6.14 and works well. TIA, carlier

    Hello

    Please also try this: (Alt + T) Tools > clear recent history, choose all in the interval of time to clear the cookies and the Cache in the Details. Recent history of claire

  • display images after download is completed

    I have a thread that downloads an image, then executes a callback in the screen of the user interface. I usually use this class/thread in a custom field where I run invalidate() to update the paint method. This works.

    Now, I am trying to use this approach in a screen, but when I try to add or update a bitmapfield I get an error in the Simulator.

    Here is the reminder in the screen.

    public

    Sub {Update (Bitmap image)

    this.map = image;

    MapField = new BitmapField (map);

    VFM. Insert (mapfield, 1);

    }

    I also tried adding the bitmapfield initially and then by mapfield.setBitmap (image); in the callback.

    What is the right way to update my UI?

    Hi @geestring

  • TreeView with icons displayed incorrectly after expansion (8 JavaFX)

    I have a TreeView with classes CellFactory and TreeCell custom, which has been implemented in JavaFX 2.2 and works perfectly. However, after I upgraded to 8 JavaFX. This tree is completely messed up. If I develop a nodes, there will be duplicate tree nodes in the tree. Here is a simplified version of the source code. If not use a method setGraphic() in class TreeCell, it works fine.

    package test;
    
    
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.TreeCell;
    import javafx.scene.control.TreeItem;
    import javafx.scene.control.TreeView;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    
    
    public class TreeViewTest extends Application {
        private static final Image image = new Image(TreeViewTest.class.getResourceAsStream("icon_datasource.png"));
        
        public TreeViewTest() {
        }
    
    
        @Override
        public void start(Stage primaryStage) {
            BorderPane rootPane = new BorderPane();
    
    
            TreeItem<String> root = new TreeItem<String>("Root");
            
            for (int i = 0; i < 5; i++) {
                TreeItem<String> ds = new TreeItem<String>("Datasource " + i);
                
                for (int t = 0; t < 5; t++) {
            TreeItem<String> tb = new TreeItem<String>("Table " + t);
            ds.getChildren().add(tb);
                }
                
                root.getChildren().add(ds);
            }
            
            TreeView<String> tree = new TreeView<String>();
            tree.setCellFactory(new Callback<TreeView<String>, TreeCell<String>>() {
         
         public TreeCell<String> call(TreeView<String> param) {
      return new TreeCell<String>() {
         @Override
         protected void updateItem(String item, boolean empty) {
             super.updateItem(item, empty);
             
             if (!empty) {
                 ImageView imageView = new ImageView(image);
                 setText(item);
                 setGraphic(imageView);
             }
         }
      };
         }
      });
            tree.setRoot(root);
            tree.setShowRoot(false);
            
            rootPane.setLeft(tree);
            
            Scene scene = new Scene(rootPane, 1024, 800);
    
    
            primaryStage.setTitle("Test");
            primaryStage.setScene(scene);
            primaryStage.show();
        }
        
        public static void main(String[] args) {
            launch(args);
        }
    }
    

    In general, cells are reused as items in TreeView (and some make, and ListViews) as soon as they become visible and invisible. It is perfectly possible for a cell to have an element that is not empty and then it change to empty, as the cell is reused for an empty cell.

    If you have a bug in your code: you need

    tree.setCellFactory(new Callback, TreeCell>() {
    
                public TreeCell call(TreeView param) {
                    return new TreeCell() {
                        @Override
                        protected void updateItem(String item, boolean empty) {
                            super.updateItem(item, empty);
    
                            if (!empty) {
                                ImageView imageView = new ImageView(image);
                                setText(item);
                                setGraphic(imageView);
                            } else {
                                setText(null);
                                setGraphic(null);
                            }
                        }
                    };
                }
            });
    

    You lucky in JavaFX2.2 that the re-use of cell does not seem to affect your bug. improving the effectiveness of the re-use of the cell in JavaFX 8 has exposed the problem.

    Furthermore, it is generally a bit pointless to re - create the nodes each time than updateItem (...) is called (frequently), rather than create them once when the cell is created (much less often). So consider

    tree.setCellFactory(new Callback, TreeCell>() {
    
                public TreeCell call(TreeView param) {
                    return new TreeCell() {
                        private ImageView imageView = new ImageView(image);
                        @Override
                        protected void updateItem(String item, boolean empty) {
                            super.updateItem(item, empty);
    
                            if (!empty) {
                                setText(item);
                                setGraphic(imageView);
                            } else {
                                setText(null);
                                setGraphic(null);
                            }
                        }
                    };
                }
            });
    

    Instead

  • After download of Internet Explorer 8 I can't open all the icons in the control panel. On display is come information that Windows cannot find 'C\WINDOWS\system32\rundll.32.exe '.

    Dear Sir/Madam,

    Yesterday, I downloaded Microsoft Internet Explorer 8 web from Microsoft Download Center.

    After downloading Microsoft Internet Explorer 8, I can't open any icons in the control panel.

    On display is come information that Windows cannot find 'C\WINDOWS\system32\rundll.32.exe '.

    Help, please. Thanks Gene.

    Thanks Gene.

    Dear: :

    Running sfc/scannow will not replace the missing rundll32.exe file.

    Why you post methods that do not work and will be just wasting time?

    Hove you never even seen this problem before, tried to recreate it so that you can actually see, or have you never really fixed?

    Why you learn not what sfc/scannow does and does not do?

    Here is a simple test to you and all your colleagues in the technical support engineer:

    Rename or delete just your c:\windows\system32\rundll32.exe file is "missing".

    Rename rundll32.exe---> rundll32.xxx

    If you started normally, before you can blink, the 'missing' rundll32.exe file quickly and quietly replace the copy in the dllcache folder.  It is the Protection of Windows file in action and you will see something like this in the Event Viewer log system:

    Event type: Information
    Event source: Windows File Protection
    Event category: no
    Event ID: 64002
    Description:
    File replacement was attempted on the protected system file c:\windows\system32\rundll32.exe. This file was restored to the original version to maintain system stability. The file version of the system file is 5.1.2600.5512.

    I beg you to perform this simple test to know how the sfc/scannow:

    Boot your system to Safe Mode or the recovery for the Windows File Protection Console does not run.

    For this example, we will use the system critical file rundll32.exe.

    Rename or delete your c:\windows\system32\rundll32.exe.exe file so the file is now "missing."

    A critical file, is it true?  It is on the list of the file 3498 knows the Protection of Windows and SFC files, but now he isn't.

    If Windows File Protection is running, the "missing" file would be quickly and silently replaced (try to rename or delete it in normal mode and it will be quickly and quietly replaced).

    Now, with your file rundll32.exe missing, start in Normal mode and try to use something like control panel to open something like Power Options and you'll see that familiar message:

    Control Panel
    Windows cannot find 'C:\WINDOWS\system32\rundll32.exe '.  Make sure you typed the name correctly and then try again. To search for a file, click the Start button, and then click search.

    Now you have recreated a common problem with the missing file and seen the error of our own eyes.  A Microsoft Support Engineer will usually suggest running sfc/scannow for this kind of problem, but it will not work or help and you can prove it to yourself, and now you have reproduced the error.

    You follow own advice and run sfc/scannow to the end.

    The rundll32.exe is always had disappeared, right?  Did run sfc/scannow replace the missing critical system file?

    How can he be so sfc/scannow is supposed to replace the missing system files?  This is because it is not this that sfc/scannow does.

    Now you know sfc/scannow does not.  He did not replace your missing system file (don't forget to put your rundll32.exe back so you will have a).

    Now, go to c:\windows\system32\dllcache and delete or rename the file rundll32.exe from there - and it will be gone and not replaced automatically because the Windows File Protection does not seem after this record.

    Run sfc/scannow in full again.

    Replace the file rundll32.exe missing in the dllcache folder, since it handles missing files (not the system32 folder) IS the folder that sfc/scannow.

    Now you know sfc/scannow does.

    Do you need help to know too much about the corrupt system files?

    Since most people do not have a genuine XP bootable installation CD, they will not be able to develop a copy of the file that is missing from the installation CD, they have not.

    After some directions on how to replace the file when the user has no XP bootable installation CD authentic and that will be useful to all.

    If you don't know how to say "I don't know how" and I'll help you.

    You want to inform/warn the poster that SP3 is installed that running sfc/scannow will take a long time for the installation of SP3 CD?

    If you do not have a CD with the same Service Pack as your installation (most people don't), the posters are in for a rough and frustrating time.

    Of course this will help with the detachment of the Ministry of Education of the impossible to try things that don't work, but I thought I'd throw it out there for the 100th time.

  • I just contracted a photographer plan and after download cc2014 Lightroom and photoshop, he displayed a countdown of 30 days trial. Is this fair?

    I just contracted a photographer plan and after download cc2014 Lightroom and photoshop, he displayed a countdown of 30 days trial. Is this fair?

    The 30 day trial is for all those who want to try before you buy.

    If you already bought the plan, you should be able to activate the software within 24 hours after you charge through. If you have trouble activating after this period, you will need to talk to Adobe customer service.

    Here is the link to customer support Contact Customer Care

    downstairs is a "still need help?" button with phone and chat links.

    Good luck

  • I have a Dell Windows 7 after downloading updates crucial sercurity, I get a message saying "Connection to the internet." The display then returns to the logo screen. What can I do?

    I have a Dell Windows 7 after downloading the critical updates, I get a message saying "Unable to connect to the internet."  What should I do?

    Hello

    1. Once you get this error message?
    2. are you able to browse the internet using your internet browser?

    Step A.
    Please check if you are facing the same question when working in mode safe mode with networking.
    a. restart your computer.
    b. when the computer starts, you will see your computer hardware are listed. When you see this information tap the F8 on your keyboard key repeatedly until you are presented with the screen Windows 7 Advanced Startup Options.
    c. using the arrow keys, select the desired option of Mode without failure.
    d. press the Enter key on your keyboard to boot mode safe mode of Windows 7 with networking.
    e. when Windows starts, use check and Internet explore if the problem persists.
    For more information, refer to the article below.
    Troubleshooting in safe mode
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshooting-problems-while-in-safe-mode

    Step B.
    If the problem exists not in Mode safe run mode startup minimum troubleshooting to find the root cause of the problem.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: When the diagnosis is complete, don't forget to reset your computer to normal startup. Follow step 7 in the above article.

    I hope this helps.
  • page displayed incorrectly

    From time to time various web site displayed incorrectly - today, it's Facebook http://www.facebook.com/home.php?ref=hp but it another day it was my pages of the Bank.
    Generally, it corrects after the re - start the computer.
    Please advise how to stop what is happening, or correct the problem when it occurs.
    I checked simple things like the latest drivers display, Java, Flash Player, etc.. The add-on only it's a show like a problem is Acrobat and that seems to be because I have a race Acrobat 9 Standard and the last update is for Acrobat Reader 10, but the same problem happens when I run Firefox in safe mode.

    Press CTRL + 0 (zero) to Reset the Zoom

    Websites look wrong

    Check and tell if its working.

  • After downloading IE8; Smart screen filter not available; scroll locks; Restart computer warning on the computer to be switched on must restart; pop-up-stuck in tools has a red circle with a slash;

    After downloading IE8 the following has occurred and is ongoing.1. After the computer if initialization is complete it is a box indicating the computer must be restarted. 2. in the task bar, there is a white window with a red x'd circle outside. When you rest the mouse on the space of States of information; The SmartScreen filter can not check this website because the Microsoft online service is temporaily unavailable.3.Scrolling hang up issue where you are.4.Can is no longer display images or images on attachments to emails. 5 lost all my info auto-fill.

    Quote your full version of Windows (for example, WinXP SP3;) Vista 64 - bit SP2; Win7 RC. Win7) when you post in a forum or a newsgroup. Please do it in your next reply.

    The behavior persists after uninstalling IE8?

    How to uninstall or remove Internet Explorer 8
       http://support.Microsoft.com/kb/957700

    What application or antivirus security suite is installed and your current subscription?  What anti-spyware (other than Defender) applications?  What third-party firewall (if applicable)?  Who were these applications that run in the background when you installed IE8?

    A (another) Norton or McAfee application has already been installed on this machine (for example, a free trial version which is preinstalled when you bought it)?

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Photoshop CS6 not found after downloading and putting in the serial number

    Photoshop CS6 not found after downloading and putting in the valid serial number. Only the extended version will appear as available. How I just downloaded photoshop CS6 only?

    Thank you!

    If you follow the 7 steps you can directly download a free trial here: Download Adobe CS6 tests: direct links (without Assistant or Manager) | ProDesignTools

    and activate it with your serial number.

    If you have a problem from the download, you follow the 7 steps, or your browser does not accept cookies.

    the most common problem is caused by failing to meticulously follow the steps 1, 2, and/or 3 (which adds a cookie to your system, allowing you to download the correct version of the adobe.com site).

    failure to obtain this cookie translates into an error page displayed after clicking on a link on prodesigntools.com or initiates the download of an incorrect (e.g., current) version.

  • No visible model header images after download

    Thanks in advance.

    • Using Dreamweaver CS5 on a Macbook Pro 10.7.5.  GoDaddy hosting.
    • Novice of DW however I am using a book to help me along but am stuck.
    • Because I am new to this, I use a VERY simple model.
    • Link to my site: http://www.lifeafterpharma.biz
    • I find this site and other responses

    PROBLEM:

    My model is great, when I saw in all browsers, but after I download, photos in the body of the site are not displayed and NONE of the images to header appears.

    I made certain that I uploaded all the photos.

    This is supposed to look like this:

    Original model:

    Screen Shot 2013-10-24 at 8.26.42 AM.jpg


    After my changes and this is the image that I see when I use the DW browser preview.

    Screen Shot 2013-10-24 at 8.29.38 AM.jpg

    This is the model of origin and what the site ACTUALLY looks like any browser after downloading.  When I download my updated site, my photos newly added will appear but none of the model images appear.

    Screen Shot 2013-10-24 at 8.30.57 AM.jpg

    Thank you in advance for your help!

    You have not at all a DW 'Template '. You can use any available pre-made that you like and just save under as you did, you just need to make sure that you link to the appropriate locations when you change directories in your site.

    The problem you saw was as a result of an incorrect folder name. Your server is case-sensitive where your operating system is not. If you link to Images/file.jpg when your file is actually called images with a tiny I, it will work locally but pause when uploaded to the server.

  • Compaq Presario 2029UK: display crashed after update to windows 10

    Hello

    I just upgraded to windows 7 to windows 10 and my screen is crushed, regardless which data resolutions I choose.

    When I look at the map it reads as follows: Microsoft Basic graphics card.

    I checked for updates and two windows and display card driver back the message that they are up-to-date.

    When I go to the HP site to download a driver, the only driver to my PC is a lightscribe one. Nothing for the graphics card.

    Does anyone know whre I can download a driver to solve the problem, or if there isn't one, how can I get my resolution to be what it was (I don't know what it was but I know that it is not available now).

    My screen is a LG Flatron E1940-S-AP

    Thanks in advance

    Tog

    Hello:

    The problem you are having is that Windows has installed a generic graphics driver, so you can see the screen and not much more.

    There is no w8.1 or W10 graphics driver for the graphics card to your PC.

    Your model is a desktop Compaq Presario Media Center SR2029UK PC?

    If so, see if you can manually install the latest Nvidia graphic driver and run the W10.

    First of all, download and install this free utility for files.  The 2nd listed file is 64-bit.

    http://www.7-zip.org/

    Then download, save, but do not run this graphics driver.

    http://www.nvidia.com/download/driverResults.aspx/82758/en-us

    After downloading the above graphic driver file, right-click on it and select 7 - Zip from the list of options.

    Have 7-Zip extract of: and leave it to decompress the file in its folder.

    Go to Device Manager, and then click to expand the category of device of graphics cards.

    Click on the graphics card of Microsoft Basic.

    Click the driver tab.  Click on set to update driver.  Select her browse my computer for driver software option and find the driver 7-zip created folder.

    Make sure that the include subfolders is selected and see if the graphics driver installed.

    Restart the PC.

  • Cannot find itunes files after download run

    After browsing in the Apple Support site and locate the download page for the latest version of iTunes, click on 'Download' - I have the following question: "do you want to save this file" that I click on SAVE. Once, I try to find the file... I'm unable to locate him. The area of downloads of Firefox does even not display that a download has occurred. How to install itunes?

    Search your files for iTunes PC * Setup.exe.  If you don't see anything, try to download again using one of these direct links:

  • "Confirm open after download" is no longer available in Windows 7. Now what?

    I use a piece of software to display in a glass case.  I use it to view Powerpoint files, but when files are run, instead of running like a slide show, I get a window that says "Do you want to open or save this file?" and a check box "always ask before opening this type of file.

    To resolve this problem in xp, you'll sign > Folder Options > File Types > Powerpoint > show and uncheck the box that says "Confirm open after download".  At startup, the Powerpoint file then begins as a slideshow.

    In Windows 7, the folder options method is not available.  So, how can I get the same result.  There is no option in Powerpoint to do this.  I think that a registry hack is required.

    Noel

    Please see this page:

    Reset him always ask before opening this Type of file setting

    Ja.
    --
    HAL Hostetler, TCE
    Engineer senior/UPDATED--MS MVP-Print/Imaging - WA7BGX
    www.kvoa.com - KVOA television, Tucson, AZ.
    Live Hot Licks - www.badnewsbluesband.com

Maybe you are looking for

  • Question of Motherobard on the Satellite X 200

    I got my X 200 - 20 years for about 18 months and a few weeks ago, he broke. It turns out that the motherboard itself fried somehow... overheating, short circuit... I don't know. anyway I am in Thailand at the moment, and the Toshiba Thailand says it

  • HP pavilion dv4

    My computer went black and now the caps lock flashing the NumLock and I cannot find something on YouTube that would help I checked the ram. Just before it went black, I downloaded steam. Please help, or I could buy a new computer

  • last update of windows install loops to 3 of 3 0% complete

    original title: windows install update last Running vista basic and installed latest windows update. install a loop at 3 3 0% complete "." Restart in any safe mode option does not. Pressing F8 also does nothing. Impossible to access the control panel

  • Can I put my SATA drive on my PC?

    I have an old HP Pavilion (very old) with 80 GB SATA a1220in. Yes, you think I do with such an old PC, but it is appropriate for my use, as I'm not a hardcore gamer or anything. So, what I want to ask is, can I put my hard drive on this PC? It's 80 G

  • When you try to use the "Word 2007 Content Control Toolkit", receiving the message "a device attached to the system is not".

    Original title: a device attached to the system is not functioning I am trying to use the "Word 2007 Content Control Toolkit" Windows8 6.2.0092 When you click the shortcut on the desktop, I get the error as indicated above. It seems to work on anothe