Image with Title/Description Hover on MouseOver

Hello All,
So currently I am having trouble getting this perfect. I have an image that populates dynamically, as well as Title, Description and Link to the details page. The problem is the hover is not centered to the image, and in IE it doesn't always appear when you mouse over. If anyone could please help me out I would greatly appreciate it! I haven't been able to get this to work properly, and have been working on/off for a week.
Here is the html/php code:
  <div class="featured2">
    <h2>Featured </h2>
    <?php foreach ($feature as $featured) { ?>
  <div class="featured-pic2">
        <img src="image/<?php echo $featured['filename']; ?>" alt="" width="320" height="320" />
        <div class="title2">
        <a href="details.php?place=<?php echo $featured['link_name']; ?>">
        <span>
     <h2><?php echo $featured['name']; ?></h2>
  <p><?php echo substr($featured['description'], 0, strpos($featured['description'], '.')+1);?></p>
        </a>
        </span>
        </div>
        </div>
<?php } ?>
  </div>
And here is the CSS
.featured-pic2 {
position:relative;
float:left;
width:320px;
height:320px;
padding:5px 5px 5px 5px;
border:#F00 }
.title2 {
left:0px;
top:0px;
position:absolute;
float:left;
width: 325px;
height: 325px;
top:0px;
left:0px;
.title2 a {
color: #FFF;
width: 320px;
height: 320px;
display: block;
text-decoration: none;
.title2 a:hover {
background:#000;
opacity:.60;
filter:alpha(opacity=60);
.title2 a span {
display: none;
padding:0px;
.title2 a:hover span {
display: block;

Ok so I have made some modifications to the CSS as follows; What isn't correct now is that in IE9 the hover is white (no big deal) should be grey, but in Mozilla the hover is not centered (because I removed the padding on a:hover) to center it in IE. Other than that the functionality is great now! And just some minor details to work out.
.featured-pic2 {
    position:relative;
    float:left;
    width:320px;
    height:320px;
    padding:5px 5px 5px 5px;
    border:#F00 }
.title2 {
    left:0px;
    top:0px;
    position:absolute;
    float:left;
    width: 325px;
    height: 325px;
    top:0px;
    left:0px;
.featured-pic2 a {
    color: #666;
    width: 320px;
    height: 320px;
    display: block;
    text-decoration: none;
.featured-pic2 a:hover {
    background:#000;
    opacity:.60;
    ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter:alpha(opacity=60);
    padding: 0px;
.featured-pic2 a span {
    display: none;
    padding:5px;
.featured-pic2 a:hover span {
    display: block;

Similar Messages

  • Linked Image with border on hover

    I have a page of tiled image that link to project pages on the website. My boss found a website that he likes how the images appear when you hover over them with the mouse. I know of a way to do this, but I'm not sure what the best way would be: 1) create a rollover image that has the first image without a border, and the second image with a border... this seems like it would take the longest but give me the look I want because there are 55 little images. I have been trying to figure out how to apply the border for a linked image thru a CSS style, but the only thing it will give me is a border that appears all of the time (not just on hover). I'm wondering if there would be a quicker way to do this. Here is a link to the page that I would like to apply the style to: http://stateline7.com/index_files/Page532.htm , and here is the page that my boss liked the appearance of: http://holmes.zenfolio.com/

    a img { border:1px solid white; }
    a:hover img { border:1px solid green; }
    Assuming your background color is white, this will give you a green border on hover with no change in the image's effective size due to the appearance of the border.

  • Image With Title

    Hi, how are all of you? I wonder if it is possible to have an Image with Label or Title that display along with the Image itself as a single object.
    Thanks
    .:.Wahab

    Sure. In this example the image path and caption are in an XML file, and I am putting the images in:
    1) a HorizontalList
    2) a List
    3) individual Panels using a Repeater
    The images I am using are in a folder "images" under the folder containing MainApp.mxml
    --------------- data.xml ---------------------
    <?xml version="1.0" encoding="utf-8"?>
    <photos>
        <photo>
            <image>images/red30_30.JPG</image>
            <caption>Red Square</caption>
        </photo>
        <photo>
            <image>images/green30_30.JPG</image>
            <caption>Green Square</caption>
        </photo>
        <photo>
            <image>images/blue30_30.JPG</image>
            <caption>Blue Square</caption>
        </photo>
        <photo>
            <image>images/black30_30.JPG</image>
            <caption>Black Square</caption>
        </photo>
    </photos>
    ------------------ MainApp.mxml ------------------------
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      creationComplete="photosRequest.send();">
      <mx:Script>
        <![CDATA[
          import mx.rpc.events.ResultEvent;
          import mx.collections.XMLListCollection;
          [Bindable] private var xlc:XMLListCollection;
          private function photosHandler(evt:ResultEvent):void{
            xlc = new XMLListCollection(evt.result..photo); 
        ]]>
      </mx:Script>
      <mx:HTTPService id="photosRequest" url="data.xml" result="photosHandler(event)"
        resultFormat="e4x"/>
      <mx:HBox width="100%" horizontalAlign="center" horizontalGap="30">
        <mx:HorizontalList dataProvider="{xlc}" rowHeight="100"
          columnWidth="100">
          <mx:itemRenderer>
            <mx:Component>
              <mx:VBox horizontalAlign="center" verticalAlign="middle">
                <mx:Image source="{data.image}"/>
                <mx:Text text="{data.caption}"/>
              </mx:VBox>
            </mx:Component>
          </mx:itemRenderer>
        </mx:HorizontalList>
        <mx:List dataProvider="{xlc}" rowHeight="100"
          columnWidth="100" height="405" width="110">
          <mx:itemRenderer>
            <mx:Component>
              <mx:VBox horizontalAlign="center" verticalAlign="middle">
                <mx:Image source="{data.image}"/>
                <mx:Text text="{data.caption}"/>
              </mx:VBox>
            </mx:Component>
          </mx:itemRenderer>
        </mx:List>
        <mx:HBox>
          <mx:Repeater id="rp" dataProvider="{xlc}">
            <mx:Panel title="{rp.currentItem.caption}">
              <mx:Image source="{rp.currentItem.image}"/>
              <mx:Text text="{rp.currentItem.caption}"/>
            </mx:Panel>   
          </mx:Repeater>
        </mx:HBox>
      </mx:HBox>
    </mx:Application>

  • Conversion Table: Image with Title

    I'm using conversation tables to move from Unstructured FM8 to Structured (DITA) FM10.
    I am trying to move the existing tables and graphics with titles into the DITA structure.  My understanding is that in DITA, it should look like this:
    So I've developed my conversion table to look like this:
    But when I run Structure Current Document, it doesn't wrap the (title[fig], image) in the figure element:
    The one part that seems odd to me is that when I generate the conversion table, I don't see any row that represents the image element itself.  Is that the problem?  Is there something else that I should be doing?
    Thanks!

    You need a row that has "G:" in column 1 and "image" in column 2 to indicate that anchored frames should map to the image element.
                  --Lynne

  • Saving ai file with title, description and keywords to jpg

    Hi,
    Is ther a way to save an ai file to eps and jpg   including the document title, the description and keywords in the xmp file info?
    JPD

    Hi,
    I was wondering if I can get the Description and keywords from an ai file
    then
    add theese to a created jpg or eps with something like this:
    ---snip     SaveForStocks-10.js version 1.1 ---
      // Export as a jpg
      targetFile = new File(destFolder + '/' + name1);
      Doc.exportFile( targetFile, fileType, jpgExportOpts );
    --- snip---
    ---snip     http://forums.adobe.com/thread/478694?tstart=60 --
    #target bridge
    addNametoMeta = {};
    addNametoMeta.execute = function(){
      var sels = app.document.selections;
      for (var i = 0; i < sels.length; i++){
    var md = sels[i].synchronousMetadata;
        md.namespace = "http://ns.adobe.com/photoshop/1.0/";
        var Name = decodeURI(sels[i].name).replace(/\.[^\.]+$/, '');
        md.Keywords = md.Keywords +  ";" +  Name;
    ----- snip----

  • Importing iPhotos with titles, descriptions and keywords from MacBookPro (Lion) to iMac (Lion) via DVD?

    My previous versions of iLife 8 allowed me to do this. I label my images in the field on my laptop, return home burn them to a DVD, and then drag the images to the library on my iMac and voila they appeared with their tags.  When I tried it for the first time with iLife 11 I tried everywhich way to import the images from the DVD to my iMac with the tags intact, but failed. I am not familiar with  iCloud or streaming.  Perhaps that is how it is now done.

    http://www.macworld.com/article/161069/2011/07/make_a_bootable_lion_installer.ht ml

  • In iPhoto, how can I export images with the metadata - including the title and caption information - intact as part of the image?

    In iPhoto, how can I export images with the metadata — including the title and caption information — intact as part of the image?

    Check those boxes in the export dialogue - Exporting From iPhoto
    LN

  • Want my fotos in iPad 2 with titles and description?

    Is there any chance to get fotos on the iPad 2 with an edited Title / Description which has been added and edited in aperture on the mac?  It's frustrating having an Album on the Ipad, lets say vacation 2011, and no chance to describe the picture.

    YouTube is  not now part of iOS 6. However, you can download the YouTube app at http://itunes.apple.com/app/youtube/id544007664.
    See this similar post https://discussions.apple.com/thread/4335468?tstart=30
     Cheers, Tom

  • I have a sharepoint custom list with Title and image attachments, now i want to display image attachments in div based on the title.

    hi,
    i have a sharepoint custom list with Title and image attachments, now i want to display image attachments in div based on the title.

    i am using the below code only
     SPSite mySite = new SPSite("http://sharepoinsiteaddress");
    SPWeb myweb = mySite.OpenWeb();   
    SPList myList = myweb.Lists["Announcements"];   
    SPListItem myListItem = myList.GetItemById(1);   foreach (String attachmentname in myListItem.Attachments)
    String attachmentAbsoluteURL =    myListItem.Attachments.UrlPrefix // gets the containing directory URL
       + attachmentname;
       // To get the SPSile reference to the attachment just use this code
      SPFile attachmentFile = myweb.GetFile(attachmentAbsoluteURL);
       // To read the file content simply use this code
       Stream stream = attachmentFile.OpenBinaryStream();    StreamReader reader = new StreamReader(stream);
       String fileContent = reader.ReadToEnd();
    here i am using panel, how can i attach this attached image to panel

  • How to create a trigger 'onclick' on one image to change another image with swap?

    I need some help with behavior 'onclick'. 
    I have a webpage which has a plat of several home lots.  Next to the plat is a map of the general location of the town.  What I want to do is this...
    When the user "clicks" on a particular lot, the map picture will be swapped out for a picture of the view from that lot.
    When the user "clicks" again on the view of the lot, the image will swap back to the map of the town location.
    I have already done the map imaging for each of the lots. I have tried using the behaviors panel but when I choose "onclick" set my images and then test,
    it always defaults to "mouseover".  I don't want 'mouseover', I want click.
    Here is my code so far.   Oh, I am using Dreamweaver CS6
    Thank you so much for any information.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <!--<![endif]--><head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>toronto_creek_estates</title>
    <!-- TemplateEndEditable -->
    <link href="../../boilerplate.css" rel="stylesheet" type="text/css">
    <link href="../../styles.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    body {
              background-color: #F9F8F6;
    background-image: url(file:///C|/Users/Kim/Documents/Kim's_New_PQH_website/Assets/Images/background_texture _blue159.jpg);
    </style>
    <link href="../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    a:hover {
              color: #009900;
    </style>
    <link href="../../homedetails.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="../../respond.min.js" type="text/javascript"></script>
    <script src="../../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
      </head>
        <div class="gridContainer clearfix">
      <div id="LayoutDiv1"><img src="../Images/newbannernewlogo.jpg" alt="NewbannerNewLogo"></div>
      <div id="Navigation">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li>
            <div><a href="#">Home</a> </div>
          </li>
          <li>
            <div><a href="#"> Home Plans</a></div>
          </li>
          <li>
            <div><a href="#">New Homes / Lots</a> </div>
          </li>
          <li>
            <div><a href="#">Gallery</a> </div>
          </li>
          <li>
            <div><a href="#">Financing</a> </div>
          </li>
          <li>
            <div><a href="#">About Us</a> </div>
          </li>
          <li>
            <div><a href="#">Contact Us</a> </div>
          </li>
        </ul>
      </div>
    <div id="tcepicturebanner"><img src="../Images/toronto_creek/toronto creek thin header2.jpg" alt="tcepicbanner"></div>
    <div id="tcebanner">Toronto    Creek Estates</div>
    <div id="tce_description">Surrounded by the peaceful majestic mountains of the great southwest resides a community like no other, Toronto Creek Estates.   At an elevation of over 4,500'  above sea level   and situated just northwest of downtown Alpine, Texas,  the climate, views, peaceful surroundings and lifestyle are like no other in the great state of Texas.<br>
      <br>
      Toronto Creek Estates was designed and developed with a mission to provide affordable quality homes within  a quality community all nestled in a quiet country setting yet close to all the local conveniences.  Some of the many great amenities offered include:
      </div>
      <div id="amenitiescol1">
      <p>Spacious Lots</p>
      <p>Paved Streets</p>
    </div>
    <div id="amenitiescol2">
      <p>City Water &amp; Sewer</p>
      <p>Underground Utilities</p>
    </div>
    <div id="amenitiescol3">
      <p>Beautiful Mountain Views</p>
      <p>Covenants To Preserve Consistency</p>
    </div>
    <div id="tceplat"><img src="../Images/toronto_creek/kim new plat_final.jpg" alt="tceplat" usemap="#TCEplate" border="0">
      <map name="TCEplate">
        <area shape="poly" coords="710,143,714,214,620,218,627,186" href="../Images/toronto_creek/Lot13.jpg" alt="lot_13_view">
        <area shape="poly" coords="613,218,612,257,710,259,712,214" href="../Images/toronto_creek/Lot14.jpg" alt="lot_14_view">
        <area shape="poly" coords="611,306" href="#">
        <area shape="poly" coords="713,305,709,347,612,347,613,306" href="../Images/toronto_creek/Lot16.jpg" alt="lot_16_view">
        <area shape="poly" coords="711,349,612,349,611,366,621,373,625,392,710,393" href="../Images/toronto_creek/Lot17.jpg">
        <area shape="poly" coords="625,393,709,394,710,484,617,410,621,404" href="../Images/toronto_creek/Lot18.jpg" alt="lot_18_view">
        <area shape="poly" coords="712,260,712,260,614,261,613,304,661,305,700,305,710,304" href="#" alt="model15map">
        <area shape="poly" coords="292,94,337,94,340,189,290,189" href="#" alt="lot6map">
        <area shape="poly" coords="484,98,532,108,533,189,487,188" href="#" alt="lot10map">
      </map>
    </div>
    <div id="alpineintexasmap"><img src="../Images/toronto_creek/alpinetxmap.jpg" alt="alpinemapsm" name="alpinetxmap" width="327" height="263" id="alpinetxmap"></div>
    <div id="LayoutDiv2"><iframe width="290" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps/ms?msa=0&msid=210296110747849097579.0004d85c733f09892697e&ie= UTF8&t=m&ll=30.361026,-103.670425&spn=0.044436,0.051498&z=13&output=embed"></iframe><br />
      <small>Click to view <a href="https://maps.google.com/maps/ms?msa=0&msid=210296110747849097579.0004d85c733f09892697e&ie= UTF8&t=m&ll=30.361026,-103.670425&spn=0.044436,0.051498&z=13&source=embed" style="color:#0000FF;text-align:left">Toronto Creek Estates, Alpine, Texas</a> in a larger map with directions.</small></div>
    <div id="BottomNav">
        <div>
          <div>Home  |  Our Homes  |  Neighborhoods  |  Gallery  |  Financing  |  About Us  |  Contact Us </div>
        </div>
      </div>
      <div id="PriceAvail">
        <div>
          <div>Pricing and Availability are subject to change without notice</div>
        </div>
      </div>
      <div id="Footer">
        <div>
          <div>Copyright &copy; 2013 PreferredQualityHomes.com, pqualityhomes.com, pqhhomes.com, &amp; Preferred Quality Homes, L.L.C. All rights reserved. Last updated 10/31/12</div>
        </div>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    I am too new I guess, because your link was not helpful at all.  Maybe by looking at this you can help.  With this code, I have a picture that swaps with pic of lot6 on mouseover and returns to orig. pic on mouseout.  I have created a hotspot for each lot using image maps.  I would like to have this happen.  Mouseover lot6 hotspot to have images swap as they do here with this code.
    Thanks for any help you can give.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <!--<![endif]--><head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>toronto_creek_estates</title>
    <!-- TemplateEndEditable -->
    <link href="../../boilerplate.css" rel="stylesheet" type="text/css">
    <link href="../../styles.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    body {
              background-color: #F9F8F6;
    background-image: url(file:///C|/Users/Kim/Documents/Kim's_New_PQH_website/Assets/Images/background_texture _blue159.jpg);
    </style>
    <link href="../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    a:hover {
              color: #009900;
    </style>
    <link href="../../homedetails.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="../../respond.min.js" type="text/javascript"></script>
    <script src="../../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <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>
    </head>
    <body onLoad="MM_preloadImages('../Images/toronto_creek/Lot6.jpg')"><div class="gridContainer clearfix">
      <div id="LayoutDiv1"><img src="../Images/newbannernewlogo.jpg" alt="NewbannerNewLogo"></div>
      <div id="Navigation">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li>
            <div><a href="#">Home</a> </div>
          </li>
          <li>
            <div><a href="#"> Home Plans</a></div>
          </li>
          <li>
            <div><a href="#">New Homes / Lots</a> </div>
          </li>
          <li>
            <div><a href="#">Gallery</a> </div>
          </li>
          <li>
            <div><a href="#">Financing</a> </div>
          </li>
          <li>
            <div><a href="#">About Us</a> </div>
          </li>
          <li>
            <div><a href="#">Contact Us</a> </div>
          </li>
        </ul>
      </div>
    <div id="tcepicturebanner"><img src="../Images/toronto_creek/toronto creek thin header2.jpg" alt="tcepicbanner"></div>
    <div id="tcebanner">Toronto    Creek Estates</div>
    <div id="tce_description">Surrounded by the peaceful majestic mountains of the great southwest resides a community like no other, Toronto Creek Estates.   At an elevation of over 4,500'  above sea level   and situated just northwest of downtown Alpine, Texas,  the climate, views, peaceful surroundings and lifestyle are like no other in the great state of Texas.<br>
      <br>
      Toronto Creek Estates was designed and developed with a mission to provide affordable quality homes within  a quality community all nestled in a quiet country setting yet close to all the local conveniences.  Some of the many great amenities offered include:
      </div>
      <div id="amenitiescol1">
      <p>Spacious Lots</p>
      <p>Paved Streets</p>
    </div>
    <div id="amenitiescol2">
      <p>City Water &amp; Sewer</p>
      <p>Underground Utilities</p>
    </div>
    <div id="amenitiescol3">
      <p>Beautiful Mountain Views</p>
      <p>Covenants To Preserve Consistency</p>
    </div>
    <div id="tceplat"><img src="../Images/toronto_creek/kim new plat_final.jpg" alt="tceplat" usemap="#TCEplate" border="0">
      <map name="TCEplate">
        <area shape="poly" coords="710,143,714,214,620,218,627,186" alt="lot_13_view">
        <area shape="poly" coords="613,218,612,257,710,259,712,214" alt="lot_14_view">
        <area shape="poly" coords="611,306" href="#">
        <area shape="poly" coords="713,305,709,347,612,347,613,306" alt="lot_16_view">
        <area shape="poly" coords="711,349,612,349,611,366,621,373,625,392,710,393">
        <area shape="poly" coords="625,393,709,394,710,484,617,410,621,404" alt="lot_18_view">
        <area shape="poly" coords="712,260,712,260,614,261,613,304,661,305,700,305,710,304" href="keller_homepage.html" alt="model15map">
        <area shape="poly" coords="292,94,337,94,340,189,290,189" alt="lot6map">
        <area shape="poly" coords="484,98,532,108,533,189,487,188" href="#" alt="lot10map">
      </map>
    </div>
    <div id="alpineintexasmap"><img src="../Images/toronto_creek/alpinetxmap.jpg" alt="alpinemapsm" name="alpinetxmap" width="327" height="263" id="alpinetxmap" onMouseOver="MM_swapImage('alpinetxmap','','../Images/toronto_creek/Lot6.jpg',1)" onMouseOut="MM_swapImgRestore()"></div>
    <div id="LayoutDiv2"><iframe width="290" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps/ms?msa=0&msid=210296110747849097579.0004d85c733f09892697e&ie= UTF8&t=m&ll=30.361026,-103.670425&spn=0.044436,0.051498&z=13&output=embed"></iframe><br />
      <small>Click to view <a href="https://maps.google.com/maps/ms?msa=0&msid=210296110747849097579.0004d85c733f09892697e&ie= UTF8&t=m&ll=30.361026,-103.670425&spn=0.044436,0.051498&z=13&source=embed" style="color:#0000FF;text-align:left">Toronto Creek Estates, Alpine, Texas</a> in a larger map with directions.</small></div>
    <div id="BottomNav">
        <div>
          <div>Home  |  Our Homes  |  Neighborhoods  |  Gallery  |  Financing  |  About Us  |  Contact Us </div>
        </div>
      </div>
      <div id="PriceAvail">
        <div>
          <div>Pricing and Availability are subject to change without notice</div>
        </div>
      </div>
      <div id="Footer">
        <div>
          <div>Copyright &copy; 2013 PreferredQualityHomes.com, pqualityhomes.com, pqhhomes.com, &amp; Preferred Quality Homes, L.L.C. All rights reserved. Last updated 10/31/12</div>
        </div>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • Title/description/keywords

    i keep on having problems with my title, description &
    keyword.
    this is the beginning of my html code (generated with
    dreamweaver8):
    <!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">
    <meta http-equiv="content-type"
    content="text/html;charset=iso-8859-1">
    <meta name="keywords" content="taranis, because of the
    sun, the water is gone, wetteren, vooruit, piet jorens, reinhard
    vanbergen, karel de backer, thomas mortier, christophe claeys,
    simon de beelde, jelle hemelshoet, simon uytendaele">
    <meta name="description" content="1ste EP Because of the
    Sun, productie Piet Jorens"><title>Taranis - Because of
    the Sun</title><head>
    <style type="text/css">
    <!--
    .style1 {font-family: Garamond; font-size: 14px;}
    .style2 {font-family: Garamond; font-size: 14px; font-weight:
    bold; }
    .style3 {font-family: Garamond; font-size: 14px; font-style:
    italic; }
    body {background-repeat: no-repeat;}
    .style5 {font-family: Garamond; font-size: 16px; }
    a:link {color: #666666;}
    a:visited {color: #666666;}
    a:hover {color: #666666;}
    a:active {color: #666666;}
    -->
    </style>
    </head>
    <body>
    <table width="200" border="0" align="center">
    <tr>
    …rest of code…
    when viewing the site from dreamweaver (F12), the title is OK
    but it won't work when viewing the site on-line...
    i also added the site to search engines e.g. google but my
    description won't appear. ..
    keywords aren't working neiter. the only text to find with
    google is to enter thewaterisgone, as the URL is
    www.thewaterisgone.be
    what am i doing wrong?
    thanks.

    > what am i doing wrong?
    Just about everything. :-)
    1. Title, description, etc. must be inside the
    <head></head> tags. Your's
    aren't.
    2. meta name="keywords" is a waste of time. Most SEs ignore
    them. If you
    want good SE rankings you have a lot of work to do. Start
    here:
    http://www.highrankings.com/
    Walt
    "bram m" <[email protected]> wrote in
    message
    news:[email protected]...
    >i keep on having problems with my title, description
    & keyword.
    > this is the beginning of my html code (generated with
    dreamweaver8):
    >
    >
    >
    > <!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">
    >
    > <meta http-equiv="content-type"
    content="text/html;charset=iso-8859-1">
    > <meta name="keywords" content="taranis, because of
    the sun, the water is
    > gone,
    > wetteren, vooruit, piet jorens, reinhard vanbergen,
    karel de backer,
    > thomas
    > mortier, christophe claeys, simon de beelde, jelle
    hemelshoet, simon
    > uytendaele">
    > <meta name="description" content="1ste EP Because of
    the Sun, productie
    > Piet
    > Jorens"><title>Taranis - Because of the
    Sun</title><head>
    >
    > <style type="text/css">
    > <!--
    > .style1 {font-family: Garamond; font-size: 14px;}
    > .style2 {font-family: Garamond; font-size: 14px;
    font-weight: bold; }
    > .style3 {font-family: Garamond; font-size: 14px;
    font-style: italic; }
    > body {background-repeat: no-repeat;}
    > .style5 {font-family: Garamond; font-size: 16px; }
    > a:link {color: #666666;}
    > a:visited {color: #666666;}
    > a:hover {color: #666666;}
    > a:active {color: #666666;}
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <table width="200" border="0" align="center">
    > <tr>
    > ?rest of code?
    >
    >
    >
    >
    > when viewing the site from dreamweaver (F12), the title
    is OK but it won't
    > work when viewing the site on-line...
    > i also added the site to search engines e.g. google but
    my description
    > won't
    > appear. ..
    >
    > keywords aren't working neiter. the only text to find
    with google is to
    > enter
    > thewaterisgone, as the URL is www.thewaterisgone.be
    >
    > what am i doing wrong?
    > ...
    > thanks.
    >

  • Can I change the image, name & product description on the iTunes page?

    Hi there,
    I recently started a new podcast, Jazz Now! Seattle. When I first entered it I used a logo that has now been change. I have also reworked the title. And the description on the iTunes page has a "/" in it that shouldn't be there. You can see it all here:
    http://itunes.apple.com/us/podcast/jazz-now-seattle/id389101248
    Can I change these things?
    Thanks!
    Jason

    As you are using WordPress you will need to change things there: if you were to edit the feed itself it would simply be overwritten the next time you added something. If you change the title and remove the slash in the appropriate places in Wordpress and republish then iTunes will pick up the changes - possibly it may not do so until you add a new audio episode.
    As to the image, simply point Wordpress to the new image (with a different name, don't just create a new image with the same name) and again this will update, though it will probably take some days.

  • How to make a podcast with one still image with iMovie 09

    I'm using trying to transfer my podcasts to Vimeo. I've been using iWeb to create a person web site with video and podcasts. I have embedded Vimeo with "html snippet widge." I want to do the same thing with audio, however Vimeo only accept "video" files.
    In my attempt to work around Vimeo's video issues, I had the idea to use iMovie 09 to create a "video file" using a single still image with my audio podcast play in the background. The single image would be consistent for the entire length of the audio. It seems simple...one still image file and one audio file.
    All of my audio files are less than 45 minutes in length. The problem is that when I insert an image in iMovie I can't get it to last for more than 10:00 minutes of my podcast. I've had to drag the same image over several times, extend each image's length to 10:00 minutes until I have enough images to last the full length of the audio file.
    I'm sure there's a simple way to do this with one image, used one time, and have the audio added.
    Anyone understand my situation and have a good idea?

    The most efficient method would be for you to do this in iMovie 6. You can download a version if you don't already have it on your computer. http://supportdownload.apple.com/download.info.apple.com/AppleSupport_Area/Apple_Software_Updates/Mac_OSX/downloads/061-3532.20070807.nq3ER/iMovieHD6.dmg
    Put all your clips into a new iMovie project, in the order you wish them to play. Use the chapters tab and add chapter markers for each clip (except the first one; iDVD will add that one for you). Close iMovie.
    Open an new iDVD project. Use the Media tab, then Movies, to locate your new iMovie. Drag and drop it onto the main iDVD window, taking care not to drop it into a drop zone. You should then see the title of your movie and the two options: Play Movie (which will play all the clips sequentiallly) and Scene Selection (which will take you to submenu(s) where you can select which clip to view).

  • SharePoint 2013: Error when clicking on Title, description, and logo

    Hi.
    I'm in the process of upgrading from SharePoint 2007 to 2013 and have come across an error which I think has occurred since trying to deploy a new feature to implement our "Company Theme" (Custom look). Please note, everything is otherwise behaving
    as expected in the new 2013 environment and the issue does not occur for site collections/content db's that are deleted and restored from the interim 2010 upgraded backup, so I am assuming its something I've done as part of deploying, retracting and redeploying
    the theme feature (a number of times).
    So, on to the problem... When I click on "Title, description, and logo" in Site Settings I get the following error:
    "Sorry, something went wrong
    A list, survey, discussion board, or document library with the specified title already exists in this web site.  Please choose another title."
    My research suggests there is something wrong with the masterpage, which I had initially included as part of the feature but have since gone back to using the default "seattle.master" when creating the Composed look (only spcolor and spfont are
    different now).
    The same error also occurs when trying to preview a composed look.
    Anyway, while I can probably get away with re-upgrading the affected site collections and re-enabling the theme feature, I'd like to know if I can fix this (or rather, what caused it) before going to production.
    BTW, I'm getting the following errors in the Log file:
    "The list "$Resources:core,webpageassetList;" in web "..." was not created"
    "Failed to create list "... etc."
    (I would copy the entire error messages but its not pasting - I'll try on a reply post)
    Thanks,
    Paul.

    The list "$Resources:core,webpageassetList;" in web "http://myteam13test" was not created. hr = 0x81020012.
    Failed to create list "$Resources:core,webpageassetList;" in web "http://myteam13test", HRESULT=0x27a2abc0. List XML: "<List xmlns:ows="Microsoft SharePoint" Title="$Resources:core,shareddocuments_Title_15;" Direction="$Resources:core,Direction;" Url="Shared Documents" BaseType="1"/>"
    Failed to instantiate list 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\Template\Features\DocumentLibrary\doclib'
    A list, survey, discussion board, or document library with the specified title already exists in this Web site. Please choose another title.

  • I want to create an image gallery with forward back nav, master image with a click to pop out zoom

    Hi Musers,
    I'm currently building a photography website and need some help building a specific type of gallery.
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Below is a description of the gallery I want to build:
    On the gallery page the gallery appears as a single 'Master Image' with forward and back 'Navs.' and a 'Counter' underneath this single 'Master Image'. Lets say that there are 10 images in this gallery. When the viewer clicks on the forward 'Nav.' the 'Master Image' changes to the next image in the sequence of 10 and the 'Counter' below confirms this progression, in this example the 'Counter' changes from 1 of 10 to read 2 of 10, the 'Master Image' displayed is the second image in the sequence.
    Simple so far.. This above I can do as this is just a basic gallery. What follows is what I cannot find a solution for.
    I want the gallery viewer to be able to click on the 'Master Image' and launch an enlargement of that image overlaying the gallery page, very much like the way the 'Lightbox' widget displays an enlarged image. When the viewer clicks off the 'Ligtbox' or enlarged image it dissapears, reverting the page view back to the standard gallery view with 'Master Image', 'Navs.' and 'Counter'. I do not want the expanded / Enlarged 'Lightbox' image accompanied by a thumbnail gallery, 'Navs.' / Navigation arrows or a 'Counter'. What I want is to be able to launch an enlarged version of the 'Master Image' as an overlay on the gallery page, something like a pop out.
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Can anyone explain how I can do this? Is it possible?
    The solution I want seems to be a highbrid between the standard gallery with navigation arrows kept but minus thumbnails and captions with some of the functionality of the lightbox gallery widget.
    I very much appreciate any help anyone can give.
    Thank you

    Hi Harriet,
    Thanks for the message. I'm sure as time goes on new features will be introduced but it's a bit of a shame that the widget library is a little basic, oh, and at times it's just that little bit buggy. So far I'm really impressed by Muse despite being ever so slightly disappointed by some of it's limitations. I'd like to see more image gallery options, the ability to set up a client login area or a client ftp within a site, I also tried embedding video but as I'm no programmer the result looked clumsy so some focus on this would be a help. Considering that a good number of people benefiting from a Muse site will be online retailers a zoom function should have been there from the start.
    Best regards
    Jacques

Maybe you are looking for

  • Custom File name for AS2 FA

    Hi Gurus, We have a specific requirement, wherein we are expected to be able to pass a unique file name to all the FA, sent over AS2. The FAs currently are being handled in B2B. I also understand that this can be done from the middleware layer ( How

  • SPA962 and 2 SPA932 - Last 5 lights are not working

    I have a Linksys SPA962 with 2 SPA932. They have 64 extensions configured as BLF and retrieve status from an Asterisk PBX. All first 59 lamps work OK, but the last 5 don't. They stay flashing in yellow and never show the extension status. If I remove

  • Multiple switch vlan routing, almost there!

    Hello, I'm hoping this is a blatantly obvious issue, but we all know how late night thinking tends to be fairly foggy! Anyway, I have 3 3400cl HP switches and a 2610 Poe switch.  One of the 3400's is acting as the core, with the other 3 switches lacp

  • Where can I find JSP Tutorials?

    Hi I am new to JSP and am looking for good tutorials or books to get me started. Would be grateful for any suggestions. Mazz

  • JOptionPane Closing Question

    I am trying to close a dialog window when a boolean variable in another class changes to false. I use JOptionPane inside of an instance of Dialog. I have tried using hide(), dispose(), and setVisible(false). The problem is that the dialog window does