How to pass the album Live view mode Design while working on a fluid page? The drop down option isn't there as if it was on other pages.

How to pass the album Live view mode Design while working on a fluid page? The drop down option isn't there as if it was on other pages.

You can not.  If you want to work with FGLayouts, I recommend drop back to the Release of June 2014 CC before they took the Design of FGLayouts mode.

You can get the version of June 2014 DW direct links below:

Win: http://download.adobe.com/pub/Adobe/Dreamweaver/WIN/CC/Dreamweaver_14_LS20.exe

Mac: http://download.Adobe.com/pub/Adobe/Dreamweaver/Mac/CC/Dreamweaver_14_LS20.dmg

Solution #2: Modify your CSS FGLayout file by adding an X to the code as shown below.  This trick DW into thinking that it is a normal page, so you can use the new Design view.   NOTE: Do not change the CSS in design Panel.  Do it in Code view.  Record.  Close DW.  New launch DW.

/*

Properties Grid Dreamweaver fluid

----------------------------------

DW-num-CLO-mobile: X4;

DW-num-CLO-Tablet: 8;

DW-num-OCOL-Office: 12;

DW-gutter-percentage: 25;

=====================================

Nancy O.

Tags: Dreamweaver

Similar Questions

  • How to display the drop-down list box in MS excel by using labview report generation toolkit? pleasepost code block diagram?

    How to display the drop-down list box in MS excel by using labview report generation toolkit? Please post the block diagram of the code so that I can able to generate from the drop-down list box in excel with the menu drop-down...

    Like this. (edition, use the reference forms instead of the reference to the worksheet)

    Ben64

  • How to add the drop-down filter list in a dashboard button/menu

    Hi all

    I created a custom dashboard related activities, but I don't know how to put the drop down filter the list (for example, exercise & fiscal month) on top of the dashboard as Pipeline analysis (report SOD predefined) as well as the button 'Go '.
    Clues?

    Thanks in advance

    Hello!

    In the page analysis of the design, you must create a new dashboard guest.
    Go to Design Analisys, select a report type (doesn't matter which) e.g. addresses of account (1).
    Then on the top left of the page, you will see 3 icons, and the third is new dashboard fast....

    Once you have created your command prompt, you can save it as the other reports, and you can add it to your dashboard.

    I hope this will help, do not hesitate to ask for more!

    Max

  • How to organize the drop-down menus page in Web analysis report

    Hello Experts!

    I created a Web based on my Esssbase cube analysis document. This document contains a grid with 7 drop-down menus. All dropdowns are in a line from the top and they are narrowed so that all they are part of line 1 in the screen and I can't see the full names of the members in a drop-down list. So I need some advice on how I can arrange drop-downs in my Web analysis report so that I can see the full names of members at the opening of the drop-down list? Thank you very much!

    Hello
    Try to open the report in designer Mode and adjust the width.

    Concerning
    SNK

  • How to fill the drop-down list components installed?

    I have installed Eclipse and the blackberry for eclipse plugin that includes the component pack 4.5.0. I have installed all of the components listed on this page: http://na.blackberry.com/eng/developers/javaappdev/javaeclipseplug.jsp. The versions 4.2.1 and 4.3.0 are zip files that I add to Eclipse by using the software update-> add the site-> archive. Version 4.6.0 and 4.6.1 4.7.0 are exe files that settle in the location C:\Program Research In Motion\BlackBerry JDE component Package 4.x.x.

    In the folder plugins on the box, I see version 4.3.0 and listed 4.5.0 4.2.1. When I go on Blackberry JDE-> installed components and click the drop-down list box, the only pack component that I see is 4.5.0. How do the other components packs appear?

    Well it's resolved, I guess. After about 3 hours, the software updates-> add the site-> repository for the Blackberry update works. When I installed the components as a result, they appear in the drop-down list. It's a little confusing, because I already tried this at least 5 times and each time before eclipse was a java error when doing this.

  • How to use the drop-down list box to fill in a text box

    I'm a beginner when it comes to Java Script.  I have seen a lot of different discussions, look at a lot of articles "helping" Acrobat 9 and Java Script, but only to be left confused and dazed.  I hope someone can tell me how to write a script that fills a text box that sits on my form with the value of exports of the selection in the combo box...

    Thank you

    If you want that the read-only text box, simply set with the following custom calculate script:

    Set this field to the value of the drop-down list box

    Event.Value = getField("combo1").value;

    but replace "combo1' with the actual name of the combo box field.

    If you want something else, post again with more information.

  • How to get the drop-down menus to insert the time in format 24 hours a day instead of 12-hour format?

    Need help with form that inserts a time defined by the user in a new record using the drop-down list three menus, php 5.3 and mysql on OS X system.


    I have a problem of formatting the values inserted in 12-hour am/pm time format in mysql time 24 hours format. I don't know how or where to do the necessary changes. I use a Web script that works as required, with the exception of conversion on the issue of the time.


    I tried to format time in mysql using DATE_FORMAT and TIME_FORMAT, change formatting using php, using another function to add 12 hours, using advice from various forum posts, using a hidden field and reorganize the content of the page, but I am unfortunately too inexperienced and awkward in the areas involved to shoot successfully it all together; Instead, I just managed to confuse me and make hash of the encoding.


    The code on the page works (inserts in the mysql database) but not inserts do not pm time. The mysql field is a basic time with a default value of 00:00:00. I have need the date as the time lists are especially necessary for planning purposes unrelated to any specific date.


    I would appreciate help, ideas, pointers or ideas is at work. It is a new area for me. Thank you.

    Parts of code:

    $hours = ' < select name = "time" > "'. ' \n';"

    $minutes = ' < select name = "min" > "'. ' \n';"

    function check ($num)

    {

    If ($num < 10 & & strlen ($num) < 2)

    {

    $num = '0'. $num;

    }

    return $num;

    }

    for ($i = 0; $i < 13; $i ++)

    {

    $hours. = ' < option value = "' check ($i)." » » >'. $i. "< / option >". » \n » ;

    }

    $hours. = "< / Select >.

    for ($i = 0; $i < 60; $i += 5)

    {

    $minutes. = ' < option value = "' check ($i)." "" ">"check ($i). "< / option > '. » \n » ;

    }

    $minutes. = "< / Select >.

    If (isset($_POST['submit']) & & $_POST ['submit'] == 'Submit')

    {

    echo ' the time that you entered is: ';

    $hour = $_POST ['hour'];

    $min = $_POST ['min'];

    $ampm = $_POST ["ampm"];

    echo date (' h: i a ", strtotime ($heure.': '.)") $ min. ' '. $ampm));

    echo "< hr > ';

    }

    ? >

    Insert and query the Recordset:

    $insertSQL = sprintf ("INSERT INTO endtimelist (EndTime) VALUES (%s)", GetSQLValueString ($_POST ['time']. ':'.) ") $_POST ['min']. 00', 'date'));

    $query_rsEndTimeList = "SELECT EndTimeListID, EndTime, TIME_FORMAT (endtimelist.» End time, "(% h: %i %p ') AS EndingTime FROM endtimelist ORDER BY EndTime ASC"; "

    Form:

    < form action = "<?" PHP echo $editFormAction;? ">" method = "POST" name = "endtime" id = "endtime" >

    Time: <? PHP echo $hours;? >: <? PHP echo $minutes;? >

    < select name = "ampm" > < option value = "am" selected = "selected" > AM < / option > < option value = "pm" > AM < / option > < / select > < br >

    < input type = "submit" name = "submit" value = "Submit" >

    < input type = "hidden" name = "MM_insert" value = "endtime" / >

    < / make >

    There is nothing wrong with your brain. You did it very well. Is to forget the details such as 12 noon and midnight, causing stupid errors of logic in the code.

    The book, I plan to write will be about Dreamweaver and PHP, covering many aspects not addressed is not my course books. I expect to publish by May next year, but there have been unforeseen delays, it is not likely to be interrupted until June or July. Writing a book is a tedious exercise.

  • How to create the drop-down list box

    Are you able to create a drop down box in Muse? For example, I want someone visits my site have the ability to configure a package by choosing options in the drop-down boxes.

    Here is the exact example that I'm looking.

    http://www.idwholesaler.com/PrimacyExpertSSSystem.html

    Click the OPTIONS tab. You will see the drop-down menu for options, that you must choose boxes.

    THANKS IN ADVANCE!

    This option is not yet available in Muse I'm sure they are working.

    You can use radio buttons.

  • How to restore the drop down from the menu bar at the top that contains bookmarks?

    I tried to remove the Yahoo toolbar, when I turned off accidentally unrolling of the menu bar at the top that contains bookmarks. How to restore the menu drop-down?

    Is s.o.

    In addition, what happened to the file, edit and view menus? if you want to have the menu bar displayed normally.

  • How to create the drop-down list Actions?

    Hello

    I was wondering how to create this list drop-down list action in Adobe Livecycle when I choose a list item, it shows some fields of text under it.

    That is to say.

    Im having a drop down list which is having 2 1 list items is Yes and 2nd is no.

    Untitled.png

    Now, if I want to show some fields of text under it when I choose Yes and hide certain text fields when I choose No, what should I do?

    I also wanted to know that how to display the text fields in the pop-up box when I choose Yes.

    Thanks in advance!

    When you change the layout of a document in some way, you must save the PDF in dynamic PDF. Your currently saved him in the designer as a static pdf that's why nothing happens. Just do a file-> save as and select Dynamic PDF from the list. When you preview it the next time it will be set dynamic pdf.

  • How to populate the drop-down list

    Hi all
    I created a drop-down list field in the user form, can someone tell me how to fill in OIM design console

    Hello

    You must after steps.

    1. create a search by going to the definition of research for example Lookup.org.emp.type.
    2. Add the code and decodes the value by clicking on Add. These values will be filled in the combobox.
    3. go to the UDF then go to the Properties tab. You select UDF created and then click Add Property.Then select Code Lookup in name of the property, and then in value, you put the search that you created.

    Let me know if you still need anything.

    Concerning
    Nitesh

  • How to create the drop-down list?

    I tried to find a way to reach this menu drop down animated and I can't.  I'm somewhere between (animation using the accordion panel and the substitution effect the composition).

    Any help would be appreciated.  It is the example of what I'm trying to achieve.

    Retired military community Washington DC | Hawks landing

    Thank you!

    Hello

    You can create the same drop-down list using the ToolTip Widget composition but the only way that you can add on turnover and deployment will be discoloration.

    Please check the attached file. http://adobe.ly/1IxxKfO

    Another alternative is to create a lively border animation and use it in Muse as a file OAM.

    Concerning

    Vivek

  • How to create the drop-down list, as in the generator of the APEX?

    Hello

    I use the theme 2. I would like to create a drop-down list as in Apex Application Builder, where, on top, you see home | Application Builder | SQL workshop. When you click on one of them, a menu drops down.

    Is it possible to do with standard APEX or I have to do some Javascript coding?

    Tamas

    Hello
    I have them tested again, as I'm new to apex and that I am in the process of upgrading my knowledge by reading books and documentation on the apex, but you may be interested in these plugins
    located @ http://www.apex-plugin.com/

    * [url http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/warp11-css-menu_85.html] Warp11 CSS Menu *.
    * [url http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/drop-down-menu_60.html] Drop-Down Menu *.
    and my favorite
    * [url http://www.apex-plugin.com/oracle-apex-plugins/region-plugin/jquery-menu_82.html] jQuery Menu *.

    Hope this helps

    Concerning
    Jean-Yves

  • pass the drop down menus

    Not sure I'm even using the correct teminalogy.
    I want to create a list of programs when the mouse user on the text "programs" I want a submenu to become visible, so they can click on the link for this program. As the net asset value has bar located at the top of the Adobe site. I can do with Dreamweaver 8 all I can find is the menu of rerouting and I don't want that ugly drop-down list. I just want to see the text "programs", then when the mouse over a text list down for them to click on to go put a link. And with the insert navigation bar, he wants a graph to connect to each program or item list?

    Can someone help me. Thank you

    Check the uberlink and tutorials at PVII - m
    http://www.Projectseven.com/

    and the tutorial/articles instead of Thierry Navbar
    http://TJKDesign.com/articles/dropdown/

    Or this one (most recent article):
    http://TJKDesign.com/articles/Pure_CSS_Dropdown_Menus.asp

    Or it will quickly, click here.

    http://www.Projectseven.com/tutorials/navigation/auto_hide/index.htm

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    ==================

    "delynncarr" wrote in message
    News:fgsrfp$2as$1@forums. Macromedia.com...
    > Don't know that I'm even using the correct teminalogy.
    > I want to create a list of programs when the user will fly over the text
    > 'programs' I want a submenu to become visible, so they can click on the link
    > for
    > This program. As the net asset value has bar located at the top of the Adobe site. I can do
    > This
    > with Dreamweaver 8, all I can find is the menu of rerouting and I don't want that
    > ugly
    > drop-down list. I just want to see the text "programs" then when the mouse on a
    > text
    > list down for them click on access the link. And using the
    > navigation
    > insert bar, he wants a graph to connect to each program or item list?
    >
    > Can someone help me. Thank you
    >

  • How to close the drop-down menu that I get when I right click on the arrow to the left (to the left of the address bar)? EXHAUST used to do.

    When a tab has a bit of history associated with it, the back and arrows forward near the address bar (IE lefet) opens this story of tabs when clicked.

    But, I can't close this pop-up history.

    In the past, hitting escape close this window. (firefox 14). Now (firefox 27) ESCAPE does not close the window.

    How to close this window?

    (I want to do this via the keyboard and NOT BY SIMPLE CLICK a RANDOM place on the screen.)

    Thank you Gingerbread Man.

    My problem was an extension: MOUSELESS BROWSING.

    I really like this extension, but he did not get a lot of support.

Maybe you are looking for

  • Third-party tool to draw the rectangle on the block diagram

    I know he was once a third party tool that allowed me to draw a rectangle of Nice double border on the block diagram.  Yes, it's the not the front panel block diagram.  It was very useful to make annotations and designating functional groups.  Does a

  • Cannot install Virtual PC installation windows 7 64 bit pro

    Hello I try to install Virtual PC on a computer windows 7 custom made 64-bit and it repeatedly comes up with an error message saying: basically, it cannot install and I need to find a 64-bit version of the .exe.  Can someone help me?  I have this has

  • Event log question.

    Hello I know this is a silly question but I was wondering if anyone could tell me if newspapers windows still records events when the computer is off? There was something that was either a start to the top of the computer on his own or his things log

  • Officjet Pro 8600 cable system problem

    Just install, see, however, the entire office network does not connect to internet - poster "no internet connection". Public static IP # well positioned, subnet # correct, bridge # correct, DNS #correct - line tested with computer, no problem with in

  • export clip 4 k in cs6

    is it possible to export the k clip 4 of 4 k timeline in first pro cs6.If so, how?Thank youarikw