close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Menu Modification Gone Awry - HELP!

Thread began 8/24/2010 1:49 pm by jjenco101368 | Last modified 8/26/2010 7:10 am by Jason Byrnes | 966 views | 3 replies |

jjenco101368

Menu Modification Gone Awry - HELP!

When I went back into my page template and edited the CSS Menu Writer items, the result was insertion of the corrected menu items as a bulleted list above the original dropdown menu. In addtion, the background changed to gray. See attached template.

Thanks for any help you can provide.

John

Attached Files
webpage.zip
Sign in to reply to this post

Jason ByrnesWebAssist

change the menu code:

php:
<ul class="level-0" id="cssmw">

<li><span><a href="/index.html">Home</a></span></li>
<li><span><a href="/products.html">Products</a></span>
  <ul class="level-1">
    <li><span><a href="/fadu.html">Flange Assembly Demonstration Unit</a></span></li>
    <li><span><a href="/perfectseal.html">PerfectSeal Gaskets</a></span></li>
    <li><span><a href="/documents.html">Techncial Documents</a></span></li>
    <li><span><a href="/deftags.html">Equipment Deficiency Tags</a></span></li>
    <li><span><a href="/ebox.html">eBOX Electronics Enclosure</a></span></li>
    <li><span><a href="/Templates/fadu_parts.html">FADU Replacement Parts</a></span></li>
    <li><span><a href="/bpdu.html">EPRI BPDU Repairs & Spares</a></span></li>
  </ul>
</li>
<li><span><a href="/services.html">Services</a></span>
  <ul class="level-1">
    <li><span><a href="/intel.html">Business Intelligence Operations</a></span></li>
    <li><span><a href="/research.html">Contract Technical Research</a></span></li>
    <li><span><a href="/technology.html">New Technology Development</a></span></li>
    <li><span><a href="/training.html">Personnel Training Programs</a></span></li>
    <li><span><a href="/process.html">Process Improvement</a></span></li>
    <li><span><a href="/software.html">Software Development</a></span></li>
    <li><span><a href="/consulting.html">Technical Consulting</a></span></li>
  </ul>
</li>
<li><span><a href="/awards.html">Awards</a></span></li>
<li><span><a href="/company.html">Company Info</a></span></
  <ul class="level-0" id="cssmw">
    <li><span><a href="/index.html">Home</a></span></li>
    <li><span><a href="/products.html">Products</a></span>
      <ul class="level-1">
        <li><span><a href="/fadu.html">Flange Assembly Demonstration Unit</a></span></li>
        <li><span><a href="/perfectseal.html">PerfectSeal Gaskets</a></span></li>
        <li><span><a href="/reports.html">Technical Reports</a></span></li>
        <li><span><a href="/deftags.html">Equipment Deficiency Tags</a></span></li>
        <li><span><a href="/ebox.html">EBOX Electronics Enclosure</a></span></li>
        <li><span><a href="/Templates/fadu_parts.html">FADU Replacement Parts</a></span></li>
        <li><span><a href="/bpdu.html">EPRI BPDU Repairs & Spares</a></span></li>
      </ul>
    </li>
    <li><span><a href="/services.html">Services</a></span>
      <ul class="level-1">
        <li><span><a href="/Templates/intel.html">Business Intelligence Solutions</a></span></li>
        <li><span><a href="/research.html">Contract Technical Research</a></span></li>
        <li><span><a href="/technology.html">New Technology Development</a></span></li>
        <li><span><a href="/training.html">Personnel Training Programs</a></span></li>
        <li><span><a href="/process.html">Process Improvement</a></span></li>
        <li><span><a href="/software.html">Software Development</a></span></li>
        <li><span><a href="/consulting.html">Technical Consulting</a></span></li>
      </ul>
    </li>
    <li><span><a href="/recognition.html">Recognition</a></span></li>
    <li><span><a href="/company.html">Company Info</a></span></li>
  </ul>
  <script type="text/javascript">if(window.attachEvent) { window.attachEvent("onload", function() { cssmw.intializeMenu('cssmw'); }); } else if(window.addEventListener) { window.addEventListener("load", function() { cssmw.intializeMenu('cssmw'); }, true); }</script>
  ; }
  </script>




to:

php:
<ul class="level-0" id="cssmw">

<li><span><a href="/index.html">Home</a></span></li>
<li><span><a href="/products.html">Products</a></span>
  <ul class="level-1">
    <li><span><a href="/fadu.html">Flange Assembly Demonstration Unit</a></span></li>
    <li><span><a href="/perfectseal.html">PerfectSeal Gaskets</a></span></li>
    <li><span><a href="/documents.html">Techncial Documents</a></span></li>
    <li><span><a href="/deftags.html">Equipment Deficiency Tags</a></span></li>
    <li><span><a href="/ebox.html">eBOX Electronics Enclosure</a></span></li>
    <li><span><a href="/Templates/fadu_parts.html">FADU Replacement Parts</a></span></li>
    <li><span><a href="/bpdu.html">EPRI BPDU Repairs & Spares</a></span></li>
  </ul>
</li>
<li><span><a href="/services.html">Services</a></span>
  <ul class="level-1">
    <li><span><a href="/intel.html">Business Intelligence Operations</a></span></li>
    <li><span><a href="/research.html">Contract Technical Research</a></span></li>
    <li><span><a href="/technology.html">New Technology Development</a></span></li>
    <li><span><a href="/training.html">Personnel Training Programs</a></span></li>
    <li><span><a href="/process.html">Process Improvement</a></span></li>
    <li><span><a href="/software.html">Software Development</a></span></li>
    <li><span><a href="/consulting.html">Technical Consulting</a></span></li>
  </ul>
</li>
<li><span><a href="/awards.html">Awards</a></span></li>
<li><span><a href="/company.html">Company Info</a></span>
  </ul>
  <script type="text/javascript">if(window.attachEvent) { window.attachEvent("onload", function() { cssmw.intializeMenu('cssmw'); }); } else if(window.addEventListener) { window.addEventListener("load", function() { cssmw.intializeMenu('cssmw'); }, true); }</script>





the big issue that I see is that there are some orphaned closing tags. for example:
<li><span><a href="/company.html">Company Info</a></span></



the trialing </ is caisng an issue. I cant say if it was there before editing the menu or not, but if it was, it would certainly cause an issue similar to this.


I see other parts of your page that have a similar problem, there are a number of br tags that do not close "<br" instead of "<br />"

Sign in to reply to this post

jjenco101368

Thanks! <eom>

Thanks so much!

Sign in to reply to this post

Jason ByrnesWebAssist

You're welcome.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...