Creating Pages that work well on all Types of layout (Desktop, Mobile, Tablet)

Hello

I was reading the Adobe employee responses to a question that someone asked you to get a sensible width that works on all layouts (including the desktop, Tablet, Mobile) and I read your explanation of resizing of the browser window a little smaller until you cross a breakpoint, then resize slightly larger then it switches back on the smallest width that belongs to the next breakpoint plu followed by ScrollBar control horizontal and checking the items, for sensitive post and sizing settings etc. I checked and double checked all troubleshooting suggestions and I'm still not find what is causing the error.  Some of the pages on my site from work, some do not, and I can't find the common denominator that causes this problem of width sensitive.  The page looks good on a desktop computer, but it is to slap on a mobile device; I just want one suitable for a page-all and I've never had as much trouble with it before.  It is a very simple page and short (well, I'll have the same problem on a few pages - very short and simple), you think you can take a look at my .muse file and let me know what I'm missing? Time is a huge factor here, can anyone help me quickly?  The temp link is: HOME
I appreciate your time!  The first page that is having this problem is the homepage.

Hi @bpmcelwaine,

Sorry I have not been on in a few days. I take a look at your file.

I read that you have inherited this file to someone... it's fun!

There are a few things it could be:

#1 change the width of your Web site to 1000px because honestly your design starting to break at the level of the mark 960px, then this where your first breakpoint must be

#2 that the navigation is on every page, this really should be on a Master Page and breakpoints must be added in there. (Ditto for the footer)

#3 after you have done that delete pages. You can then add another breakpoint in your Master around 550. Move navigation where it should be and the PIN properly.

#4-ensure that all images and text on your pages are on "width and height sensitive."

#5-after doing this, the point 960 on your home page, you may need to move the text to the right side of your slideshow slot your slideshow, Ditto for the text boxes with the image. Basically, you need to simply close the browser width slowly and see what needs to change. Sadly, you have to work your way through the pages and do this everywhere. These are things that probably should have been made when the site was built.

#6-the white boxes behind the slideshow and the text/images are difficult to treat because Muse does not pitch well. You might consider losing the bottom grey and changing to white background in order to mitigate this problem.

I hope this helps!

Tags: Adobe Muse

