Dreamweaver jQuery Ui Accordion

I am using Dreamweaver and trying to change the background and text colors for the <h3> section  and <p> Content in the jQuery Ui accordion and cannot seem to get it to work.
I have tried the theme and accordion.css but it does not seem to work.  I have tried to find a tutorial and they all seem to reference using spry which is not used now.
Does anyone have any suggestions?

Nancy - The accordion is on the home page: index.php.  It works fine, but I want to change the appearance.
Dreamweaver inserts this when I add the Accordion to the page:
In the head:
<link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css" />
<link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css" />
<link href="jQueryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css" />
and
<script src="jQueryAssets/jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="jQueryAssets/jquery-ui-1.9.2.accordion.custom.min.js" type="text/javascript"></script>
And just before </body> tag:
<script type="text/javascript">
$(function() {
    $( "#Accordion1" ).accordion({
        collapsible:true,
        animate:{easing: "linear"},
        heightStyle:"content"
</script>
And I added this in the body of the page:
<div id="Accordion1">
<h3>About us</h3>
<div>
<p>Westside Bridge Academy is central and west Houston's premier venue for duplicate bridge instruction and play.</p>
<p>We have open games every day and I/N games several times each week - see the schedule to the left for details.</p>
<p>We are a friendly and welcoming place for you to play.</p>
<p>We have the nicest directors and players!</p>
</div>
<h3>What we do</h3>
<div>
<ul>
<li>You get an individual summary at the end of the game so you can easily check your scores!</li>
<li>You get an individual summary emailed to you only a few minutes after the game!</li>
<li>We use "The Common Game"; for details click below. </li>
<li>We offer complimentary snacks, coffee, and tea!</li>
<li>We have a full schedule of classes!</li>
</ul>
</div>
<h3>The Common Game</h3>
<div>
<ul>
<li>We play the same hands as hundreds of other clubs across the US and Canada.</li>
<li>You see your results compared with everyone who played the hand.</li>
<li>The results often come with expert commentary.</li>
<li>Results are match-pointed across the entire field - hundreds of tables!</li>
<li>Monthly winners are compiled and reported.</li>
</ul>
</div>
</div>
So I think I have all the coding correct, or at least workable.
It sounds like I need to replace one or all of the .css files with the one you specified.  Is that correct?
Thanks for the help.

Similar Messages

  • Spry Accordion and jQuery UI Accordion for Widget Browser

    I have Dreamweaver CS5 and used the spry accordion for a left menu. I then used the widget browser and added jQuery UI accordion. But there appears to be a conflict in that the spry accordion is not displaying the white font on hover, instead using the gray font from the jQuery UI accordion.
    This may be a duplicate post, I asked this question on another section of this site, if so, I do apologize. Any help is greatly appreciated.
    The page sample is
    http://www.sbcvote.us/registrar/2006_form460.htm
    Thanks to all,

    In SpryAccordion.css you are telling the Spry Accordion to do exactly that.
    Have a look at lines 97 and 100 where the colour is set to #555555
    Gramps

  • Edge Animate code into Dreamweaver jquery mobile theme?

    I am having trouble getting my Edge Animate file to work on my Dreamweaver jquery mobile theme web site. I was told to get the code from my animate file and put it in my dreamweaver web site. Kind of like this.....copy the Edge runtime code, paste in web site under <head>. Then copy div stage code, and paste it in my website under the content  div. I just cant seem to get it to work. It shows up blank.

    Ok, i got it. I was making this a lot harder then it needed to be. If anyone else has this problem, you just publish your project when in Adobe Edge Animate, then save in the folder you are using for your website. Then in Dreamweaver you can go to insert media, find the file and insert it. All is well.

  • Opening jQuery UI accordion with a link

    I need to create a link that once clicked goes to a jQuery UI accordion. I want the link to open up the accordion when its clicked.
    I have been following the instructions on: http://foundationphp.com/tutorials/jqui_specific.php
    I have added jQuery in my test page but cant figure out how to get the thing to open from a link.
    It doesnt look like it should be to difficult but I have been stuck for hours now...
    The guide says:
    " Locate the code that initializes the jQuery UI accordion. It should look similar to this:
    <script type="text/javascript"> $(function() { $( "#Accordion1" ).accordion(); }); </script>
    I dont have anything with $ and when I try to add it I get error messages?
    Thanks for any help!

    When we were confronted with your orginal questen, we had no idea of the purpose of the accordion panel. This resulted in giving you an answer that was not correct for your application.
    What you should have used for your application are a series of collapsible panels.
    Copy and paste the following into a new document and view in your favourite browser.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    h2, p, ol, ul, li {
        margin: 0px;
        padding: 0px;
        font-size: 13px;
        font-family: Arial, Helvetica, sans-serif;
    #container {
        width: 300px;
        margin: auto;
        margin-top: 100px;
    /* --------- COLLAPSIBLE PANELS ----------*/
    .expandable-panel {
        width: 100%;
        position: relative;
        min-height: 50px;
        overflow: auto;
        margin-bottom: 20px;
        border: 1px solid #999;
    .expandable-panel-heading {
        width: 100%;
        cursor: pointer;
        min-height: 50px;
        clear: both;
        background-color: #E5E5E5;
        position: relative;
    .expandable-panel-heading:hover {
        color: #666;
    .expandable-panel-heading h2 {
        padding: 14px 10px 9px 15px;
        font-size: 18px;
        line-height: 20px;
    .expandable-panel-content {
        padding: 0 15px 0 15px;
        margin-top: -999px;
    .expandable-panel-content p {
        padding: 4px 0 6px 0;
    .expandable-panel-content p:first-child {
        padding-top: 10px;
    .expandable-panel-content p:last-child {
        padding-bottom: 15px;
    .icon-close-open {
        width: 20px;
        height: 20px;
        position: absolute;
        background-image: url(http://www.webdevdoor.com/demos/expandable-panel-jquery-demo/icon-close-open.png);
        right: 15px;
    .expandable-panel-content img {
        float: right;
        padding-left: 12px;
    .header-active {
        background-color: #D0D7F3;
    </style>
    </head>
    <body>
    <div id="container">
      <div class="expandable-panel" id="cp-1">
        <div class="expandable-panel-heading">
          <h2>Content heading 1<span class="icon-close-open"></span></h2>
        </div>
        <div class="expandable-panel-content">
          <p>Panel HTML...</p>
        </div>
      </div>
      <div class="expandable-panel" id="cp-2">
        <div class="expandable-panel-heading">
          <h2>Content heading 2<span class="icon-close-open"></span></h2>
        </div>
        <div class="expandable-panel-content">
          <p>Panel HTML...</p>
        </div>
      </div>
      <div class="expandable-panel" id="cp-3">
        <div class="expandable-panel-heading">
          <h2>Content heading 3<span class="icon-close-open"></span></h2>
        </div>
        <div class="expandable-panel-content">
          <p>Panel HTML...</p>
        </div>
      </div>
    </div>
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <script>
    (function($) {
        $(document).ready(function () {
            /*-------------------- EXPANDABLE PANELS ----------------------*/
            var panelspeed = 500; //panel animate speed in milliseconds
            var totalpanels = 3; //total number of collapsible panels 
            var defaultopenpanel = 0; //leave 0 for no panel open 
            var accordian = false; //set panels to behave like an accordian, with one panel only ever open at once    
            var panelheight = new Array();
            var currentpanel = defaultopenpanel;
            var iconheight = parseInt($('.icon-close-open').css('height'));
            var highlightopen = true;
            //Initialise collapsible panels
            function panelinit() {
                    for (var i=1; i<=totalpanels; i++) {
                        panelheight[i] = parseInt($('#cp-'+i).find('.expandable-panel-content').css('height'));
                        $('#cp-'+i).find('.expandable-panel-content').css('margin-top', -panelheight[i]);
                        if (defaultopenpanel == i) {
                            $('#cp-'+i).find('.icon-close-open').css('background-position', '0px -'+iconheight+'px');
                            $('#cp-'+i).find('.expandable-panel-content').css('margin-top', 0);
            $('.expandable-panel-heading').click(function() {         
                var obj = $(this).next();
                var objid = parseInt($(this).parent().attr('ID').substr(3,2));
                currentpanel = objid;
                if (accordian == true) {
                    resetpanels();
                if (parseInt(obj.css('margin-top')) <= (panelheight[objid]*-1)) {
                    obj.clearQueue();
                    obj.stop();
                    obj.prev().find('.icon-close-open').css('background-position', '0px -'+iconheight+'px');
                    obj.animate({'margin-top':0}, panelspeed);
                    if (highlightopen == true) {
                        $('#cp-'+currentpanel + ' .expandable-panel-heading').addClass('header-active');
                } else {
                    obj.clearQueue();
                    obj.stop();
                    obj.prev().find('.icon-close-open').css('background-position', '0px 0px');
                    obj.animate({'margin-top':(panelheight[objid]*-1)}, panelspeed);
                    if (highlightopen == true) {
                        $('#cp-'+currentpanel + ' .expandable-panel-heading').removeClass('header-active'); 
            function resetpanels() {
                for (var i=1; i<=totalpanels; i++) {
                    if (currentpanel != i) {
                        $('#cp-'+i).find('.icon-close-open').css('background-position', '0px 0px');
                        $('#cp-'+i).find('.expandable-panel-content').animate({'margin-top':-panelheight[i]}, panelspeed);
                        if (highlightopen == true) {
                            $('#cp-'+i + ' .expandable-panel-heading').removeClass('header-active');
            $(window).load(function() {
                panelinit();
            }); //END LOAD
        }); //END READY
    })(jQuery);
    </script>
    </body>
    </html>

  • Dreamweaver template Spry Accordion displays error on Firefox

    Hi,
    I downloaded and try to use the template 02 with Dreamweaver CS5 from
    http://www.adobe.com/devnet/dreamweaver/articles/dreamweaver_custom_templates.html
    However, when I try to browse the theme_02_design.html in firebox, the spry accordion is corrupted ( see image) ,
    it didn't displays as the way it looks in here: http://www.adobe.com/devnet-archive/dreamweaver/articles/dreamweaver_custom_templates/temp late2/Publish/theme_02_design_from_template.html
    I already finished the whole editing to create a new site and it works perfectly fine in google chrome and IE.
    I only browse the theme_02_design.html in firebox and it doesn't look right already.
    Or is this template doesn't work well with firefox? How should I fix this problem?
    Thanks a million for any help, appreciate it.

    #1 Validate code with the tools below and fix reported errors.
              CSS - http://jigsaw.w3.org/css-validator/
              HTML - http://validator.w3.org/
    #2 Upload your test page and dependant files to a web server space you control.
    #3 Come back to the forum & post the URL to your page.
    Nancy O.

  • Dreamweaver Jquery mobile live view error

    i'm having this problem with my jquey mobile pages, when i preview in firefox the links works perfectly but when i use the live view in dreamweaver some of the links do not work. i'm passing url parameters from one page to to other.

    Hi Ezzuah1,
    If they are working fine in all the browsers that you test, and not in Live view, I wouldn't worry too much.
    Thanks,
    Preran

  • Working with JQuery UI - Accordion Panels

    Two questions related to the above:
    How can I edit the "grey" bar that appears (in Live view) at the top of the Content panel?  I am trying to put in a table into the content panel and have to put in at least 2-3 extra lines to make sure the table does not sit on top of the grey area - I would like to either change the grey to white so that it doesn't show, or get rid of it all together.
    I have successfully wiped out the Accordion code a few times over the last few days - without planning on doing that.  It appears to happen when I add in a hyperlink in the tables I am working on.  It just simply disappears and I am left with just a plan HTML page with text and tables and no accordions.
    Help !
    Thanks
    Geraldine

    Switch to code view.   You can't do much with Design View alone.  That's why your code is getting wiped out.
    Nancy O.

  • How can I make a jQuery accordion panel tab collapsed by default?

    I have Googled this and saw that someone recommended placing the 'collapsible' option before the 'active' one. For example,
    $( ".accordion" ).accordion("option", {
        collapsible: true,
        active: false
    I am completely new to Dreamweaver. I inserted a jQuery UI Accordion into my web page because I need a drop-down list. I have a main .css file for my page. Additional jquery css files were added after I inserted the accordion. (For example, I see jquery.ui.core.min.css, jquery.ui.theme.min.css, jquery.ui.caccordion.min.css, jquery-1.8.3.min.js, jquery-ui-1.9.2.accordion.custom.min.js).
    I see a section in jquery-ui-1.9.2.accordion.custom.min.js where I think I might be able to change these settings, but I just want to make sure.
    options:{active:0,animate:{},collapsible:!1,event:"click"
    Thanks in advance for any suggestions.

    Yes, setting collapsible to true (so all sections can collapse at once) and then setting no section as active, it will start completely collapsed, e.g.:
    $( ".accordion" ).accordion({collapsible:true,active:false});
    Do note this is being applied to a container element with the "class" of 'accordion' and not the ID, per your code. If it's ID then use:
    $( "#accordion" ).accordion({collapsible:true,active:false});

  • Dreamweaver doesn't load CDN jquery in preview?

    I've been learning javascript and jquery lately, and am trying to implement a few features on my site.
    Troubleshooting a basic slider effect jquery was really difficult, because I was literally copy and pasting WORKING code from other websites, and it wasn't working at all, in preview with firefox safari, or chrome.
    Cut to later: I try just loading the site to my server, low and behold, it works.
    The ONLY thing I could think of, was that my jquery library was loading remotely from google, a CDN.
    once I loaded the jquery script locally, it started working locally.
    what gives? does dreamweaver not have the ability to load remote scripts when previewing? or is the preview process 100% offline?

    This works for me
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css">
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <script src="SpryAssets/jquery-ui-1.9.2.accordion.custom.min.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="Accordion1">
      <h3><a href="#">Section 1</a></h3>
      <div>
        <p>Content 1</p>
      </div>
      <h3><a href="#">Section 2</a></h3>
      <div>
        <p>Content 2</p>
      </div>
      <h3><a href="#">Section 3</a></h3>
      <div>
        <p>Content 3</p>
      </div>
    </div>
    <script type="text/javascript">
    $(function() {
        $( "#Accordion1" ).accordion();
    </script>
    </body>
    </html>

  • Jquery accordion where we can open more than one region at the same time

    Hi,
    I am trying to create a jquery accordion where we can open more than one region at the same time. I saw a post
    from patrick to do accordion where we can select only one region at a time.I am using Apex 4.0
    Using jQueryUI Accordion with APEX 4.0
    Any input on this will be appreciated.
    Thanks,
    Nav

    Hi,
    As I understand jQuery UI accordion do not have feature you looking for
    Regards,
    Jari
    Edited by: jarola on Sep 7, 2010 12:29 PM
    See documentation from here
    http://jqueryui.com/demos/accordion/#default

  • Changing Dreamweaver-Accordion Theme

    Hi I am trying to get rid of the silver shadow on this dropdown. Can someone tell me how to get rid of that silver shadow so Annie Eckrich, Agent 2, and Agent 3 are all in the same box.
    Thanks for your help!
    Lucas

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css">
    <script src="SpryAssets/jquery-1.11.1.min.js" type="text/javascript"></script>
    <script src="SpryAssets/jquery.ui-1.10.4.accordion.min.js" type="text/javascript"></script>
    <style>
    .ui-widget-content {
        background-image: none;
    </style>
    </head>
    <body>
    <div id="Accordion1">
        <h3><a href="#">Section 1</a></h3>
        <div>
            <p>Annie Eckrick</p>
            <p>Agent 2</p>
            <p>Agent 3</p>
        </div>
        <h3><a href="#">Section 2</a></h3>
        <div>
            <p>Content 2</p>
        </div>
        <h3><a href="#">Section 3</a></h3>
        <div>
            <p>Content 3</p>
        </div>
    </div>
    <script type="text/javascript">
    $(function() {
        $( "#Accordion1" ).accordion();
    </script>
    </body>
    </html>
    Add the highlighted style rule.

  • Manupulating Jquery Accordion height

    Hi all,
    I have downloaded accordion css and its js from jquery website and have implemented accordion in our application. Has anyone played with its js or css to decrease or increase the height of the header title of all the regions included in the accordion? Pls help. Its urgent. Thanks
    With Regards,
    Sunil Bhatia

    If any one having similar issue here is the solution.
    Just replace the Template code from [Patrick's solution|https://forums.oracle.com/forums/thread.jspa?messageID=4429587] with the below one :
    <div id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES#>
    #BODY##SUB_REGION_HEADERS##SUB_REGIONS#
    </div>
    <link rel="stylesheet" href="#IMAGE_PREFIX#libraries/jquery-ui/1.8/themes/base/jquery.ui.accordion.css" type="text/css" />
    <script src="#IMAGE_PREFIX#libraries/jquery-ui/1.8/ui/minified/jquery.ui.accordion.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    apex.jQuery(function() {
      apex.jQuery("##REGION_STATIC_ID#").accordion({
                   autoHeight: false
      var autoHeight = apex.jQuery("##REGION_STATIC_ID#").accordion( "option", "autoHeight" );
      apex.jQuery("##REGION_STATIC_ID#").accordion( "option", "autoHeight", false );
    </script>Rest all remains same.
    Good luck.

  • Dreamweaver-Accordion Problem

    When I go on my app preview I click on the link to go to this page and the accordion is not working. Can someone please help me?
    Thanks,
    Lucas

    This is the first page code:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Fort Wayne Real Estate</title>
    <link href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css">
    <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
    <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js" type="text/javascript"></script>
    <script src="jQueryAssets/jquery.ui-1.10.4.accordion.min.js" type="text/javascript"></script>
    <style>
    .ui-widget-content {
        background-image: none;
    </style>
    </head>
    <body>
    <div data-role="page" id="page1">
      <div data-role="header">
        <center><img src="img/SearchFortWayne.com Logo.png" width="320" height="170" alt=""/></center>  </div>
    <div data-role="content">
      <div id="Accordion1">
        <h3><a href="#">Real Estate Agents</a></h3>
        <div>
          <h5><a href="eckrich.html">Annie Eckrich</a></h5>
          <h5><a href="#">Agent 2</a></h5>
          <h5><a href="#">Agent 3</a></h5>
        </div>
        <h3><a href="#">Home Improvement</a></h3>
        <div>
          <h5><a href="#">Store 1</a></h5>
          <h5><a href="#">Store 2</a></h5>
          <h5><a href="#">Store 3</a></h5>
        </div>
        <h3><a href="#">New Home Builders</a></h3>
        <div>
          <h5><a href="#">Builder 1</a></h5>
          <h5><a href="#">Builder 2</a></h5>
          <h5><a href="#">Builder 3</a></h5>
        </div>
        <h3><a href="#">Mortgages</a></h3>
        <div>
          <h5><a href="#">Company 1</a></h5>
          <h5><a href="#">Company 2</a></h5>
          <h5><a href="#">Company 3</a></h5>
        </div>
      </div>
    <div data-role="footer">
        <h4>&copy; 2015 kyZle.com, L.L.C.</h4>
      </div>
    </div>
    <script type="text/javascript">
    $(function() {
      $( "#Accordion1" ).accordion();
      </script>
    </body>
    </html>
    Then the second page code that is messing up is:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Fort Wayne Real Estate App</title>
    <link href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css">
    <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
    <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js" type="text/javascript"></script>
    <script src="jQueryAssets/jquery.ui-1.10.4.accordion.min.js" type="text/javascript"></script>
    </head>
    <body>
    <div data-role="page" id="page1">
    <div data-role="header">
      <center><img src="img/SearchFortWayne.com Logo.png" width="320" height="170" alt=""/></center>  </div>
      <center><h3>Annie Eckrich</h3></center>
      <div data-role="content">
      <center><img src="img/Annie Eckrich.png" width="204" height="275" alt=""/></center>
      <div id="Accordion1">
        <h3><a href="#">Website Link</a></h3>
        <div>
          <h5><a href="http://www.AnnieEckrich.com">www.AnnieEckrich.com</a></h5>
        </div>
        <h3><a href="#">Phone Number</a></h3>
        <div>
          <h5><a href="260-437-0494">(260) 437-0494</a></h5>
        </div>
        <h3><a href="#">E-mail Me</a></h3>
        <div>
          <h5><a href="mailto:[email protected]">[email protected]</a></h5>
        </div>
      </div>
    <div data-role="footer">
        <h4>&copy; 2015 kyZle.com, L.L.C.</h4>
      </div>
    </div>
    <script type="text/javascript">
    $(function() {
      $( "#Accordion1" ).accordion();
      </script>
    </body>
    </html>

  • Dreamweaver cc jquery mobile with theme

    Hi everyone
    I m trying to create my first mobile site using Dreamweaver jquery mobile with theme. First I up date the jquery mobile  and jquery files. But after I have done this the icons are no longer available. I have tried several things including: pulling the icons out of the jquery mobile folder titled 'icons-png' and place them in an image folder. But no luck.  
    Dreamweaver installs these files on the starter page
    <link href="jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/> 
    <link href="jquery.mobile.structure-1.0.min.css" rel="stylesheet" type="text/css"/>
    <script src="jquery-1.6.4.min.js" type="text/javascript"></script>
    <script src="jquery.mobile-1.0.min.js" type="text/javascript"></script>
    and I  replace them with these files
    <link href="jquery.mobile.theme-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <link href="jquery.mobile.structure-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <link href="jquery.mobile.inline-svg-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <link href="jquery.mobile.inline-png-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <link href="jquery.mobile.icons-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <link href="jquery.mobile.external-png-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <link href="jquery.mobile-1.4.4.min.css" rel="stylesheet" type="text/css"/>
    <script src="jquery-2.1.1.min.js" type="text/javascript"></script>
    <script src="jquery.mobile-1.4.4.min.js" type="text/javascript"></script>
    I know this is a pretty basic problem. I cant find any thing on the web to remedy the problem.
    In advance thank you for your advice
    Cheers
    Paul
    https://forum.jquery.com/html/blank.html

    Thank you.  I was having the exact same problem.  I even upoaded the unmodified starter page, just in case it was something I did.  Inserting the viewport line fixed it.  (Now I need to go back and insert that line into each of the pages I was working on.)
    The question remains, however, as to why the mobile starter pages don't include that line in the first place.
    [edit] FYI - On Dreamweaver CC, it's under the "common" group within "insert".  (I would have expected it under "JQuery Mobile", but it's not there.)

  • Dreamweaver CC fluid grid perfect in Chrome, not great in Firefox, disaster in IE.

    I got past the problem of the fluid grid layout lines disappearing along with handles/etc., and was so excited that I got our site to work responsively in Chrome, but I don't understand why it won't work in the other browsers (seems this was also a problem with CS6?).   I build with both design and code, and I just can't find the problem, or any online help for this.  Any ideas where I can look for more information?  Thanks!!

    Thanks for the advice to validate.  I found some minor end tag errors on the page and was able to fix them.  However, I still have the browser problem.  In FF, the only problem is that the logo slides behind the main body in larger screen sizes.  In IE, the swf is absent, the logo loses the rounded border, the accordion obscures everything at the top of the main body and squishes the text together, I lose the background attributes for both the main body, Kuali nav panel and both background and text features for the footer.  Unfortunately, I don't know how to share a link for assistance, as the testing server is behind the JHU firewall.  I've copied the source code for the index page below in hopes that someone can see some noob error I've made...  Thanks so much for your help!!!!
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>JHU Coeus Help</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="Alternate.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="respond.min.js"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="jQueryAssets/jquery-1.8.3.min.js" type="text/javascript"></script>
    <script src="jQueryAssets/jquery-ui-1.9.2.accordion.custom.min.js" type="text/javascript"></script>
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>
    var __adobewebfontsappname__="dreamweaver"
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    </script><script src="http://use.edgefonts.net/lobster-two:n4:default.js" type="text/javascript"></script>
    </head>
    <body onLoad="MM_preloadImages('Images/StructuralGraphics/PremiumSwap.gif','Images/StructuralGr aphics/LiteSwap.gif','Images/Buttons/what_you_need_first_sel.gif','Images/Buttons/proposal _help_icon_sel.gif','Images/Buttons/budget_help_clean_rgb_sel.gif','Images/Buttons/video_c lean_rgb.gif','Images/Buttons/user_guides_clean_rgb_sel.gif','Images/Buttons/admin_guides_ clean_rgb.gif','Images/Buttons/classes_clean_rgb.gif','Images/Buttons/ORIS_clean_rgb_sel.g if','Images/StructuralGraphics/MedicineResourcesSwap.gif','Images/StructuralGraphics/Resea rchSwap.gif','Images/StructuralGraphics/NursingSwap.gif','Images/StructuralGraphics/EmailS wap.gif','Images/StructuralGraphics/TimelineHover.gif','Images/StructuralGraphics/Document ationSwap.gif','Images/StructuralGraphics/BARASwap.gif','Images/StructuralGraphics/KualiKJ HUHover.gif')">
        <div class="fluid SystemStatus">
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="680" height="30" id="FlashID" title="System Status">
         <param name="movie" value="Images/StructuralGraphics/Flash Objects/SystemYellow.swf" />
         <param name="quality" value="high" />
         <param name="wmode" value="opaque" />
         <param name="swfversion" value="11.2.0.0" />
         <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
         <param name="expressinstall" value="Scripts/expressInstall.swf" />
         <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
         <!--[if !IE]>-->
         <object type="application/x-shockwave-flash" data="Images/StructuralGraphics/Flash Objects/SystemYellow.swf" width="680" height="30">
           <!--<![endif]-->
           <param name="quality" value="high" />
           <param name="wmode" value="opaque" />
           <param name="swfversion" value="11.2.0.0" />
           <param name="expressinstall" value="Scripts/expressInstall.swf" />
           <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
           <div>
             <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
             <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
           <!--[if !IE]>-->
            </object>
         <!--<![endif]-->
          </object>
      </div>
      <div class="fluid Header">
        <div class="fluid LogoWrapper">
        <div class="fluid LogoWhite">
        <div class="fluid Logo"><img src="Images/StructuralGraphics/ExternalLogo_Blue2.gif"  alt=""/></div>
        </div>
        </div>
        </div>
    <div class="gridContainer clearfix">
      <div class="fluid MainBody">
              <div class="fluid Body">
              <div class="fluid LaunchWrapper">
         <div class="fluid LaunchButtons"><img src="Images/StructuralGraphics/LaunchPremium.gif"  alt="" id="Image1" onClick="MM_goToURL('parent','http://prcoeus.johnshopkins.edu/coeus/coeus.jnlp');return document.MM_returnValue" onMouseOver="MM_swapImage('Image1','','Images/StructuralGraphics/PremiumSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div><div class="fluid LaunchButtons"><img src="Images/StructuralGraphics/LaunchLite.gif"  alt="" id="Image2" onClick="MM_goToURL('parent','http://prcoeus.johnshopkins.edu/coeus/userAuthAction.do');return document.MM_returnValue" onMouseOver="MM_swapImage('Image2','','Images/StructuralGraphics/LiteSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
         <div class="fluid LaunchText">Use the Coeus buttons at left to launch Coeus Premium and Coeus Lite, until our transition to Kuali Coeus, targeted for November 2015.</div>
       </div>
              <div class="fluid CoeusHelp">
         <div class="fluid CoeusButtons"><a href="Documents/NeedFirst.htm"><img src="Images/Buttons/what_you_need_first.gif"  alt="" id="Image3" onMouseOver="MM_swapImage('Image3','','Images/Buttons/what_you_need_first_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
         <div class="fluid CoeusButtons"><a href="Documents/PropHelp.htm"><img src="Images/Buttons/proposal_help_icon.gif" alt="" id="Image4" onMouseOver="MM_swapImage('Image4','','Images/Buttons/proposal_help_icon_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/Budget.htm"><img src="Images/Buttons/budget_help_clean.gif"  alt="" id="Image5" onMouseOver="MM_swapImage('Image5','','Images/Buttons/budget_help_clean_rgb_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><img src="Images/Buttons/video_clean.gif" alt="" id="Image6" onMouseOver="MM_swapImage('Image6','','Images/Buttons/video_clean_rgb.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                <div class="fluid CoeusButtons"><a href="Documents/UserGuides.htm"><img src="Images/Buttons/user_guides_clean.gif" alt="" id="Image7" onMouseOver="MM_swapImage('Image7','','Images/Buttons/user_guides_clean_rgb_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/AdminGuides.htm"><img src="Images/Buttons/admin_guides_clean2.gif"  alt="" id="Image8" onMouseOver="MM_swapImage('Image8','','Images/Buttons/admin_guides_clean_rgb.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/Training.htm"><img src="Images/Buttons/classes_clean.gif" alt="" id="Image9" onMouseOver="MM_swapImage('Image9','','Images/Buttons/classes_clean_rgb.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/ORIS.htm"><img src="Images/Buttons/ORIS_clean.gif" alt="" id="Image10" onMouseOver="MM_swapImage('Image10','','Images/Buttons/ORIS_clean_rgb_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
       </div>
              <div class="fluid CoeusText">Use the buttons above for help with building proposals and budgets in Coeus, as well as finding information about administrative functions such as the approval process. See what instructor-led training is available under the &quot;Training Classes&quot; button.</div>
                        </div>
               <div class="fluid AccordionWrapper">
               <div class="fluid AccordionBack">
               <div class="fluid AccordionHolder">
                  <div id="Accordion1">
             <h3><a href="#">Research Administration Offices</a></h3>       
                    <div>
               <p>
                      <div class="fluid ResearchOffices"><strong>School of Medicine Research Administration (SOM)</strong> <br>
    733 North Broadway, BRB 117<br>
    Baltimore, Maryland 21205<br>
    <a href="http://www/hopkinsmedicine.org/">http://www/hopkinsmedicine.org/<br>
    Research/ora/</a></div>
    <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/MedicineResources.gif" alt="" id="Image11" onClick="MM_goToURL('parent','http://www/hopkinsmedicine.org/');return document.MM_returnValue" onMouseOver="MM_swapImage('Image11','','Images/StructuralGraphics/MedicineResourcesSwap.g if',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel"><table>
      <tr>
        <td><strong>Joanne Frantz-Doggett</strong> <br>
    Associate Director<br>
    410-955-8921<br>
    [email protected]</td>
        <td><strong>Nicole Leonard</strong><br>
    Deputy Director<br>
    410-502-6655<br>
    [email protected]</td>
      </tr>
      </table>
    </div>
      <p>
                      <div class="fluid ResearchOffices"><strong>Johns Hopkins University Research Administration (JHURA)</strong><br>
    Wyman Park Center, W400<br>
    3400 North Charles Street<br>
    Baltimore, Maryland 21218<br>
    <a href="http://www.jhuresearch.jhu.edu/rpa/">http://www.jhuresearch.jhu.edu/rpa/</a></div>
                      <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/Research.gif"  alt="" id="Image12" onClick="MM_goToURL('parent','http://www.jhuresearch.jhu.edu/rpa/');return document.MM_returnValue" onMouseOver="MM_swapImage('Image12','','Images/StructuralGraphics/ResearchSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel">
      <table><tr>
        <td><strong>Alexandra A. McKeown<br></strong>
    Associate Vice Provost for Research Administration<br>
    410-516-8444<br>
    [email protected]</td>
        <td><strong>Jennifer Barron<br></strong>
    Executive Director<br>
    615 N. Wolfe Street, W1600<br>
    Baltimore, Maryland 21205<br>
    410-614-1856<br>
    [email protected]</td>
      </tr>
      </table>
    </div>
      <p>
                      <div class="fluid ResearchOffices"><strong>Business and Research Administration (BARA)</strong> <br>
    Wyman Park Center, N600<br>
    3400 North Charles Street<br>
    Baltimore, Maryland 21218<br>
    <a href="http://www.jhu.edu/kasper/sponsored_projects/">http://www.jhu.edu/kasper/sponsored_projects/</a></div>
                      <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/BARA.gif"  alt="" id="Image13" onClick="MM_goToURL('parent','http://www.jhu.edu/kasper/sponsored_projects/');return document.MM_returnValue" onMouseOver="MM_swapImage('Image13','','Images/StructuralGraphics/BARASwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel"><strong>Mary Louise Healy</strong><br>
    Associate Director<br>
    Office of Research Administration<br>
    410-516-8617<br>
    [email protected]
    </div>
      <p>
                      <div class="fluid ResearchOffices"><strong>School of Nursing Office of Research Administration (SON)</strong><br>
    525 North Worlfe Street<br>
    Baltimore, Maryland 21205<br>
    www.nursing.jhu.edu/<br>
    <a href="http://faculty_research/administration/index.html">http://faculty_research/administration/index.html</a></div>
                      <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/Nursing.gif" alt="" width="109" height="109" id="Image14" onClick="MM_goToURL('parent','faculty_research/administration/index.html');return document.MM_returnValue" onMouseOver="MM_swapImage('Image14','','Images/StructuralGraphics/NursingSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel"><strong>Maggie Brewer</strong><br>
    ORA Administrator<br>
    443-287-2902<br>
    [email protected]
    </div>
                 </div>
                    <h3><a href="#">Research-Related Administration</a></h3>
             <div>
               <p><div class="fluid Offices"><strong>Sponsored Projects Shared Services</strong><br>
    3910 Keswick Road, 5th Floor;
    Baltimore, Maryland 21211<br>
    443-997-8151<br>
    <a href="http://ssc.jhmi.edu/sponsoredprojects/index.html">http://ssc.jhmi.edu/sponsoredprojects/index.html</a><br>
    <br>
    <strong>Office of the Controller</strong><br>
    3910 Keswick Road, 5th Floor; Baltimore, Maryland 21211<br>
    Wanda Adams, Administrative Coordinator;<br>
    443-997-8155<br>
    <a href="http://finance.jhu.edu/depts/controller/office_controller.html">http://finance.jhu.edu/depts/controller/office_controller.html</a><br>
    <br>
    <strong>Compliance and Interdivisional Research Services</strong>
    <br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218<br>
    Marge Dolly; [email protected]<br>
    <br>
    <strong>Licensing and Technology Development</strong><br>
    100 North Charles Street, 5th Floor;<br>
    Baltimore, Maryland 21201;<br>
    410-515-8300<br>
    <a href="http://www.techtransfer.jhu.edu">http://www.techtransfer.jhu.edu</a><br>
    <br>
    <strong>Export Controls Office</strong><br>
    Wyman Park Center, W400; Baltimore, Maryland 21218<br>
    Frank Barker; [email protected]<br>
    <br>
    <strong>Health, Safety & Environment</strong><br>
    600 North Wolfe Street; Billing Administration 1290<br>
    Baltimore, Maryland 21287-1629<br>
    <a href="http://www.hopkinsmedicine.org/hse/">http://www.hopkinsmedicine.org/hse/ </a></div>
                 </div>
             <h3><a href="#">ORIS Executive Committee</a></h3>
                    <div>
                      <p>Mike Amey<br>
    Associate Dean of Research Affairs<br>
    School of Medicine Research Administration<br>
    733 North Broadway, BRB 117; Baltimore, Maryland 21205<br>
    410-955-3061; [email protected]
    <br>
    <br>
    Mary Louise Healy<br>
    Associate Director, ORA<br>
    Zanvyl Krieger School of Arts and Sciences<br>
    Wyman Park Center, N600; <br>
    3400 North Charles Street; <br>
    Baltimore, Maryland 21218-2685<br>
    410-516-8617; [email protected]<br>
    <br>
    Alexandra A. McKeown<br>
    Associate Vice Provost for Research Administration<br>
    Johns Hopkins University Research Administration<br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685<br>
    410-516-8668; [email protected]<br>
    <br>
    Kelly Welsh<br>
    Associate Dean, Finance and Administration<br>
    School of Nursing<br>
    525 North Wolfe Street, Suite 338;<br>
    Baltimore, Maryland 21205<br>
    410-955-4766; [email protected]</p>
                    </div>
                    <h3><a href="#">ORIS Leadership</a></h3>
                    <div>
                      <p>Alexandra A. McKeown<br>
    Associate Vice Provost for Research Administration<br>
    Johns Hopkins University Research Administration<br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685<br>
    410-516-8668; [email protected]<br>
    <br>
    <strong>Robert E. Taylor</strong><br>
    IT Manager<br>
    Office of Research Information Systems<br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685<br>
    [email protected]<br>
    <br>
    </p>
                    </div>
           </div>
         </div></div>
       </div>
              <div class="fluid KCNavWrapper">Kuali Coeus Information <div class="fluid NavPanel">
         <div class="fluid ButtonWrapper">
           <div class="fluid ButtonWhite">
             <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/KualiKJHU.gif" alt="" id="Image15" onMouseOver="MM_swapImage('Image15','','Images/StructuralGraphics/KualiKJHUHover.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                    <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/Email.gif" alt="" id="Image16" onMouseOver="MM_swapImage('Image16','','Images/StructuralGraphics/EmailSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                    <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/TimelineButton.gif" alt="" id="Image17" onMouseOver="MM_swapImage('Image17','','Images/StructuralGraphics/TimelineHover.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                    <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/Documentation.gif" alt="" id="Image18" onMouseOver="MM_swapImage('Image18','','Images/StructuralGraphics/DocumentationSwap.gif', 1)" onMouseOut="MM_swapImgRestore()"/></div>              </div>
         </div>
       </div>
              </div>
      </div>
        </div>
              <script type="text/javascript">
    swfobject.registerObject("FlashID");
    $(function() {
      $( "#Accordion1" ).accordion();
    </script>
    <div class="fluid Footer">
         <div class="fluid FootHead">Office of Research Information Systems</div>
         <div class="fluid FootAddress">Wyman Park Center, W400<br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685
    </div>
         <div class="fluid Twitter">This is the content for Layout Div Tag "Twitter"</div>
       </div>
    </body>
    </html>

Maybe you are looking for