Trouble with Meta Tags

I manually add the tags meta name="description" and meta
name="keywords" to the html code in RH7. Then when I save the file
it strips out the quote marks around the words "description" and
"keywords". Then when I compile as WebHelp the tags are completely
removed. What is up with this? Surely there must be a way to use
these common tags in RH.

Hi Esch
You might try making the following changes. Note that
Dreamweaver likely added its own Meta tag to state what the editor
was. RoboHelp does something similar. So perhaps change the
RoboHelp meta tag to reflect Dreamweaver. Sort of "fooling"
RoboHelp into thinking Dreamweaver created the topic. You would
also probably want to remove any other RoboHelp specific tags just
in case. (I think there are two or three others. Maybe more.)
My thought here is that if you could trick RoboHelp into
believing Dreamweaver created the page it would leave it alone.
Assuming, of course, that your observation is spot on with RoboHelp
leaving the tags alone.
Cheers... Rick

Similar Messages

  • Can't get a web page to validate with meta tags with w3c??

    I have created a website for my school projects, and every week I have to add something to it for the course, and every monday I have to submit my code in a zipped folder to the professor, after running it through the w3c validation page, and passing, This current week, I was instructed to swork on SEO for my site, and add meta tags to the site to fish for traffic, and then I have to validate it through w3c and submit. Well, I did not complete this because w3c would not validate my page until I removed every single meta tag from the code, and I cannot for the life of me understand the error that is holding me back. So, in an effort to see if I could get some help here, I have included my code, and will try to explain what is happening and the code as well as the error from the validator service. Please have a look, help me, because I am totally lost here....
    Thanks in advance!!
    zlloyd1
    This is my code:
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>zlloyd on the web</title><meta name="" content="Zachariah Lloyd, basketball, computers" /><meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" type="text/css" href="stylez.css" />
    </head>
    <body><div id="container"><h1>ZLLOYD ON THE WEB</h1> <div id="navbar"><a href="about.html">About me</a> <a href="OceanView.html">Ocean View</a> <a href="swimming.html">Swimming</a> <a href="gaming.html">Gaming</a> <a href="BBall.html">Basketball</a></div><div><a href="gaming.html"><img src="images/Gaming-Desktop-Configuration.jpg" width="107" height="239" alt="console" /></a><a href="BBall.html"><img src="images/300px-Basketball_pictogram.svg.png" width="82" height="76" alt="BallinGuy" /></a><a href="swimming.html"><img src="images/swimming.jpg" width="100" height="237" alt="Strokin" /></a></div></div>
    <a href="contactsupport.html">Support </a>
    </body>
    </html>
    and this is what w3c says when I try to validate the page:
    Line 5, Column 131: there is no attribute "fttp-equiv"
    …mputers, swimming" /><meta fttp-equiv="Content-Type" content="text/html; chars…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
    What in the world does this mean, because I am seriously lost on this, and the only way I could get around this was to completely remove the entire line, "<meta name="" content="Zachariah Lloyd, basketball, computers" /><meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />", which removed all of my meta tags completely, in order to validate it?? I cannot see what is setting this thing off like that, I have never gottena validation error before, and I now know that they are written as meaningless gibberish that does not even remotely explain what is wrong, at least not to me....
    Please help!!!!

    Line 4 and line 5 are trying to do the same thing. Take out the
    <meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />
    line entirely and you will be good.

  • Trouble with struts tags

    Hi,
    I am new to struts and am getting confused with the tags.
    I have few doubts.
    My Actionform would be -
    public class AForm extends ActionForm {
        //~ Instance fields ********************************************************
        String deptNo;
        String dName;
        String loc;
        //~ Methods ****************************************************************
         * This function
         * @param deptNo DOCUMENT ME!
        public void setDeptNo(String deptNo) {
            this.deptNo = deptNo;
         * This function
         * @return DOCUMENT ME!
        public String getDeptNo() {
            return deptNo;
        }In my action class I say -
    selectSql = "SELECT DEPTNO FROM DEPT";
                    pStmt = conn.prepareStatement(selectSql);
                    theResultSet = pStmt.executeQuery();
                    ArrayList _arrayList = new ArrayList();
                     while (theResultSet.next()) {
                        AForm theAForm = new AForm();
                        theAForm.setDeptNo(theResultSet.getString("DEPTNO"));
                        _arrayList.add(theAForm);
                    req.setAttribute("arrayListOfDeptnos", _arrayList);My question is -
    How do I get this arraylist in the JSP and iterate through it? Should I code in this way? Is there an more elegant way to do it??
    My JSP page
    <%   
              java.util.ArrayList ss = (java.util.ArrayList)request.getAttribute("arrayListOfDeptnos");
              if(ss!=null){
        %>
          <logic:iterate id="booId" scope="request" collection="<%=ss%>" type="mypackage27.AForm">
            <html:link action="/getme" paramId="theNum" paramProperty="deptNo" paramName="booId">
              <bean:write name="booId" property="deptNo"/>
            </html:link>
          </logic:iterate>
          <%  
        %>I know this must be very trivial ...

    Rather than using collection attribute (which requires a runtime expression) instead use the name attribute.
    Also, if you aren't going to use the variable "booId" in scriptlet code/expressions, you can leave out the "type" attribute.
    Probably the scope attribute as well.
    That all boils down to:
    <logic:iterate id="booId" name="arrayListOfDeptnos">
      <html:link action="/getme" paramId="theNum" paramProperty="deptNo" paramName="booId">
        <bean:write name="booId" property="deptNo"/>
      </html:link>
    </logic:iterate>And for completeness, the same thing using some JSTL code:
    <c:forEach var="booId" items="${requestScope.namearrayListOfDeptnos}">
      <html:link action="/getme" paramId="theNum" paramProperty="deptNo" paramName="booId">
        <c:out value="${booId.deptNo}"/>
      </html:link>
    </c:forEach>Cheers,
    evnafets

  • Trouble with MergeFormat tags appearing in Word doc

    Hello! I have been living with this problem for ages, and
    just manually deleting them. But, I now have a new coworker who
    does not get the same problem when we single-source the same
    project to Word.
    When I create a single-source Word document, before each
    topic heading in the newly generated Word doc, I get a tag like
    this: { XE "GPA:setting up" \MERGEFORMAT} I get one for each index
    entry for the topic. I do not generate an index when I generate
    printed docs. I'm trying to figure out where to get rid of these.
    It looks like a Word setting. My coworker and I have looked at all
    of our options in both Robo and Word, and can't seem to find which
    one made hers go away.
    I use RH7 and Word 2003.
    Any ideas? Thank you for your help in advance.

    Sorry - I think I figured it out. I have to look at
    formatting (Show/Hide Formatting) when I use Word, she does not. I
    see now that the index entry tags don't print when you print the
    Word docs (so I don't need to delete them) - but they are ugly to
    look at as you are editing! Not sure if there is any other way to
    view all other formatting marks without those. As long as I don't
    have to delete them all anymore, and they don't appear in the
    printed docs, I'm happy.
    Thanks anyway.

  • Trouble with XML tags

    I have tagged individual elements of text within a text box with tags from an imported xml file. When I import another xml file with the exact same tags but different content two of my tagged elements won't update. I have tried untagging and retagging and I can't get it to update with the new content. Another bit of info is that I have another text box with some of the same tags in it and that one will update just fine. Can anyone tell me what I am missing?
    Thanks.
    Chad

    Rather than using collection attribute (which requires a runtime expression) instead use the name attribute.
    Also, if you aren't going to use the variable "booId" in scriptlet code/expressions, you can leave out the "type" attribute.
    Probably the scope attribute as well.
    That all boils down to:
    <logic:iterate id="booId" name="arrayListOfDeptnos">
      <html:link action="/getme" paramId="theNum" paramProperty="deptNo" paramName="booId">
        <bean:write name="booId" property="deptNo"/>
      </html:link>
    </logic:iterate>And for completeness, the same thing using some JSTL code:
    <c:forEach var="booId" items="${requestScope.namearrayListOfDeptnos}">
      <html:link action="/getme" paramId="theNum" paramProperty="deptNo" paramName="booId">
        <c:out value="${booId.deptNo}"/>
      </html:link>
    </c:forEach>Cheers,
    evnafets

  • What is the best way to add "meta tags" in edge?

    Trying to add meta tags for search engines, what are the best ways to do this?

    With the latest version of Edge (3.0) is still the best practice to edit index.html or is there a better one?
    Y try for example...
    var meta1 = '<meta name="robots" content="index, follow" />';
    $(meta1).appendTo("head");
    ...in creationComplete or in document.compositionReady but I can't see these lines in index.html file, are stored in index_edgeActions.js file.
    But maybe that works to attach the meta tags with append to head because it does work fine (and neither are saved in the index.html):
    var favicon = "<link rel='shortcut icon' href='images/volicon.png' type='image/png'/>" ;
    $(favicon).appendTo("head");
    I don't know if Google detect meta tags stored in index_edgeAtions.js or is more recommended to modify index.html manually with notepad.
    Maybe the best practice are save and publish Edge project with a name different than index (for example project.an and project.html) and to create an index.html manually with meta tags, code of Google Analytics and Google Tag Manager, etc., and with HTML meta http-equiv Attribute for to redirect immediately to project.html generate with Edge (remember disallow project.html in robots.txt). In this way is not necessary to modify the index.html file each time that we publish.
    How do you see?

  • Meta Tags:  How to Paste into iWeb pages?

    I created Meta Tags on Go Daddy. I'm not really sure what Meta Tags are, but I understand they help my web site with keywords and search engines. Here's the Meta Tag codes I created (appears to be three codes).
    <title>Dana Point Bodycentre for gift certificates massage skin care body treatments</title>
    <meta name="description" content="Dana Point Bodycentre offers gift certificates, gift centre, day spa services for massage, skin care, body care, body treatments, medical skin care, botox, laser hair removal, med spa services and specials">
    <meta name="keywords" content="Dana Point, Bodycentre, massage, skin care, gift ideas, gift certificates, gift centre, holiday, specials, book online, instant gift certificates, botox, medical skin care, laser hair removal, med spa, therapist, boutique, retail">
    Go Daddy says to "paste the Meta Tag into the Header of my page." I don't understand what they mean by that. I asked them for more help, but they won't help me any further. I need to know exactly where to paste these codes? I created these codes for my Home page, so I suppose the codes go into the .HTML file, or the .file for the web folder. But where? On the .HTML file, when I open it up in Text Wrangler, I see a lengthy text of codes. Where do I paste these codes? And what is the "header" of my page mean?

    NOTE 1: about Meta-Tags and Search engine optimization:
    Some time ago you could "feed" search engines with words by putting them in the meta tags. Nowadays search engines ignore those tags (probably due to spamming) and only look at the content.
    I never did any Meta Tags and it seems to me that my site works fine without Meta Tags on google... Google include PageTitle and PageContent and it works great without any optimisation. Another issue with Meta Tags on iWeb now is that if I publish to a folder I can add MetaTags with text editor but next time I publish to a folder iWeb will overwrite that file and Meta Tags are gone... I then would have to make them all over again... Time... Time... Time...
    Bottom line: I see no need for Meta Tags
    But people reading this... You're free to decide by your own... it's up to you...
    *5 TIPS:*
    -Update your sitemaps
    -Make a second nav bar made of text links as previously explained
    -Further use synonyms in your content. Write your content so that it fits as good as possible everything a 'googler' could search for.
    -Search engines don't look for tags, they look for the content of your pages.
    -In the end it’s all about three things: Content, Content and Content
    http://alyeska.altervista.org/en/iWebiWebGoogle.html
    Regards,
    Cédric

  • Which Domain Forwarding sites offer meta tags?

    I am soon going to publish my website through .mac with iweb. I have some expirience with webdesign in the past and I know that .mac does not have meta tag implementation.
    That being said I know some domain forwarding cann allow you to implement keywords and meta tags into the forwarding url. In the past I know .co.nr the free domain forwarding site allows this. that way when you searched for thissite.co.nr the keywords and description you entered would be displayed. I am not sure if other places allow for this same sort of meta tag placement for domain forwarding. This would really help with overcoming the issue with meta-tags in iWeb if possible.
    Does anyone know what domain sites offer this sort of feature? Does Godaddy.com?

    newmacguru,
    The situation is a little bit different with masked Domain Forwarding. The meta-information is placed into the frames code which is responsible for the masking. Since this code is generated by the domain forwarding setup, it is not available for editing like other iWeb HTML files. Futhermore, with a masked Domain Forwarding setup, search engines that find the domain URL only see the frames code and whatever meta-information is contained in the frames code. So even if you add meta-information to the iWeb HTML pages behind the masking domain name, the search engines will never see it.
    This is one major downside to using masked domain forwarding.

  • Using itemtype img tag and meta tag with {tag_largeimage}

    Hi everyone
    Just getting into using Social Media meta Tags for my online store using bc
    Schema.org markup for Google+
    Twitter Card data
    Open Graph data
    and I used this site for reference Must-Have Social Meta Tags for Twitter, Google+, Facebook and More - Moz
    Ive added this to my large product page and now ive entered the world of Schema.org markup and itemtype and im having trouble with images.
    for my large product page ive turned the meta tags from this...
    <meta itemprop="image" content="http://www.example.com/image.jpg">
    <meta name="twitter:image" content="http://www.example.com/image.html">
    <meta property="og:image" content="http://example.com/image.jpg" />
    to this
    <meta itemprop="image" content="{tag_largeimage}">
    <meta name="twitter:image" content="{tag_largeimage}">
    <meta property="og:image" content="{tag_largeimage}" />
    but the page doesnt like it and the page reads with 3 /> /> /> at the top of my html page for anyone to see meaning that bc doesnt like the code.
    also doesnt like it when i use
    <img itemprop="image" {tag_largeimage}" />
    turns into this
    <img alt="" itemprop="image" />
    Image is the only one im having a problem with so far any ideas if I can do anything about it. I dont want to have to manually add a http to every product.
    thanks
    Dave

    the meta tags work now.
    the only one i still cant get to work is the
    <img itemprop="image" {tag_largeimage}" />
    when I change it to _path the html editor saves it as
    <img alt="" itemprop="image_path" />
    so will have to leave that for now put I can still use alot of the itemprop tags to promote the page better than before.
    thanks for the help

  • How can I tag my uploaded songs with META information

    Hi,
    I am able to give some META info to my podcasts I uploaded in the RSS file.
    How can I give such meta Info to uploaded songs means they are distributed by iTunes store and available for downloads.
    As I am going thru a record label not direct Apple iTunes client I am looking to do it thru a webservice or something similar, like the Podcast ping.
    Thanks,
    Mantra

    Spotlight
    Takes some time for spotlight to index your drive before a spotlight search will work. For example you name a file with your job number, do a search, that may not come up until later.
    Will not search meta tags
    Bridge

  • To add meta tags, you open your published .html pages with TextEdit or any other text editor and modify as required. You have to do redo it each time you republish. Ihow do I do this? I need step by step instructions

    To add meta tags, you open your published .html pages with TextEdit or any other text editor and modify as required. You have to do redo it each time you republish. I need step by step instructions on how to accomplish this  please .

    Rage Sitemap Automator and iWeb SEO Tool are two different applications.
    Use SEO Tool to add the title tag and meta description. These need to be added to the html file for every page of your website. SEO Tool stores all these so that when you republish you only need to add tags to any new pages and click the re-apply button to refresh the existing ones.
    Once you have added. refreshe the tags with iWeb SEO Tool and uploaded the files with your FTP application, then open the site in Sitemap Automator and create and upload a new sitemap.
    Once you have set up accounts with Google, Yahoo and Bing, verified your site with each and submitted a sitemap, on subsequent publishing Sitemap Automator will resubmit the sitemap with one button click. It will also notify Ask.com whch doesn't require an account since you can add your domain name to this URL to ping them...
    http://submissions.ask.com/ping?sitemap=http%3A//www.domain.com/sitemap.xml

  • Trouble with "body" images lining up at the top

    Hi, I am having troubles with the #body style in my web page. I have inserted a table into the #body area and the the body editable region will not line up on the top with the sideBar editable region when I add text and apply my css to it. Can you look at the code and let me know what I am doing wrong? 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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Ram Restaurant &amp; Brewery</title>
    <!-- TemplateEndEditable -->
    <meta name="keywords" content="Ram Restaurant, The Ram restaurant, Ram Restaurant and brewpub, Ram Restaurant Group, Ram International" />
    <meta name="description" content="Welcome to The Ram!  Your stomach wants food.  Your tastebuds want beer.  Satisfy them both at the Ram Restaurant & Brewery." />
    <style type="text/css">
    <!--
    body {
    background-color: #333;
    margin: 0 auto;
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
    .navbar_center {
    text-align: center;
    -->
    </style>
    <link href="/RamWebsite_NEW/cssstyles.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Arial, Helvetica, sans-serif;
    color: #F00;
    margin: 0px;
    padding: 0px;
    a:link {
    color: #666;
    text-decoration: none;
    h1 {
    font-size: 36px;
    color: #000;
    h2 {
    font-size: 24px;
    color: #000;
    h3 {
    font-size: 18px;
    color: #000;
    h4 {
    font-size: 12px;
    color: #000;
    a:visited {
    text-decoration: none;
    color: #000;
    a:hover {
    text-decoration: underline;
    a:active {
    text-decoration: none;
    -->
    </style>
    <!--[if lte IE 8]>
    <style type="text/css">
    ul.MenuBarHorizontalul  li ul li ul li.MenuBarHorizontal, ul.MenuBarHorizontal li ul li.MenuBarHorizontal {
    width:100px;
    height:23px;
    </style>
    <![endif]-->
    <script src="/RamWebsite_NEW/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    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];}
    //-->
    </script>
    <link href="/RamWebsite_NEW/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body link="#000000" topmargin="0" onload="MM_preloadImages('/RamWebsite_NEW/images/Menu_rollover.jpg','/RamWebsite_NEW/imag es/EventsLink2_rollover.jpg','/RamWebsite_NEW/images/GiftCards_rollover.jpg','/RamWebsite_ NEW/images/BeerLink2_rollover.jpg')">
    <div id="wrapper">
    <div id="header">
        <table width="900" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <th width="200" height="36" rowspan="2" align="center" valign="middle" scope="col"><a href="http://www.theram.com"><img src="/RamWebsite_NEW/images/Ram-Logo-red.gif" alt="Ram Restaurant &amp; Brewery Logo" width="175" height="69" border="0" /></a></th>
            <th width="350" height="50" align="center" valign="middle" scope="col"> </th>
            <th width="200" align="center" valign="middle" scope="col"> </th>
            <th width="150" align="right" valign="middle" scope="col"><a href="http://www.facebook.com/home.php?#!/theramrestaurant?ref=ts"><img src="/RamWebsite_NEW/images/FacebookBox.gif" alt="Becoma a Facebook Fan!" width="40" height="40" border="0" /></a><a href="http://www.twitter.com/theram"><img src="/RamWebsite_NEW/images/TwitterBox.gif" alt="Follow Us on Twitter" width="40" height="40" hspace="30" border="0" /></a></th>
          </tr>
          <tr>
            <th colspan="3" align="right" scope="col"><ul id="MenuBar1" class="MenuBarHorizontal">
              <li><a class="MenuBarItemSubmenu" href="#">MENU</a>
                <ul>
                  <li><a href="#" class="MenuBarItemSubmenu">Idaho</a>
                    <ul>
                      <li><a href="/menus/idaho/boise.shtml">Boise</a></li>
                      <li><a href="/menus/idaho/meridian.shtml">Meridian</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Illinois</a>
                    <ul>
                      <li><a href="/menus/illinois/rosemont.shtml">Rosemont</a></li>
                      <li><a href="/menus/illinois/schaumburg.shtml">Schaumburg</a></li>
                      <li><a href="/menus/illinois/wheeling.shtml">Wheeling</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Indiana</a>
                    <ul>
                      <li><a href="/menus/indiana/fishers.shtml">Fishers</a></li>
                      <li><a href="/menus/indiana/indianapolis.shtml">Indianapolis</a></li>
    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Oregon</a>
                    <ul>
                      <li><a href="/menus/oregon/clackamas.shtml">Clackamas</a></li>
                      <li><a href="/menus/oregon/salem.shtml">Salem</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Washington</a>
                    <ul>
                      <li><a href="/menus/washington/kent.shtml">Kent</a></li>
                      <li><a href="/menus/washington/lacey.shtml">Lacey</a></li>
                      <li><a href="/menus/washington/lakewood.shtml">Lakewood</a></li>
                      <li><a href="/menus/washington/puyallup.shtml">Puyallup South Hill Mall</a></li>
                      <li><a href="/menus/washington/puyallup2.shtml">Puyallup Sunrise Village</a></li>
                      <li><a href="/menus/washington/northgate.shtml">Seattle Northgate</a></li>
                      <li><a href="/menus/washington/seattle.shtml">Seattle University Village</a></li>
                      <li><a href="/menus/washington/tacoma.shtml">Tacoma</a></li>
                    </ul>
                  </li>
                </ul>
              </li>
              <li><a href="#" class="MenuBarItemSubmenu">LOCATIONS</a>
                <ul>
                  <li><a href="#" class="MenuBarItemSubmenu">Idaho</a>
                    <ul>
                      <li><a href="/idaho/boiseNew.html">Boise</a></li>
                      <li><a href="/idaho/meridianNew.html">Meridian</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Illinois</a>
                    <ul>
                      <li><a href="/illinois/rosemontNew.html">Rosemont</a></li>
                      <li><a href="/illinois/schaumburgNew.html">Schaumburg</a></li>
                      <li><a href="/illinois/wheelingNew.html">Wheeling</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Indiana</a>
                    <ul>
                      <li><a href="/indiana/fishersNew.html">Fishers</a></li>
                      <li><a href="/indiana/indianapolisNew.html">Indianapolis</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Oregon</a>
                    <ul>
                      <li><a href="/oregon/clackamasNew.html">Clackamas</a></li>
                      <li><a href="/oregon/salemNew.html">Salem</a></li>
                    </ul>
                  </li>
                  <li><a href="#" class="MenuBarItemSubmenu">Washington</a>
                    <ul>
                      <li><a href="/washington/kentNew.html">Kent</a></li>
                      <li><a href="/washington/laceyNew.html">Lacey</a></li>
                      <li><a href="/washington/lakewoodNew.html">Lakewood</a></li>
                      <li><a href="/washington/puyallup-southHill-NEW.html">Puyallup South Hill Mall</a></li>
                      <li><a href="/washington/puyallup-Sunrise-New.html">Puyallup Sunrise Village</a></li>
                      <li><a href="/washington/northgateNew.html">Seattle Northgate</a></li>
                      <li><a href="/washington/seattleNew.html">Seattle University Village</a></li>
                      <li><a href="/washington/tacomaNew.html">Tacoma</a></li>
                    </ul>
                  </li>
                </ul>
              </li>
              <li><a class="MenuBarItemSubmenu" href="#">PROMOS</a>
                <ul>
                  <li><a href="/drink_specials.shtml">Drink Promos</a>              </li>
                  <li><a href="/food_specials.shtml">Food Promos</a></li>
    </ul>
              </li>
              <li><a href="/news.shtml">RAM NEWS</a></li>
              <li><a href="/about.shtml">ABOUT US</a></li>
              <li><a href="#" class="MenuBarItemSubmenu">CONTACT US</a>
                <ul>
                  <li><a href="/contact.shtml">General Info</a></li>
                  <li><a href="/employment.shtml">Careers</a></li>
                  <li><a href="/comments.shtml">Comments</a></li>
                </ul>
              </li>
              <li><a href="/banquets.shtml" class="MenuBarItemSubmenu">BANQUETS</a>
                <ul>
                  <li><a href="/banquets.shtml">Banquets</a></li>
                  <li><a href="/banquets-catering.shtml">Off-Site Catering</a></li>
                </ul>
              </li>
            </ul></th>
          </tr>
          <tr>
            <th colspan="4" align="center" valign="middle" scope="col"><img src="/RamWebsite_NEW/images/redbar.gif" width="900" height="11" /></th>
          </tr>
        </table>
    </div>
    <div id="body">
      <table width="900" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <th height="300" valign="top" scope="col"><table width="900" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <th width="225" align="center" valign="top" bgcolor="#000000" scope="col"><!-- TemplateBeginEditable name="sideBar" -->adfadsfds<!-- TemplateEndEditable --></th>
              <th width="675" align="left" valign="top" bgcolor="#FFFFFF" scope="col"><!-- TemplateBeginEditable name="body" -->
                <p><img src="/images/aboutus2.jpg" width="675" height="300" /></p>
                <p class="foodNameDesc">adfadslkj</p>
              <!-- TemplateEndEditable --></th>
            </tr>
          </table></th>
        </tr>
      </table>
    </div>
    <div id="bottomMenuSubPg">
      <table width="900" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <th width="200" align="center" scope="col"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Menu','','/RamWebsite_NEW/images/Menu_rollover.jpg',1)"><img src="/RamWebsite_NEW/images/Menu.jpg" alt="Menu" name="Menu" width="212" height="125" hspace="6" border="0" id="Menu" /></a></th>
          <th width="200" align="center" scope="col"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Big Horn Beer','','/RamWebsite_NEW/images/BeerLink2_rollover.jpg',1)"><img src="/RamWebsite_NEW/images/BeerLink2.jpg" alt="Big Horn Beer" name="Big Horn Beer" width="212" height="125" hspace="6" border="0" id="Big Horn Beer" /></a></th>
          <th width="200" align="center" scope="col"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Events','','/RamWebsite_NEW/images/EventsLink2_rollover.jpg',1 )"><img src="/RamWebsite_NEW/images/EventsLink2.jpg" alt="Events at the Ram" name="Events" width="212" height="125" hspace="6" border="0" id="Events" /></a></th>
          <th width="200" align="center" scope="col"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Gift Cards','','/RamWebsite_NEW/images/GiftCards_rollover.jpg',1)"><img src="/RamWebsite_NEW/images/GiftCards.jpg" alt="Gift Cards" name="Gift Cards" width="212" height="125" hspace="6" border="0" id="Gift Cards" /></a></th>
        </tr>
      </table>
    </div>
    <div id="bottommenu2"></div>
    <map name="Map" id="Map">
      <area shape="poly" coords="16,103" href="#" />
      <area shape="poly" coords="49,71,102,58,158,73,191,113,180,141,151,161,109,169,65,162,31,141,18,112" href="http://theram.fbmta.com/members/UpdateProfile.aspx?Action=Subscribe&amp;InputSource=W" target="_blank" />
    </map>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"/RamWebsite_NEW/SpryAssets/SpryMenuBarDownHover.gif", imgRight:"/RamWebsite_NEW/SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </div>
    </body>
    </html>

    You have your image in the 'body editable region' wrapped in <p></p> tags (paragraph tags). <p> tags have padding and margin set on them by default.
    <p><img src="/images/aboutus2.jpg" width="675" height="300" /></p>
    You can either just remove the <p></p> tags or you can zero out the padding and margin:
    p {
    padding: 0;
    margin: 0;
    Unfortuanately the above will target every paragraph on your page which might not be desirable so I would just remove the <p> tags as it is not necessary to wrap an image in them.
    If you do want to keep the <p> tags then use some inline css to specifically remove the padding and margin on that particular one:
    <p style="padding: 0; margin: 0;"><img src="/images/aboutus2.jpg" width="675" height="300" /></p>

  • Meta Tags DO matter

    Hi
    I have run some tests and despite what most people say, the Meta tags do make a big difference in SEO,.... with iWeb anyway.
    When I enter meta tags for my site www.teachabroadthailand.com i get listed for my target keywords and description. When I don't enter the Meta tags, my site description come up with all this garble in the summary.
    Trouble is, I have to use another FTP client to go in and enter the Meta tags each time I edit the site. This is infuriating and somewhat defeats the purpose of using iWeb.
    I'm baffled as to why iWeb cannot allow such a simple, but still very important, feature.
    Also since I upgraded to iLife 09 my iWeb has become buggy. The site doesn't display properly on IE8.
    Any suggestions?
    Thanks

    A lot of us use iWeb SEO Tool to add tags.
    http://www.iwebformusicians.com/SearchEngines/Tags.html
    There are a lot of features that could and should be added to iWeb. All this stuff has been suggested over and over but nobody listens.
    iWeb needs to have both an optimizer and a way to enter meta data.
    The developers seem to have burned their brains out on their dysfunctional FTP and haven't yet got around to fixing the actual bugs.

  • Trouble with galleries.

    Please forgive me for asking such silly questions, but I'm having some coding trouble.
    The other day, I started a thread asking how to get a flash gallery to show up on my html page. After re-aranging some files on my server, it worked just fine. So now, I thought that I would just be able to apply those same principals to adding two more galleries to the same page. I know that they are there, but nothing is showing up.
    Here is the page: http://www.amoterocreative.com/work.html
    You can navigate to all the galleries here:
    http://www.amoterocreative.com/design_gallery.swf
    http://www.amoterocreative.com/design_gallery.swfhttp://www.amoterocreative.com/photo_gallery.swf
    http://www.amoterocreative.com/illustration_gallery.swf
    All the corresponding swf and xml files are in the same folder with the html. Is it that I need a .js file for each gallery, or will the one file work for all three?
    Here is the page code:
    <!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>
    <!-- Meta Tags -->     
         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         <meta name="description" content="A. M. Otero Creative, Anthony Otero's very own freelance business. Specializing in graphic design, photography, and illustration."/>
         <meta name="keywords" content="Anthony Otero, Anthony Michael Otero, A. M. Otero, AMOtero, amotero, Tony Otero, Creative, Design, Designer, Photography, Photographer, Illustration, Illustrator, Joplin Missouri, Joplin, Carthage, Springfield, Missouri" />
         <meta name="author" content="Anthony Otero of amoterocreative.com" />
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- Title -->
    <title>A. M. Otero Creative | Work</title>
    <!-- CSS -->
    <link rel="stylesheet" type="text/css" href="../CSS/amoterocreative.css">
    <!-- JavaScript -->
    <script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    </head>
    <body class="bdy">
    <div class="center"><img src="../images/head.jpg" alt="Head"/></div>
    <!-- Navigation -->
    <div id="*"><div class="navtbl"><table border="0" cellpadding="0" cellspacing="0">
        <tr><td><img src="../images/nav_wrap_left.png"/></td>
             <td width="800">
               <h1 class="navtxt"><ul>
                    <li class="navli"><a href="home.html" class="navbtn">Home</a></li>        
                    <li class="navli"><a href="about.html" class="navbtn">About</a></li>      
                    <li class="navli"><a href="work.html" class="navbtn">Work</a></li>      
                    <li class="navli"><a href="http://amoterocreative.tumblr.com/" class="navbtn">Blog</a></li>      
                    <li class="navli"><a href="shop.html" class="navbtn">Shop</a></li>      
                <li class="navli"><a href="contact.html" class="navbtn">Contact</a></li>
                </ul></h1></td>
        <td><img src="../images/nav_wrap_right.png"/></td></tr>
        <tr><td valign="top"><img src="../images/nav_wrap_leftbtm.png"/></td>
             <td valign="top"><img src="../images/page_photos/fireworks.jpg"/></td>
            <td valign="top"><img src="../images/nav_wrap_rightbtm.png"/></td>
        </tr></table></div></div>
      <!-- Main Content -->
    <div class="center"><table border="0" cellpadding="0" cellspacing="0"></td><td class="main" colspan="2" valign="top" width="800
    ">
    <h2>Design</h2>
        <div align="center">
          <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','600','height','600','title','Design Gallery','src','../images/portfolio_images/design/design_gallery','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../images/portfolio_images/design/design_gallery' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="600" height="600" title="Design Gallery">
            <param name="movie" value="../images/portfolio_images/design/design_gallery.swf" />
            <param name="quality" value="high" />
            <embed src="../images/portfolio_images/design/design_gallery.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="600"></embed>
          </object></noscript>
          </div>
    <h2>Photography</h2>
    <div align="center">
       <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','600','height','600','title','Photo Gallery','src','../images/portfolio_images/photography/photo_gallery','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../images/portfolio_images/photography/photo_gallery' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="600" height="600" title="Photo Gallery">
         <param name="movie" value="../images/portfolio_images/photography/photo_gallery.swf" />
         <param name="quality" value="high" />
         <embed src="../images/portfolio_images/photography/photo_gallery.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="600"></embed>
       </object></noscript>
          </div>
    <h2>Illustration</h2>
    <div align="center">
      <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','600','height','600','title','Illustration Gallery','src','../images/portfolio_images/illustration/illustration_gallery','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../images/portfolio_images/illustration/illustration_gallery' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="600" height="600" title="Illustration Gallery">
        <param name="movie" value="../images/portfolio_images/illustration/illustration_gallery.swf" />
        <param name="quality" value="high" />
        <embed src="../images/portfolio_images/illustration/illustration_gallery.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="600"></embed>
      </object></noscript>
    </div>
          </td></tr>
       <!-- Footer -->
      <tr><td width="277" valign="top" class="foot"><h5>Let's Talk.</h5>
          <ul>
            <li>Phone: 417.622.7432</li>
            <li>Email:<a class="ftlnk" href="mailto:[email protected]" title="E-mail [email protected]">[email protected]</a></li>
            <li>Contact Form: <a class="ftlnk" href="contact.html">Click Here</a></li>
          </ul>
          </td>
    <td width="266" align="right" valign="bottom" class="foot"><ul>
    <li class="navli"><a class="ftlnk" href="http://www.facebook.com/pages/A-M-Otero-Creative/134313026608861?v=page_getting_started&ref=sgm#!/pages/A-M-Otero-Creative/134313026608861?v=wall&ref=sgm"><img src="../images/social_media_icons/facebook_icon.png" width="30" height="30" /></a></li>
    <li class="navli"><a class="ftlnk" href="http://twitter.com/AMOtero"><img src="../images/social_media_icons/twitter_icon.png" width="30" height="30" /></a></li>
            <li class="navli"><a class="ftlnk" href="http://www.linkedin.com/profile?viewProfile=&key=54074499&locale=en_US&trk=tab_pro"><img src="../images/social_media_icons/linkedin-icon.png" width="30" height="30" /></a></li>
          </ul></td></tr>
    </table>
    </div>
    </body>
    </html>

    Hi,
    you should control all your pathes to the swf-files, a look in your source code showed me a "broken" icon:
    and I suspect you didn't upload all the swf files to your server.
    Hans-G.

  • Trouble with spacing of divs vertically

    Hi all,
    I am having trouble with CSS and vertically stacking my divs, In the following code there are a number of identical divs and I want them to stack one upon the other like in a list. At the moment I need to hit returns after each div to get below the one above and it puts way too much room in between each div doing this. I am at a loss how to do set the amount of spcae between them and also to make one go directly below the other.
    Any and all help greatly appreciated
    Thanks  Rick
    <bodystyle="margin:0; padding:0;">
    <div class="logo">
      <p><img src="images/spinlogonewsml.jpg" alt="Spin City Logo" border="0" style="position: absolute; top: 10px; left: 500px; /></p>
      <p> </p>
      <p> </p>
    </div>
    <div class=main">
    <div class="imagebutton" id="left"><img src="images/img_16_n.png" width="40" height="40" alt="left button" /></div>
    <div class="help">Rotate the Object or Panorama left one increment.</div>
    <p> </p>
    <div class="imagebutton" id="right"><img src="images/img_17_n.png" width="40" height="40" alt="Right Button" /></div>
    <div class="help">Rotate the Object or Panorama right one increment.</div>
    <p> </p>
    <div class="imagebutton" id="Plus"><img src="images/img_18_n.png" width="40" height="40" alt="Plus Button" /></div>
    <div class="help">Zoom into the image a step at a time.</div>
    <p> </p>
    <div class="imagebutton" id="minus"><img src="images/img_19_n.png" width="40" height="40" alt="Minus Button" /></div>
    <div class="help">Zoom out of the image a step at a time.</div>
    <p> </p>
    <div class="imagebutton" id="AutoRotate"><img src="images/img_20_n.png" width="40" height="40" alt="Auto Rotate Button" /></div>
    <div class="help">Starts or stops auto rotation of the Object or Panorama.</div>
    <p> </p>
    <div class="imagebutton" id="DefaultView"><img src="images/img_23_n.png" width="40" height="40" alt="Default Vew Button" /></div>
    <div class="help">Resets the Object or Panorama to it's starting position.</div>
    <p> </p>
    <div class="imagebutton" id="RotateMode"><img src="images/img_25_n.png" width="40" height="40" alt="RotateMode" /></div>
    <div class="help">
      Sets the mouse interactive mode to 'Rotate' allows for rotating the Object when zoomed in, toggles with 'Move' button below.
    </div>
    <p> </p>
    <div class="imagebutton" id="MoveMode"><img src="images/img_24_n.png" width="40" height="40" alt="Move Mode Button" /></div>
    <div class="help">Sets the mouse interactive mode to 'Move' allows for dragging the Object when zoomed in, toggles with 'Rotate' button above.</div>
    <p> </p>
    <div class="imagebutton" id="SoundButton"><img src="images/img_28_n.png" width="40" height="40" alt="Sound Button" /></div>
    <div class="help">Use this button to mute the sounds played by the interactive presentation.</div>
    <p>  </p>
    </div>
    </body>
    </html>

    Way too many divisions.  All you need is one main division or possibly two.  The rest is easily contained inside <p> tags.
    Copy and paste this into a new HTML document.
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Vr help File</title>
    <style type="text/css">
    /**zero out browser default settings on everything**/
    * {margin:0; padding:0; line-height: 100%; font-size: 100%;}
    p {
    line-height: 1em;
    font-size: 16px;
    margin-bottom: 12px; /**space between paragraphs**/
    #logo {
    float:right;
    width: 35%;
    margin-right: 150px /**adjust as req'd**/
    </style>
    </head>
    <body>
    <div id="logo">
    <img src="http://www.spincityimaging.com/images/spinlogonewsml.jpg" width="74" height="53" class="logo" />
    <!--end logo --></div>
    <p><img src="http://www.spincityimaging.com/images/img_16_n.png" width="40" height="40" alt="left button" />Rotate the Object or Panorama left one increment.</p>
    <p><img src="http://www.spincityimaging.com/images/img_17_n.png" width="40" height="40" alt="Right Button" />Rotate the Object or Panorama right one increment.</p>
    <p><img src="http://www.spincityimaging.com/images/img_18_n.png" width="40" height="40" alt="Plus Button" />Zoom into the image a step at a time.</p>
    <p><img src="http://www.spincityimaging.com/images/img_19_n.png" width="40" height="40" alt="Minus Button" />Zoom out of the image a step at a time.</p>
    <p><img src="http://www.spincityimaging.com/images/img_20_n.png" width="40" height="40" alt="Auto Rotate Button" />Starts or stops auto rotation of the Object or Panorama.</p>
    <p><img src="http://www.spincityimaging.com/images/img_23_n.png" width="40" height="40" alt="Default Vew Button" />Resets the Object or Panorama to it's starting position.</p>
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • BPM Multinline Message

    Hi, i have developed Multi-Mappings Externally via XSLT my XSLT creats a structure like: <?xml version="1.0" encoding="utf-8"?> <Messages>      <Message1>                         <Envelope>data1</Envelope>                         <Envelope>data2</Env

  • TS1425 iPod nano - loses functionality when connected to car radio

    For the past week, when I connect my iPod nano (4th generation) to a car radio (and I've tried it in several) it brings up a splash screen of the radio manufacturer which stays on the iPod screen and prevents any further access to the iPod functional

  • How to compare content in different versions of case?

    Need to compare attributes of tables, columns, sequences etc between case115 and case121. Think I should be able to use views like ci_table_definitions to do that so tried setting up an account that dblinks to the different case dbs. Problem seems to

  • Guest two node Failover Cluster with SAS HBA and Windows 2012 R1

    Hi all, i have two IBM x3560 brand new servers with V3700 IBM Storage. The Servers are connected to the storage through four SAS HBA adabters (two HBA's on each server). I want to create a two node guest Fileserver Failover Cluster. I can present the

  • Response message closes too soon.

    The response message to submitting my form closes too soon. Can I make it stay open or extend the time. Thanks, Roy www.royernst.com