Similar Questions

  • Product that works well to choose Select the pages to an existing PDF and copy to a new PDF file?

    Product that works well to choose Select the pages to an existing PDF and copy to a new PDF file?

    Hi Gregh65396892,

    You must use Acrobat, you can download a free trial of 30 days from the following link: https://www.acrobat.com/en_us/free-trial-download.html

    After downloading and installing Acrobat, you can open both files in acrobat with enabled page thumbnails view, select the pages in a PDF document, then drag them to the pane "thumbnail" file pdf of another, and these pages will be copied in the second file.

    Kind regards
    Rahul

  • Is there a list of graphics cards that work perfectly with all the new features of Creative Cloud? I want to update my graphics system and want a model that will be obsolete when the next CC updates the roll autour.

    Is there a list of graphics cards that work perfectly with all the new features of Creative Cloud? I want to update my graphics system and want a model that will be obsolete when the next CC updates the roll autour.

    The "General" cloud requirements are quite low... so you have to ask in the forums of specific program for a special features used by individual programs

    For video editing Premiere Pro, go read it in community: Forum Hardware | Adobe Community

  • Can I create pages that only authorized users can access?

    I need to create pages that only authorized users can access, is - it possible to do away with the Muse?

    Site manager should be included in section admin, please give me the url of the site to take a peek.

    Regarding the other question, you want to create an intranet site for employees of the company or site of secure content where users would have to login before they can access the content?

    If its with intranet then it would not be possible with BC because that website hosting in British Colombia will be on the web and may not be restricted on the intranet site, you can create the site of Muse and upload to the server of third party or company where it can be used as intranet site.

    With a secure content, you can secure pages and the content created on end of BC and use the connection on the home page.

    Thank you

    Sanjit

  • Problem of SQLite in os 5 but that works well on os 6

    Hi all!

    I have a problem with my code while running under Curve 8520 with os 5.0.0.1036 (last available for 8520). I use a sqlite database, and all my code works fine in os 6 in a torch 9800.

    But the 8520, I get an exception sying that I try to write in a database read only.

    Here is my code to initialize the database:

    private DbManager() throws Exception
        {
            // Determine if an SDCard is present
            boolean sdCardPresent = false;
            String root = null;
            Enumeration e = FileSystemRegistry.listRoots();
            while (e.hasMoreElements())
            {
                root = (String)e.nextElement();
                if(root.equalsIgnoreCase("sdcard/"))
                {
                    sdCardPresent = true;
                }
            }
            if(!sdCardPresent)
            {
                this.db = null;
                UiApplication.getUiApplication().invokeLater(new Runnable()
                {
                    public void run()
                    {
                        // TODO : translate
                        Dialog.alert("The application requires a SDCard to store the history. Without card, your history will not be stored.");
                    }
                });
            }
            else
            {
                dbLocation = "/SDCard/databases/"+BUNDLE_NAME+"/";
    
                // Create URI
                URI uri = URI.create(dbLocation + DB_NAME);     
    
                // Open or create a plain text database.  This will create the
                // directory and file defined by the URI (if they do not already exist).
                db = DatabaseFactory.openOrCreate(uri);  
    
                // Close the database in case it is blank and we need to write to the file
                db.close();
    
                // Open a connection to the database file
                FileConnection fileConnection = (FileConnection)Connector.open("file://" + dbLocation + DB_NAME);    
    
                // If the file is blank, copy the pre-defined database from this
                // module to the SDCard.
                if(fileConnection.exists() && fileConnection.fileSize() == 0)
                {
                    readAndWriteDatabaseFile(fileConnection);
                }         
    
                // Open the database
                db = DatabaseFactory.open(uri);
            }
        }
    

    And here is the statement that works with os 6, but not with the os 5:

    public Integer create(Table table)
        {
            long id = -1;
            try
            {
                Statement statement = this.db.createStatement("INSERT INTO ZTABLE(" + Table.TABLE_PK +
                        "," + Table.TABLE_LONGITUDE +
                        "," + Table.TABLE_DATE +
                        "," + Table.TABLE_LATITUDE) VALUES (null,?1,?2,?3)");
                statement.prepare();
                statement.bind(1, table.getLongitude().floatValue());
                statement.bind(2, table.getDate().getTime());
                            statement.bind(3, table.getLatitude().floatValue());
                statement.execute();
                statement.close();
    
                // Retrieve the auto-generated ID of the item just added
                id = this.db.lastInsertedRowID();
            }
            catch(DatabaseException dbe)
            {
                CommonTools.errorDialog(dbe.toString());
            }
            return new Integer((int) id);
        }
    

    Is there a question about the 5 operating system and functionality of sqlite? Or y at - it something wrong in my code that avoids a correct behavior?

    Thank you very much in advance for your answers.

    I use SQLite Database Browser on OSX:

    http://sourceforge.NET/projects/sqlitebrowser/

    never had any problems using db BB OS5 or OS 6

  • Your linux desktop that works well with the fuser unit - is - it?

    I don't know anyone who runs linux on Fusion guest is aware that everything in 3D acceleration works (at least in Ubuntu) window of vmware Fusion to unity mode works not by 3D. And that since all popular linux distributions moves to 3D desktop computers we are practically forced to stop or mode full screen.

    My question is: someone found a good 2D for linux desktop computer that works with the fuser mode, and is also an up-to-date distribution?

    There are a few suggestions on an old net http://communities.VMware.com/message/2139647#2139647 to use With Mate Mint, but who had serious problems for me.

    I'm looking for basically two things.

    First of all the possibility to use the window of the unit mode.

    Second, the possibility of placing several editable launch icons in a home/toolbar etc station in Linux comments so I can open two different documents side by side, very quickly (which was another failure of Mate).

    Specifically, I'm eager to open two sets of accounts in Gnucash. This worked wonderfully in Ubuntu 10.04, and while it is tempting to return 10.04 reached EOL in April 2013 - he is also packing a old version of Gnucash that I'm used to using.

    (btw a different alternative, using the OSX of Gnucash package: works, but the heartbreaking text is horrible, that is why the desire to run in a Linux VM.) MacPorts/Fink is also out because it takes so long to compile whenever there is an update. Want a binary).

    Any suggestions?

    Confirmed to work with xubuntu 14.04.  Note, you need to install vmware tools and restart the virtual machine for this to work.

  • Why has a program that worked until today, all stop working pageburst 6.1, I need this program to make my Sam work help

    Hi I have a program that worked until today pageburst 6.1 for my school work and it just enough work I removed it and redloaded it, but still doesn't work don't not any ideas?  Thank you

    Hello

    There seems to be several ways to get support for this program.

    Start here: http://www.coursewareobjects.com/objects/evolve/E2/book_pages/technical_support/student.php

    Don

  • I have some videos .wmv on a Web page that work in all the

    major browsers (including Safari on a Mac), but not Safari on Windows. I downloaded and installed (as I know), Quick Time and Flash plug-ins for Safari (Windows), but the Web page always videos and, in fact, is always asking me to plug-ins.

    I use Windows Media Player 12 and on my desk that's what the .wmv files will open in. Now, if I open Safari, then look for the folder on my desktop and open the same .wmv file that I have on the Web page, the film plays in Safari.

    Someone has an idea of what may be the problem?

    Thank you.

    Blue

    Hi blue,

    The question you posted would be better suited in the Apple Support Forums. View the query in the Apple forums for assistance. Please see the links below.

    http://www.Apple.com/support/

    https://discussions.Apple.com/index.jspa

    I hope this helps.

    Back to us for any problem related to Windows. We will be happy to help you.

  • Query that works well as a toad, but not in forms 6i

    I now coding at the time press the triger

    declare
    CURSOR C1 (year number, month number) IS
    SELECT ITM_NO, ITM_NAME, XAQ QTY XAQ * TP VAL, gp
    Of
    (
    Select ci.itm_no ITM_NO, ci.itm_name ITM_NAME, cpg.group_id gp, xaq, ALLIED. CORP_PRIC_TP (ci.itm_no) TP of
    (
    Select prod_no, sum (xaq) * 1 xaq
    Of
    (
    Select prod_no, sum (nvl(xrd_sqty,0)) Xaq
    of allied.mrk_01_02
    where year = f_prd = month and year
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    Prod_no group
    Union of all the
    Select prod_no, sum (nvl(xrd_sqty,0)) Xaq
    of allied.mrk_02_02
    where year = f_prd = month and year
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    Prod_no group
    Union of all the
    Select prod_no, sum (nvl(xrd_sqty,0)) Xaq
    of allied.mrk_03_02
    where year = f_prd = month and year
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    Prod_no group
    Union of all the
    Select prod_no, sum (nvl(xrd_sqty,0)) Xaq
    of allied.mrk_04_02
    where year = f_prd = month and year
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    Prod_no group
    )
    Prod_no group
    ) A, allied.corp_inv, c01, c02, GIC, vpg allied.v_prod_grp allied.corp_prod_group allied.corp_01_02 allied.corp_01_01
    where this .itm_no = a.prod_no
    and this .itm_no = c02.itm_no
    and c01.grp_id = c02.grp_id
    and in c01.grp_id (55,56,57,58,59)
    and vpg.prod_no = ci.itm_no
    and vpg.group_id = cpg.group_id
    )
    where XAQ <>0;

    Begin
    delete from fiaz.tmp_topten_prod;
    because me in c1(:year,:month)
    loop
    insert into fiaz.tmp_topten_prod
    values (i.itm_no, i.itm_name, i.QTY, i.Val, i.GP, 0);
    end loop;
    standard.Commit;
    message ("inserted into temp'");
    exception when others then
    message (dbms_error_text);
    message (dbms_error_text);
    End;

    Same works of query (as used in cursor c1) fine in Toad but gives bad result of forms... and the problem is xaq field i.e returns incorrect quantity...
    I guess that the union clause does not work in this situation...
    Please suggest me the appropriate changes in the query to work much of the form as well...
    combination: Forms 6i, Oracle 8.0.6
    Kind regards
    Usman Afzal

    Did you get the grant on your mrk_01_02 of the table through a role? If so you would need a direct subsidy:

    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:1065832643319

    see you soon

  • I have a number of games of cards, Word and puzzle that works well with XP but will not work on Windows 7.

    Is there a download of XP compatibility that could solve this problem?

    You can try the comaptibility mode. See: http://windows.microsoft.com/en-US/windows7/Make-older-programs-run-in-this-version-of-Windows for the method.

    If you use Windows 7 Professional, ultimate or enterprise, you can try to use XP mode. See:
    http://windows.microsoft.com/en-US/windows7/products/features/windows-xp-mode for more details.

    If the games are 16-bit and you are running a 64 bit version of Windows 7, the games will not work unless you use an emulator.

    All the answers and suggestions are provided by an enthusiastic amateur and are therefore no explicit or implicit guarantee. Basically, you use my suggestions at your own risk.

  • Can't do a TV picture on my HP 2006 Media edition by using my cable coaxial antenna, I split the signal out that works well with ordinary TV

    I am in a rural area of the United States and have an antenna connected to a digital box with a signal strength of 73% to my regular TV on which I get 16 channels.  The radio works fine in the Media center, but I can't get the TV stations.  I have divided the coaxial antenna power and connected it to the coaxial video on the back of the CPU.  I have a 64 x 2 dual core AMD Athlon {tm} processor 4200 +.   When I get to the media center TV auto configuration screen in place it scans and said then not detected no TV signal.  If I configure manually using antenna and then go to the screen "digital land" and hit next, the program stops working and although it shows it running in the Task Manager it will not give more. I guess that's because it detects no signal from the antenna.  I'm stumped and would apprectiate all opinion.  Finally, I would like to power TV live stream to my regular TV of the CPU, but going to cross this bridge after receiving a signal from TV to the CPU.

    Hello

    I suggest you according to the question in this forum and check if that helps:

    http://experts.Windows.com/f/

    It will be useful.

  • I have a Dell Dimension with external speakers that worked well until about two weeks ago, when the volume has become about 50% of what it was.

    Next week, the volume got lower and lower, until full volume it is than a bare whisper the sounds and audio.  I checked the Dell and Windows settings and tests and they all report the device working properly.  I bought a new set of speaker - same results.  Theere are no settings mute.  I have no volume icon in the taskbar and when I request I get the message that the sysvol.exe file is not available.  Does anyone have an idea for the fix?

    Hello

    · What is the service pack installed on the computer?

    · Do you remember all the recent changes on the computer before the show?

    Follow the steps listed in the link below: no sound in Windows: http://windows.microsoft.com/en-us/windows/help/no-sound-in-windows

    See also the link that has steps to add the volume icon in the system below bar: Volume icon is not displayed in the notification area, and you may receive an error message when you try to add: http://support.microsoft.com/kb/319095

  • will be a site created using muse work well with Yahoo India accommodation?

    my old website was built using yahoo hosting web design tools and I plan on building a new aid of Muse. would like to know the success rate of the others who have created Web sites using muse and hosted their sites on Yahoo India

    Hello

    Adobe Muse is a Web site, design of software that you can use to create websites without coding. We have built-in FTP option, you can use to download the third-party site hosting and ideally you should not encounter problems if you download the site Yahoo hosting.

    Please note that, if you use widget form provided in muse with third party hosting, you must make reference to: https://forums.adobe.com/docs/DOC-3581 to ensure that the form works fine.

    You can also find this article helpful to know how you can download third party hosting site: http://helpx.adobe.com/muse/using/uploading-site-third-party-hosting.html

    Let me know if you need additional assistance.

  • Flash wont 'register' on XP sp3 using IE7 but that works well on Safari

    Hello

    I lost flash on my desk, that I don't even remember how long ago. I just downloaded safari and used for things that need flash as youtube and others.

    I really want to solve this problem, so it does not work with Internet Explorer again, however. I read several help letters posted and tried to uninstall and reinstall and reboot several times and search the stop bit for all sorts of things but no luck. When I go to the control panel and click on the flash icon it says flash is installed for safari, but not for IE safari version is 10.3.181.34 when I do the installation for IE, it works 53% and fails and says "error unable to save. I ran malwarebytes, ccleaner and avg and avast antivirus, thinking there had to be some kind of malware, but no difference.

    If someone take me by the hand and tell me step by step what to do to diagnose and fix this problem I would be estatic. So, thanks in advance for any help offered.

    Jim III

    Sorry about that; I forgot the download link is incorrect; Download the file from http://kb2.adobe.com/se/cps/494/cpsid_49419/attachments/reset_fp10.zip

    (I will alert you tech services to fix this link of writing).

  • Reinstall a game that worked well on my computer hp laptop dv 5

    I'm trying to install a game called "commandos beyond the call of duty", which, initially, was installed, but when I tried to reinstall it after it is deleted, it is not installing.

    You get a few errors... anything?

    ...

    It's cool, but little old game. It was created for Windows 95/98. You try to run Setup in compatibility mode:

    When you put a CD AutoPlay Windows appear > select open folder to view files > you will see the files stored on CD > right click on setup.exe > Properties > compatibility tab > check run this prorgam compatibililty mode for and choose... Try Windows 98 / Windows ME , also check the run this program as an administrator option in the privilege level section > press OK > right click on setup.exe > run as administrator

    I hope that helps... If you need help more far just write.

Maybe you are looking for