html - How do I get a word to appear when I hover over each of these images? -
i'm new html , css , have tried researching problem can't find works. want simple word appear when mouse hover's on each individual picture. example first photo have word 'travel' appear either on photo or below it.
here html:
div class="section group"> <div class="col span_1_of_4"> <a href="http://me14ch.leedsnewmedia.net/portfolio/sub%20pages/travel.html"> <img src="http://me14ch.leedsnewmedia.net/portfolio/portfolioresources/travel01.png" alt="view travel photography" height="200"></a> </div> <div class="col span_1_of_4"> <a href="http://me14ch.leedsnewmedia.net/portfolio/sub%20pages/wedding.html"> <img src="http://me14ch.leedsnewmedia.net/portfolio/portfolioresources/weddings01.png" alt="view wedding collection" height="200"></a> </div> <div class="col span_1_of_4"> <a href="http://me14ch.leedsnewmedia.net/portfolio/sub%20pages/people.html"><img src="http://me14ch.leedsnewmedia.net/portfolio/portfolioresources/people01.png" alt="view people photography" height="200"></a> </div> <div class="col span_1_of_4"> <a href="http://me14ch.leedsnewmedia.net/portfolio/sub%20pages/studio.html"><img src="http://me14ch.leedsnewmedia.net/portfolio/portfolioresources/studio01.png" alt="view studio photoshoot" height="200"></a> </div> </div>
and css
/* sections */ .section { clear: both; padding-left:7px; } /* column setup */ .col { display: block; float:left; margin: 1% 0 1% 1.6%; } .col:first-child { margin-left: 0; } /* grouping */ .group:before, .group:after { content:""; display:table; } .group:after { clear:both;} .group { zoom:1; /* ie 6/7 */ } /* grid of 4 */ .span_4_of_4 { width: 100%; } .span_3_of_4 { width: 74.6%; } .span_2_of_4 { width: 49.2%; } .span_1_of_4 { width: 23.8%; } /* go full width below 480 pixels */ @media screen , (max-width: 480px) { .col { margin: 1% 0 1% 0%; } .span_1_of_4, .span_2_of_4, .span_3_of_4, .span_4_of_4 { width: 100%; } }
adding
title="travel"
will use browser's default tooltip display. example,
<img src="http://me14ch.leedsnewmedia.net/portfolio/portfolioresources/travel01.png" alt="view travel photography" height="200" title="travel">
if want more control, check out jqueryui's tooltip widget
Comments
Post a Comment