HTML confusion

Hi, I've been out of the web design business for a long while and have just been asked to advise a friend whose expensively built website is not getting much in the way of hits.   I checked the html and found that the meta tags, description and keyword, were enclosed in single quotes ' rather than double quotes ".
I ran an online check of the html using Dr Watson (see link) and this produced an error message saying that no description or keyword tags existed.  I want to be sure that I'm correct in thinking that at least part of the problem is incorrectly used characters in the code before I go back to him.  Can anyone advise please?  Have changes been made to html rules which allow either type of quote to be used and I have to look for some other cause of the problem?
Ian

Validate the page at
http://validator.w3.org/
That's a good start.
If you google Elite West Holidays, it's pulling in your meta tags, Yo u need to seperate your "keywords" with commas though. The way it is now it's just one big keyword.
Jim

Similar Messages

  • Seeburger AS2: Proxy Error 407

    Hi All,
    I am facing the following error while sending message to receiver through AS2 
    Could not deliver as2 message to partner: 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied. ) # null
    Kindly suggest the solution to resolve the error.
    Hoping for a good reply
    Regards
    Prakash

    May not be an authentication issue. Please go through this link:
    http://www.isaserver.org/tutorials/Troubleshooting_ISA_authentication_issues.html
    Confusing Authentication problems.
    In many instances most people have confused authentication with a service that is explicitly denying them access to the resource.  Please note that if you are denied access to a resource it has nothing to do with authentication but with permissions to the resource.  An authentication issue normally identifies itself with prompt for user credential or with an error message stating that authentication has failed with the server.
    A typical error that you will encounter is error 407 Proxy Authentication Required this means that the authentication has been denied because the user has no valid user account in the domain or that the password has been entered incorrectly.  The 401 error however displays an unauthorized error message this mean the user permissions to that resource are denied.  This error message tells you to look at the ISA server rules not at the way the authentication is handled
    Authenticate: username.passwords should be right
    Authorization: not allowed to access a resource
    "The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied." You might have to look at this authorization issue.

  • HTTS  Proxy error 407

    Hello all,
    I'm trying to connect to a webservice that runs on a HTTPS address. And I'm in a proxy + firewall.
    The first thing I tried was the suggested on weblogic documentation:
    Proxy p = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, Integer.parseInt(proxyPort)));               
    HttpTransportInfo info = new HttpTransportInfo();
    info.setProxy(p);
    info.setProxyUsername(user.getBytes());
    info.setProxyPassword(pass.getBytes());
    And I got the exception:
    java.io.IOException: Unable to tunnel through proxy. Proxy returns "HTTP/1.0 407 Proxy Authentication Required"
    I tryed some variations like use HttpsTransportInfo instead of HttpTransportInfo, and set the proxy data through system properties, but everything give me the same error.
    There are any other ways to make a authentication with the proxy? like configure something in the virtual machine or anything like that?

    May not be an authentication issue. Please go through this link:
    http://www.isaserver.org/tutorials/Troubleshooting_ISA_authentication_issues.html
    Confusing Authentication problems.
    In many instances most people have confused authentication with a service that is explicitly denying them access to the resource.  Please note that if you are denied access to a resource it has nothing to do with authentication but with permissions to the resource.  An authentication issue normally identifies itself with prompt for user credential or with an error message stating that authentication has failed with the server.
    A typical error that you will encounter is error 407 Proxy Authentication Required this means that the authentication has been denied because the user has no valid user account in the domain or that the password has been entered incorrectly.  The 401 error however displays an unauthorized error message this mean the user permissions to that resource are denied.  This error message tells you to look at the ISA server rules not at the way the authentication is handled
    Authenticate: username.passwords should be right
    Authorization: not allowed to access a resource
    "The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied." You might have to look at this authorization issue.

  • 3750 differences

    Hi,
    Can someone please tell me the differences between the following switch model numbers please?
    WS-C3750G-24TS-E1U
    WS-C3750G-24TS-E
    Does the 1U mean 1RU, as according to the docs both switches are 1RU.
    I think they must be the same switch, however this document shows them as seperate switches.
    http://www.cisco.com/en/US/products/hw/switches/ps5023/products_data_sheet09186a008016136f.html
    Confused? I am :(
    PJD

    Don't worry i'm just being dense, WS-C3750G-24TS-E are in fact 1.5 RU.
    PJD

  • HP Pavilion dv6-6170ee upgrade

    Can i upgrade HP Pavilion dv6-6170ee to 16 GB RAM?
    This question was solved.
    View Solution.

    Hi,
    The following link shows its specs:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&docname=c02982007
    8GB is the max. BUT Crucial says for a similar machine:
        http://www.crucial.com/upgrade/HP-memory/Pavilion+​DV6+Series/Pavilion+dv6-6170us-upgrades.html
    but not the following:
        http://www.crucial.com/upgrade/HP-memory/Pavilion+​DV6+Series/Pavilion+dv6-6172nr-upgrades.html
    Confusion isn't it. To be at the safe side, I would follow the specs.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Html:select - very confusing

    I am having a lot of difficulty understanding how the html:select works - especially if you're working with different ypes of containers e.g. hashmaps, lists, collections. I'm especially having trouble with lists. Here's what I have (I'm building a struts application):
    Action Class
    List bdates = dbconfig.getBusinessDates();
    httpServletRequest.getSession().setAttribute("BusinessDates", busDates );JSP Page
    <%@ page import "import java.util.List" %>
    <%
    List getBusDates = (List) session.getAttribute("BusinessDates");
    request.setAttribute("busDate", getBusDates);
    %>
    <html:select property="businessdate">
            <html:options collection="busDate" property="bdate"/>
    </html:select>I get an error saying no get property found for bdate in bean. So then I manually go to my ActionForm for this JSP page and add bdate as a string variable and its getter and setter functions. But it still doesnt work.
    Can someone please explain to me how I can use a List with an Html:select and html:option tags in JSP?
    Any assistance much appreciated.

    1) There's no need to pull the collection out of the session and put it in the request...
    <html:options collection="BusinessDates" scope="session" property="bdate" labelProperty="bdateLabel" />
    2) The property and labelProperty values are used to map to fields in the objects that are in the list. It doesn't matter what is in the list, as long as those classes have methods:
    public String getBdate() {
       return ...;
    public String getBdateLabel() {
       return ...;
    }

  • Confused about CSS or HTML....

    Okay... I really don't know much about this stuff, so I'm sorry if this is a dumb question. I'm trying to add drop down menus to my website. When a company (dynamicdrives.com) includes codes for a specific menu that I can edit, should I use the CSS one or HTML one? In iweb, I am clicking on adding an HTML snippet and then putting in the code. So, from those, is there one that will work better in iWeb? Is there even a difference? Do I need both? Is there one that will be compatible with Firefox, IE, and more? I am having trouble getting menus to look good on IE. Thanks!

    Content = HTML.  Style = CSS.  To achieve a 2-column layout, you need both HTML and CSS.
    1) Organize your HTML content in a logical manner from top to bottom of page.
    2) Style your content with CSS floats and margins to create columns.
    See following links for demos and tutorials:
    2-col layout
    http://alt-web.com/TEMPLATES/2-col-fixed-layout.shtml
    basic grid -
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    wrapping text around images -
    http://alt-web.com/DEMOS/CSS2-Captions-on-floated-images.shtml
    Happy 2010!
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Confusion about .html extension

    Hi Guys,
    I have a problem with my site at www.dubkasm.com, I find that if I type in just dubkasm.com it takes me straight to my home.html page, but when I type dubkasm.com/remixed it won't take me to that sub page, unless I type the address with.html at the end.
    The problem is, I have quoted the link dubkasm.com/remixed on my album artwork (already in shops) but when this is typed in, the page is not found! Is there a way I can remedy this
    I hope this is clear. Thanks for your help!
    Ben

    For answer see your other post.

  • [STRUTS] Html:errors , little confused !?!

    Hello
    I've 2 login forms (UserForm, CompanyForm)
    In the resource bundle I've setted the "header,footer,..."
    errors.prefix=<li>
    errors.suffix=</li>
    errors.header=<h4><font color="red">Attenzione si sono commessi errori</font></h4><ul>
    errors.footer=</ul>Now I want to display the appropriate error message under the specific form that have done the mistake. So the errors of the "UserForm" must be displayed in a place of my html and the "CompanyForm" in another place.
    I try to put this under my UserForm
    <html:errors property="usernameUser"/>
    <html:errors property="passwordUser"/>and this under my CompanyForm
    <html:errors property="usernameCompany"/>
    <html:errors property="passwordCompany"/>this works wrong because if the user(or company) don't insert the username and the password the 2 html:errors display 2 times the "errors.header" key value of the resource bundle.
    How can I display all the errors of a specific form in a unique "errors.header" (a unique html:errors tag)?
    How can I solve this problem?
    thanks in advance
    SARA

    Rather than the <html:errors> tag, try <html:messages>
    <logic:messagesPresent>
    <h4><font color="red"><bean:message key="errors.header"/></font></h4><ul>
    <html:messages id="error" property="usernameUser">
       <bean:write name="error"/>
    </html:messages>
    <html:messages id="error" property="passwordUser">
       <bean:write name="error"/>
    </html:messages>
    </logic:messagesPresent>Yes the code is quite a bit longer, but I think it should work.
    It also means you don't have to encode the html into the properties bundle.

  • Form processing using getParameter Names() and Values() Seriously confused

    Hi all,
    I have an HTML table containing multiple <INPUT name='Flows[]' ...> to create arrays. However, when I try to process the code in my servlet it gets ignored and no excpetions are thrown. I know I must be doing something wrong but for the life of me I cannot see what or where it is.
    Enumeration <String> paramNames = request.getParameterNames() ;
    double dFlows[] = null ;
    while (paramNames.hasMoreElements())
         try
              String pName = paramNames.nextElement() ;
              System.out.println(String.format("Parameter Name : %s Length %d", pName, pName.length())) ;
              if (pName == "Flows[]")
                   String pValues[] = request.getParameterValues(pName) ;
                   nParams = pValues.length ;
                   System.out.println(String.format("Found %s Flow Readings", nParams)) ;
                   dFlows = new double[nParams] ;
                   for (p = 0; p < nParams; p++)
                        dFlows[p] = Double.parseDouble(pValues[p]) ;
              else
                   System.out.println(String.format("%s != Flows[]", pName)) ;
         catch (Exception e)
              e.printStackTrace(System.out) ;
    }The output I get in the log file is :
    Parameter Name : Flows[] : Length 7
    Flows[] != Flows[]
    If the log is to believed then the error is in the if (pName == "Flows[]") but the log proves this to be wrong!
    Can anyone help me out with this, I really am seriously confused.
    Bill Moo

              if (pName == "Flows[]")
              if (pName.equals("Flows[]"))But why on earth are you looping through all the parameters when you already know the name? Use request.getParameter("Flows[]");

  • Uploading an image to a servlet with out  html form

    Hello,
    I had a look around the forum and could not find an answer to my question.
    I am trying to unload an image that is in a byte array to a servlet. the image is on the mobile phone. the mobile phone does not have html form to upload the picture.
    Is there any other way of uploading instead of using html form to invoke the servlet. It is just the connection bit that is confusing me. When the servlet is invoked then it can open an inputstream and take in the image.
    I hope this is clear and that some one else has done it.
    thanks
    martin

    search here and/or search google for "send byte array to servlet"
    it's certainly easy to find as far as i can tell
    first google result:
    http://forum.java.sun.com/thread.jspa?messageID=10173137&tstart=0

  • Sharepoint Designer 2010 and HTML Editing

    Hi -
    This may sound like a stupid question, but is there WYSIWG in Sharepoint Designer 2010?  I've got to do basic HTML code, insert items, insert links, insert columns/tables, etc.  I don't see a way to do this in Designer?  Maybe I'm blind?  I
    am used to coding in Dreamweaver.   Should I just assume that I'm going to have to continue to do my code/designs in Dreamweaver and then copy it in to Designer?  
    I'm pretty confused, I thought I could do some basic HTML (aside of editing fonts/colors etc) in Designer.  I'm basically trying to create a wiki page with FAQ style text and some images and buttons.
    I'm new to all this, I come from an admin and web design background, not really a Sharepoint Design/Development background.
    Thanks for any help!

    You will normally need to edit a page in Advanced mode to get access to modify its HTML. This will unghost the page.
    Nikolas Charlebois-Laprade Microsoft Certified Professional & Software Engineer http://nikcharlebois.com

  • Passing values from HTML to JSP method,

    Hello:
    I am starting to wonder if what I am doing will ever work...
    Ok, I am trying to avoid javascript. I have a drop-down list named "year" and I wish to call a JSP method that is defined/declared in the same JSP.
    First, I want to pass the chosen option to the method and then store the name/value in a global variable.
    Second, depending on what the user selects, I will get values from an array defined/initialized on page load AND display those values in another drop-down list.
    As a test, and until now, I have done this. I am not passing anything yet, I just wanted to test this "fuzzy logic" I am having:
    <%!
    String currentYear;
    private void showDaysInDDList()
    currentYear = request.getparameter("year");
    %>
    Then on the HTML part of the page I have a drop-down list:
    <html>
    <head>
    <title></title>
    <link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body bgcolor="ffffcc">
    <form method="POST" name="form1" action="left.jsp">
    <select name="year" onchange="<%=showDaysInDDList()%>">
         <option></option>
         </select>
    I am getting the following errors:
    An error occurred at line: 105 in the jsp file: /p1/left.jsp
    request cannot be resolved
    ....and regarding to the onchange="<%=showDaysInDDList()%>"> part I am getting the following:
    An error occurred at line: 204 in the jsp file: /p1/left.jsp
    The method print(boolean) in the type JspWriter is not applicable for the arguments (void)
    In the action="left.jsp", left.jsp is the same page where the drop-down list and the method is. I am not sure if that is another error.
    I will continue here with my coffee ... any help will be extremely appreciated !!..
    I'll have to shut down my "asp.net mind" for a while..
    I'll reply later,
    MMS

    Ok, this is a bit messy here. I don't know how much you've read up on JSP but you seem confused about some fundamentals to me. However, you mention that you've worked with ASP .net so I'm going to assume you do have some notion of how thing should work in general.
    1. JSP is on the server-side and events like onchange that you've used take place on the client-side after the JSP/ servlet code has run and produced the HTML page. So calling your showDaysInDDList() will not work.
    2. Are you sure you know how the declaration tags ( <%! %> ) work? When you normally write JSP code without these tags, all that code gets compiled into the service method of the corresponding servlet that the JSP gets turned into. But, you can declare your own methods and variables outside the service method by using these tags.
    So what you're effectively doing is declaring
    private String/ void showDaysInDDList()
    }and followed by your usual _jspService()
    public void _jspService(HttpServletRequest request,
       HttpServletResponse  response)
         throws IOException, ServletException
    }Now it may be clear, that the request object is not available in the showDaysInDDList() method by default; you'll either have to declare it ( not sure if it's good programming practice or not ) or pass the required parameters in the call.
    3. Like you seem to have realized, that error about the printing of booleans was related to the return type of your method because <%= %> translates to out.println(); and since the argument was the method call, the return value was to be printed which here was a void ( not sure why it says boolean though :D ).
    Read up on this introduction to JSPs http://java.sun.com/developer/onlineTraining/JSPIntro/contents.html, seems to be pretty good and covers everything in quick, short chunks.
    Hope this helps.

  • Why am I having a major cursor confusion problem!?

    Okay here it goes: ( I am currently running CS5 Photoshop for Mac)  I have a document open that I want to edit...  I go to select the brush tool. I select it then proceed to the top left screen to adjust the size of  the brush and the type....the thing is the icon that is scrolling over the different sizes and  brushes are "scissors"---not an arrow or a hand...only scissors. I have to select the brush size  with a pair of scissors...  So I select the size then get out of that...I then proceed to go to paint on the picture I want to  edit...instead of there being a brush (or a circle), there is an eyedropper that I am painting with!!!  What in the world!? I just noticed the problem and don't know why my icons are confused. I  deleted photoshop and re installed it, but it's still doing the same thing. I made sure that the  brush was selected and not the eyedropper about twenty times to see if it was user error...it  wasn't.  Now this isn't the only issue...just the first one I noticed. After playing around with Photoshop  and running across the first problem, I decided that maybe the program needed an update. I  went ahead and updated the program and now discovered some newer issues:  Same document is up that I want to edit. I go to use the burn tool, click on it--scroll over to the  picture and I see the dodge tool. I click on the tool bar to change to the dodge tool--scroll over  to the picture again and see the burn tool! It's as if all my tool icons are jumbled and misplaced!  I am having issues with about 90% of my tools I don't know what's going on.   I was shown a link on Adobe's website that said if I update my  Mac software to 10.6.6 I may experience problems with photoshop and other programs..  http://kb2.adobe.com/cps/881/cpsid_88159.html   I am just really at a dead end with trying to fix this..because I don't know what to do! I am  stumped. Please help! I'm desperate for an answer!!  The CPU settings thing...I tried it with it enabled and disabled...still the same issues!

    I  deleted photoshop and re installed it,
    Deleting Photoshop is not advisable, you should have un-installed it.
    Boilerplate-text:
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.

  • FW HTML not importing correctly into DW

    Hello,
    I have made a navbar in FW and exported it following some tutorials I've watched.  I have imported it into some of the pages on my site in DW and the import works fine.  However, on a number of other pages, I insert my cursor in the "topnav" div and when I import it, the table goes straight to the top of the code and when I refresh the CSS, all my styles from before disappear and becomes a blank white page.  I think it may have something to do with my stylesheet because the other pages that it does work properly on is a different stylesheet, but I cannot figure out where the issue is.
    I have attached code below.  The first section is what it looks like when I try to import the navbar into the topnav div.  The second section is the code for the stylesheet that goes along with it.  And third, is the CSS code for the one that works correctly.
    I appreciate any help given.  Thanks!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head><div id="FWTableContainer963773682">
      <table style="display: inline-table;" border="0" cellpadding="0" cellspacing="0" width="1024">
        <!-- fwtable fwsrc="navbar.png" fwpage="Page 1" fwbase="navbar.png" fwstyle="Dreamweaver" fwdocid = "963773682" fwnested="0" -->
        <tr>
          <td><img src="images/navbar/spacer.gif" width="54" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="76" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="20" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="76" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="20" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="98" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="20" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="101" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="20" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="353" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="22" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="110" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="54" height="1" border="0" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="1" height="1" border="0" alt="" /></td>
        </tr>
        <tr>
          <td rowspan="3"><img name="navbar_r1_c1_s1" src="images/navbar/navbar_r1_c1_s1.png" width="54" height="58" border="0" id="navbar_r1_c1_s1" alt="" /></td>
          <td colspan="11"><img name="navbar_r1_c2_s1" src="images/navbar/navbar_r1_c2_s1.png" width="916" height="13" border="0" id="navbar_r1_c2_s1" alt="" /></td>
          <td rowspan="3"><img name="navbar_r1_c13_s1" src="images/navbar/navbar_r1_c13_s1.png" width="54" height="58" border="0" id="navbar_r1_c13_s1" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="1" height="13" border="0" alt="" /></td>
        </tr>
        <tr>
          <td><a href="home.html" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','home_button_s1','images/navbar/home_button_s2.png','image s/navbar/home_button_s4.png',1);" onclick="MM_nbGroup('down','navbar1','home_button_s1','images/navbar/home_button_s3.png', 1);"><img name="home_button_s1" src="images/navbar/home_button_s1.png" width="76" height="32" border="0" id="home_button_s1" alt="link to home page" /></a></td>
          <td><img name="navbar_r2_c3_s1" src="images/navbar/navbar_r2_c3_s1.png" width="20" height="32" border="0" id="navbar_r2_c3_s1" alt="" /></td>
          <td><a href="javascript:;" onmouseout="MM_nbGroup('out');MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0428165630_0', 'MMMenu0428165630_0',0,40,'about_dd_button_s1');MM_nbGroup('over','about_dd_button_s1','i mages/navbar/about_dd_button_s2.png','images/navbar/about_dd_button_s4.png',1);" onclick="MM_nbGroup('down','navbar1','about_dd_button_s1','images/navbar/about_dd_button_ s3.png',1);"><img name="about_dd_button_s1" src="images/navbar/about_dd_button_s1.png" width="76" height="32" border="0" id="about_dd_button_s1" alt="" /></a></td>
          <td><img name="navbar_r2_c5_s1" src="images/navbar/navbar_r2_c5_s1.png" width="20" height="32" border="0" id="navbar_r2_c5_s1" alt="" /></td>
          <td><a href="javascript:;" onmouseout="MM_nbGroup('out');MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0428165630_1', 'MMMenu0428165630_1',0,40,'allaboard_dd_button_s1');MM_nbGroup('over','allaboard_dd_butto n_s1','images/navbar/allaboard_dd_button_s2.png','images/navbar/allaboard_dd_button_s4.png ',1);" onclick="MM_nbGroup('down','navbar1','allaboard_dd_button_s1','images/navbar/allaboard_dd _button_s3.png',1);"><img name="allaboard_dd_button_s1" src="images/navbar/allaboard_dd_button_s1.png" width="98" height="32" border="0" id="allaboard_dd_button_s1" alt="" /></a></td>
          <td><img name="navbar_r2_c7_s1" src="images/navbar/navbar_r2_c7_s1.png" width="20" height="32" border="0" id="navbar_r2_c7_s1" alt="" /></td>
          <td><a href="equipment.html" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','equip_button_s1','images/navbar/equip_button_s2.png','ima ges/navbar/equip_button_s4.png',1);" onclick="MM_nbGroup('down','navbar1','equip_button_s1','images/navbar/equip_button_s3.png ',1);"><img name="equip_button_s1" src="images/navbar/equip_button_s1.png" width="101" height="32" border="0" id="equip_button_s1" alt="link to equipment page" /></a></td>
          <td><img name="navbar_r2_c9_s1" src="images/navbar/navbar_r2_c9_s1.png" width="20" height="32" border="0" id="navbar_r2_c9_s1" alt="" /></td>
          <td><a href="javascript:;" onmouseout="MM_nbGroup('out');MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0428165630_2', 'MMMenu0428165630_2',0,40,'ohra_dd_button_s1');MM_nbGroup('over','ohra_dd_button_s1','ima ges/navbar/ohra_dd_button_s2.png','images/navbar/ohra_dd_button_s4.png',1);" onclick="MM_nbGroup('down','navbar1','ohra_dd_button_s1','images/navbar/ohra_dd_button_s3 .png',1);"><img name="ohra_dd_button_s1" src="images/navbar/ohra_dd_button_s1.png" width="353" height="32" border="0" id="ohra_dd_button_s1" alt="" /></a></td>
          <td><img name="navbar_r2_c11_s1" src="images/navbar/navbar_r2_c11_s1.png" width="22" height="32" border="0" id="navbar_r2_c11_s1" alt="" /></td>
          <td><a href="fundraising.html" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','fundraising_button_s1','images/navbar/fundraising_button_ s2.png','images/navbar/fundraising_button_s4.png',1);" onclick="MM_nbGroup('down','navbar1','fundraising_button_s1','images/navbar/fundraising_b utton_s3.png',1);"><img name="fundraising_button_s1" src="images/navbar/fundraising_button_s1.png" width="110" height="32" border="0" id="fundraising_button_s1" alt="link to fundraising page" /></a></td>
          <td><img src="images/navbar/spacer.gif" width="1" height="32" border="0" alt="" /></td>
        </tr>
        <tr>
          <td colspan="11"><img name="navbar_r3_c2_s1" src="images/navbar/navbar_r3_c2_s1.png" width="916" height="13" border="0" id="navbar_r3_c2_s1" alt="" /></td>
          <td><img src="images/navbar/spacer.gif" width="1" height="13" border="0" alt="" /></td>
        </tr>
      </table>
      <div id="MMMenuContainer0428165630_0">
        <div id="MMMenu0428165630_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"><a href="inthenews.html" id="MMMenu0428165630_0_Item_0" class="MMMIFVStyleMMMenu0428165630_0" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_0');">In the News</a><a href="history.html" id="MMMenu0428165630_0_Item_1" class="MMMIVStyleMMMenu0428165630_0" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_0');">History</a><a href="location.html" id="MMMenu0428165630_0_Item_2" class="MMMIVStyleMMMenu0428165630_0" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_0');">Location</a><a href="photogallery.html" id="MMMenu0428165630_0_Item_3" class="MMMIVStyleMMMenu0428165630_0" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_0');">Photo Gallery</a></div>
      </div>
      <div id="MMMenuContainer0428165630_1">
        <div id="MMMenu0428165630_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"><a href="schedevents.html" id="MMMenu0428165630_1_Item_0" class="MMMIFVStyleMMMenu0428165630_1" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_1');">Schedule/Events</a><a href="fares.html" id="MMMenu0428165630_1_Item_1" class="MMMIVStyleMMMenu0428165630_1" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_1');">Fares</a><a href="charters.html" id="MMMenu0428165630_1_Item_2" class="MMMIVStyleMMMenu0428165630_1" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_1');">Charters</a></div>
      </div>
      <div id="MMMenuContainer0428165630_2">
        <div id="MMMenu0428165630_2" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"><a href="ohra.html" id="MMMenu0428165630_2_Item_0" class="MMMIFVStyleMMMenu0428165630_2" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_2');">About OHRA</a><a href="donorrec.html" id="MMMenu0428165630_2_Item_1" class="MMMIVStyleMMMenu0428165630_2" onmouseover="MM_menuOverMenuItem('MMMenu0428165630_2');">Donor Recognition</a></div>
      </div>
    </div>
    </head>
    <body>
    <div id="wrapper">
      <div id="header"></div>
      <div id="topnav"></div>
      <div id="content">
        <p> </p>
      </div>
      <div id="footer"></div>
    </div>
    <div id="info"></div>
    </body>
    </html>
    body {
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    background-color: #6B604A;
    margin: 0px;
    #wrapper {
    width: 1024px;
    margin-right: auto;
    margin-left: auto;
    #wrapper #header {
    background-image: url(../images/layout/header.gif);
    background-repeat: no-repeat;
    height: 206px;
    margin-right: auto;
    margin-left: auto;
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    font-style: italic;
    color: #FFF;
    text-align: right;
    padding-right: 60px;
    word-spacing: 25px;
    white-space: normal;
    line-height: 15px;
    #wrapper #topnav {
    background-image: url(../images/layout/navbar.png);
    height: 70px;
    margin-right: auto;
    margin-left: auto;
    background-repeat: no-repeat;
    font-family: Helvetica, Verdana, Arial;
    font-size: 18px;
    color: #E7E0D3;
    text-align: center;
    padding: 0px;
    #wrapper #content {
    background-image: url(../images/layout/body.gif);
    background-repeat: repeat-y;
    margin-right: auto;
    margin-left: auto;
    #wrapper #footer {
    background-image: url(../images/layout/footer.gif);
    height: 24px;
    margin-right: auto;
    margin-left: auto;
    background-repeat: no-repeat;
    #info {
    width: 1004px;
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
    font-style: italic;
    text-align: right;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    color: #E7E0D3;
    .boldred {
    color: #501802;
    font-size: 16px;
    font-weight: bold;
    font-family: Helvetica, Verdana, Arial;
    letter-spacing: normal;
    text-align: center;
    body {
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    background-color: #6B604A;
    margin: 0px;
    #wrapper {
    width: 1024px;
    margin-right: auto;
    margin-left: auto;
    #wrapper #header {
    background-image: url(../images/layout/header.gif);
    background-repeat: no-repeat;
    height: 206px;
    margin-right: auto;
    margin-left: auto;
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    font-style: italic;
    color: #FFF;
    text-align: right;
    padding-right: 60px;
    word-spacing: 25px;
    white-space: normal;
    line-height: 15px;
    #wrapper #topnav {
    background-image: url(../images/layout/navbar.png);
    height: 70px;
    margin-right: auto;
    margin-left: auto;
    background-repeat: no-repeat;
    font-family: Helvetica, Verdana, Arial;
    font-size: 18px;
    color: #E7E0D3;
    text-align: center;
    padding: 0px;
    #wrapper #content {
    background-image: url(../images/layout/body.gif);
    background-repeat: repeat-y;
    margin-right: auto;
    margin-left: auto;
    #wrapper #content #topcol01 {
    text-align: center;
    width: 966px;
    margin-top: 0px;
    margin-right: 29px;
    margin-bottom: 0px;
    margin-left: 29px;
    padding-top: 27px;
    padding-bottom: 27px;
    #wrapper #content #leftcol01 {
    background-color: #501802;
    width: 265px;
    margin-left: 69px;
    background-repeat: repeat-y;
    text-align: center;
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    color: #E7E0D3;
    margin-bottom: 20px;
    float: left;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 20px;
    display: inline;
    overflow: visible;
    line-height: 110%;
    word-spacing: normal;
    #wrapper #content #rightcol01 {
    width: 606px;
    float: left;
    text-align: left;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin: 0px;
    color: #501802;
    line-height: 115%;
    #wrapper #content #bottomcol01 {
    margin-left: 29px;
    border-top-style: solid;
    margin-right: 29px;
    clear: both;
    float: none;
    font-style: italic;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-top-width: thin;
    border-top-color: #501802;
    word-spacing: 30px;
    .clearbottomcol01 {
    clear: both;
    #wrapper #footer {
    background-image: url(../images/layout/footer.gif);
    height: 24px;
    margin-right: auto;
    margin-left: auto;
    background-repeat: no-repeat;
    #info {
    width: 1004px;
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
    font-style: italic;
    text-align: right;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    color: #E7E0D3;
    .boldred {
    color: #501802;
    font-size: 16px;
    font-weight: bold;
    font-family: Helvetica, Verdana, Arial;
    letter-spacing: normal;
    text-align: center;

    With this problem, it would be better to give us a link to an online web page. It's easier to spot the problem than to wade through a lot of code and you would have better success in getting others in the forum to help.
    One problem that sticks out is that you imported the code generated by FW into the head section of your document. It should be in the body section. That problem should be obvious to you if you know a little about markup and can recognize javascript. I mention this because if you don't know what you're doing, then importing FW images and code into DW can be very confusing. It might be easier for you to work on the Dreamweaver side and find a good tutorial about building a menu in DW. Most web designers will tell you that it's not a good idea to use code generated by Fireworks although it can work.
    Let me make two points. First, if some of your pages are working okay (you said the import worked for some pages), then use a page that is working to override a page that is not working by doing a Save As and then do a little editing if necessary.
    Second, if your styles are not working in your page, you probably have a link problem. In the markup you provided, I don't see a link to your css stylesheet on your web page. But, again, if you do a Save As using a page that works, this problem should be solved by acting on the advice of the first point.

Maybe you are looking for

  • How do you access what you backed up on the computer?

    I am trying to back up my pictures so if they get deleted, I have them backed up.

  • Doubt on simple select query

    Hello experts, please check this code. CHECK NOT T_DELIVERIES[] IS INITIAL.   SELECT MANDT VBELV POSNV VBELN POSNN INTO TABLE T_VBFA FROM VBFA     FOR ALL ENTRIES IN T_DELIVERIES     WHERE VBELN EQ T_DELIVERIES-VBELN       AND POSNN EQ T_DELIVERIES-P

  • ATTN: Murray (or Al, or Gary) on hover issues...

    (Sorry, that other thread went sour...) I finally have an online version better demonstrating the all-css mouseover effects I've been trying to accomplish. http://www.vilverset.com/test1.html Now you will see 4 columns of identical text (3 on 1 row,

  • CS SDK examples

    For those who are new to the CS SDK, I'd like to suggest the series of post in the CS SDK blog made by Olav Kvern in 2011 (look for them aroud page 4 and previous ones). Yes Extension Builder comes with several demo panels, but Olav articles digged m

  • CS2 Mac activating problem

    I use a Mac G4 OS Leopard. My hard disk died on me, and my applications were on that disk. I can't de-activate the CS on that HD. I have two other HDs on the computer, so I installed the CS on one of the extra HD but the problem is that I can't activ