Question

Mouse over text popup problem

Asked by: flexxtx

 I have a page with an existing cascading drop down menu. I added a table that has lists a person's name. I'm trying to make a thumbnail pic pop up & disappear when you mouse over their names. I cant get the cascading and the pop-ups to work together. It's one or the other. Any suggestions? Text is attached below. Thanks...


** code moved to snippet below to make it and this question easier to read and use - b0lsc0tt [ZAPE] **

<!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>Our class leadership</title>
<style type="text/css">
<!--
.style14 {font-family: Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; }
.style15 {font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}
.style16 {font-family: Arial, Helvetica, sans-serif}
.style17 {font-size: 14px}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
body {
	background-image: url(bground.jpg);
	background-repeat: repeat-x;
}
-->
</style>
<script type="text/javascript">
/***********************************************
* Image w/ description tooltip- By Dynamic Web Coding (www.dyn-web.com)
* Copyright 2002-2007 by Sharon Paine
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
 
/* IMPORTANT: Put script after tooltip div or 
	 put tooltip div just before </BODY>. */
 
var dom = (document.getElementById) ? true : false;
var ns5 = (!document.all && dom || window.opera) ? true: false;
var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;
var ie4 = (document.all && !dom) ? true : false;
var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false;
 
var origWidth, origHeight;
 
// avoid error of passing event object in older browsers
if (nodyn) { event = "nope" }
 
///////////////////////  CUSTOMIZE HERE   ////////////////////
// settings for tooltip 
// Do you want tip to move when mouse moves over link?
var tipFollowMouse= true;	
// Be sure to set tipWidth wide enough for widest image
var tipWidth= 100;
var offX= 20;	// how far from mouse to show tip
var offY= 12; 
var tipFontFamily= "Verdana, arial, helvetica, sans-serif";
var tipFontSize= "8pt";
// set default text color and background color for tooltip here
// individual tooltips can have their own (set in messages arrays)
// but don't have to
var tipFontColor= "#000000";
var tipBgColor= "#e0e1e1"; 
var tipBorderColor= "#000080";
var tipBorderWidth= 0;
var tipBorderStyle= "ridge";
var tipPadding= 0;
 
// tooltip content goes here (image, description, optional bgColor, optional textcolor)
var messages = new Array();
// multi-dimensional arrays containing: 
// image and text for tooltip
// optional: bgColor and color to be sent to tooltip
messages[0] = new Array('Leadership Pics/BDPiercePic.jpg', 'BD Pierce');
messages[1] = new Array('Leadership Pics/BobMaeyamaPic.jpg', 'Bob Maeyama');
messages[2] = new Array('Leadership Pics/JeffRickertPic.jpg', 'Jeff Rickert');
messages[3] = new Array('Leadership Pics/SusanMaeyamaPic.jpg', 'Susan Maeyama');
messages[4] = new Array('Leadership Pics/WendyRickert.jpg', 'Wendy Rickert');
messages[5] = new Array('Leadership Pics/TheBakers.jpg', 'Doug and Linda Baker');
messages[6] = new Array('Leadership Pics/TheThomases.jpg', 'Gary and Lisa Thomas');
 
////////////////////  END OF CUSTOMIZATION AREA  ///////////////////
 
// preload images that are to appear in tooltip
// from arrays above
if (document.images) {
	var theImgs = new Array();
	for (var i=0; i<messages.length; i++) {
  	theImgs[i] = new Image();
		theImgs[i].src = messages[i][0];
  }
}
 
// to layout image and text, 2-row table, image centered in top cell
// these go in var tip in doTooltip function
// startStr goes before image, midStr goes between image and text
var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="100%"><img src="';
var midStr = '" border="0"></td></tr><tr><td valign="top">';
var endStr = '</td></tr></table>';
 
////////////////////////////////////////////////////////////
//  initTip	- initialization for tooltip.
//		Global variables for tooltip. 
//		Set styles
//		Set up mousemove capture if tipFollowMouse set true.
////////////////////////////////////////////////////////////
var tooltip, tipcss;
function initTip() {
	if (nodyn) return;
	tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null;
	tipcss = tooltip.style;
	if (ie4||ie5||ns5) {	// ns4 would lose all this on rewrites
		tipcss.width = tipWidth+"px";
		tipcss.fontFamily = tipFontFamily;
		tipcss.fontSize = tipFontSize;
		tipcss.color = tipFontColor;
		tipcss.backgroundColor = tipBgColor;
		tipcss.borderColor = tipBorderColor;
		tipcss.borderWidth = tipBorderWidth+"px";
		tipcss.padding = tipPadding+"px";
		tipcss.borderStyle = tipBorderStyle;
	}
	if (tooltip&&tipFollowMouse) {
		document.onmousemove = trackMouse;
	}
}
 
window.onload = initTip;
 
/////////////////////////////////////////////////
//  doTooltip function
//			Assembles content for tooltip and writes 
//			it to tipDiv
/////////////////////////////////////////////////
var t1,t2;	// for setTimeouts
var tipOn = false;	// check if over tooltip link
function doTooltip(evt,num) {
	if (!tooltip) return;
	if (t1) clearTimeout(t1);	if (t2) clearTimeout(t2);
	tipOn = true;
	// set colors if included in messages array
	if (messages[num][2])	var curBgColor = messages[num][2];
	else curBgColor = tipBgColor;
	if (messages[num][3])	var curFontColor = messages[num][3];
	else curFontColor = tipFontColor;
	if (ie4||ie5||ns5) {
		var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr;
		tipcss.backgroundColor = curBgColor;
	 	tooltip.innerHTML = tip;
	}
	if (!tipFollowMouse) positionTip(evt);
	else t1=setTimeout("tipcss.visibility='visible'",100);
}
 
var mouseX, mouseY;
function trackMouse(evt) {
	standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
	mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft;
	mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop;
	if (tipOn) positionTip(evt);
}
 
/////////////////////////////////////////////////////////////
//  positionTip function
//		If tipFollowMouse set false, so trackMouse function
//		not being used, get position of mouseover event.
//		Calculations use mouseover event position, 
//		offset amounts and tooltip width to position
//		tooltip within window.
/////////////////////////////////////////////////////////////
function positionTip(evt) {
	if (!tipFollowMouse) {
		standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body
		mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft;
		mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop;
	}
	// tooltip width and height
	var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth;
	var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight;
	// document area in view (subtract scrollbar width for ns)
	var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft;
	var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop;
	// check mouse position against tip and window dimensions
	// and position the tooltip 
	if ((mouseX+offX+tpWd)>winWd) 
		tipcss.left = mouseX-(tpWd+offX)+"px";
	else tipcss.left = mouseX+offX+"px";
	if ((mouseY+offY+tpHt)>winHt) 
		tipcss.top = winHt-(tpHt+offY)+"px";
	else tipcss.top = mouseY+offY+"px";
	if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100);
}
 
function hideTip() {
	if (!tooltip) return;
	t2=setTimeout("tipcss.visibility='hidden'",100);
	tipOn = false;
}
 
document.write('<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>')
 
function NN_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=NN_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];}}
}
</script>
</head>
 
<body><center>
  
    <table width="800" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td colspan="6"><img src="FWHeader.jpg" alt="FaithWorksClass" width="800" height="117" /></td>
      </tr>
      <tr>
        <td width="95"><a href="index.html"><img src="images/index_r2_c1.gif" alt="Our home page" width="95" height="37" border="0" /></a></td>
        <td width="151"><a href="statement.html"><img src="images/index_r2_c2.gif" alt="About our class" width="151" height="37" border="0" /></a></td>
        <td width="136"><img src="images/index_r2_c3.gif" alt="Our membership" width="136" height="37" border="0" /></td>
        <td width="153"><a href="audiofiles.html"><img src="images/index_r2_c4.gif" alt="download our files" width="153" height="37" border="0" /></a></td>
        <td width="133"><a href="LunchNFrisco.html"><img src="images/index_r2_c5.gif" alt="Activities" width="133" height="37" border="0" /></a></td>
        <td width="132"><a href="mailto:info@faithworksnorthcampus.org"><img src="images/index_r2_c6.gif" alt="How to reach us" width="132" height="37" border="0" /></a></td>
      </tr>
      <tr bgcolor="#e0e1e1">
        <td colspan="6"><blockquote>
          <p class="style14">Class Servants</p>
          <p><span class="style15"><strong><em>1 Corinthians 12:4-6  </em></strong><em><br />
            <sup>4</sup> Now there are varieties of gifts,  but the same Spirit; <sup>5</sup> and there  are varieties of service, but the same Lord; <sup>6</sup> and  there are varieties of activities, but it is the same God who empowers them all  in everyone.</em></span></p>
          </blockquote>
          <table width="735" border="0" align="center" cellpadding="5" cellspacing="0">
            <tr>
              <td width="216" valign="top"><span class="style16 style17"><strong>Teacher</strong><br />
                  <a href="#" onmouseover="doTooltip(event,0)" onmouseout="hideTip()">BD Pierce</a></span></td>
              <td width="242" valign="top"><span class="style16 style17"><strong>Directors</strong><br />
                    <a href="#" onmouseover="doTooltip(event,2)" onmouseout="hideTip()">Jeff</a> and <a href="#" onmouseover="doTooltip(event,4)" onmouseout="hideTip()">Wendy Rickert</a><br />
                    <a href="#" onmouseover="doTooltip(event,1)" onmouseout="hideTip()">Bob</a> and <a href="#" onmouseover="doTooltip(event,3)" onmouseout="hideTip()">Susan Maeyama</a> </span></td>
              <td width="247" valign="top"><span class="style16 style17"><strong>Shephards Class</strong><br />
              <a href="#" onmouseover="doTooltip(event,5)" onmouseout="hideTip()">Doug and Linda Baker</a>/Ronda Sloan<br />
              <a href="#" onmouseover="doTooltip(event,6)" onmouseout="hideTip()">Gary and Lisa Thomas</a>/Terry Maley<br />
              </span></td>
            </tr>
            <tr>
              <td valign="top"><span class="style16 style17"><strong>Prayer  Coordinator</strong><br />
                Ronda Sloan<br />
              Rhonda Farish</span></td>
              <td valign="top"><span class="style16 style17"><strong>Womens  Ministry Coordinator</strong><br />
                Becky Owens<br />
              Ronda Sloan</span></td>
              <td valign="top"><span class="style16 style17"><strong>Mens  Ministry Coordinator</strong><br />
                Michael Brady</span></td>
            </tr>
            <tr>
              <td valign="top"><span class="style16 style17"><strong>Missions  Coordinator</strong><br />
                Valerie Crowley</span></td>
              <td valign="top"><span class="style16 style17"><strong>Greeting  &amp; Shuttle Coordinator</strong><br />
                James Mangold</span></td>
              <td valign="top"><span class="style16 style17"><strong>Social  Coordinators</strong><br />
                Jan Brady<br />
              Rhonda Farish<br />
              Becky Owens<br />
              Bill &amp; Cheryl  Carpenter</span></td>
            </tr>
            <tr>
              <td valign="top"><span class="style16 style17"><strong>Class  Directory</strong><br />
                Ronda Sloan </span></td>
              <td valign="top"><span class="style16 style17"><strong>Refreshments  Coordinator</strong><br />
                Bill and Cheryl Carpenter</span></td>
              <td valign="top"><span class="style16 style17"><strong>Meal  Delivery</strong><br />
                Rhonda Farish<br />
              Becky Owens<br />
              Cheryl Carpenter<br />
              Wendy Rickert<br />
              Susan  Maeyama</span></td>
            </tr>
            <tr>
              <td valign="top">&nbsp;</td>
            <td valign="top"><span class="style16 style17"><strong>Childrens  Ministry</strong><br />
                Rory &amp; Shari Dahl</span></td>
              <td valign="top"><span class="style16 style17"><strong>Volunteer/Logistics  Coordinator</strong><br />
                Mike Sweeney</span></td>
            </tr>
          </table>        </td>
      </tr>
      <tr>
        <td colspan="6"><div align="center"><img src="FaithWorksFooter.jpg" width="800" height="38" /></div>          <div align="center"></div>          <div align="center"></div></td>
      </tr>
    </table>
</center>
 
<p>&nbsp;</p>
</body>
</html>

                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2008-12-17 at 08:24:58ID23992394
Tags

java

,

css

,

or php

,

various

Topics

Cascading Style Sheets (CSS)

,

JavaScript

,

Hypertext Markup Language (HTML)

Participating Experts
1
Points
250
Comments
4

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. Thumbnails!
    Is there any software around for creating thumbnails? I want to write a web page with pics on,using smaller resolution thumbnails to click on, leading to larger full sized pictures on separate pages
  2. windowsME thumbnails not showing pics
    help, my windows ME thumbnails in MY PICS folder has stopped showing the picture, instead there is a small magnify glass in the thumbnail box. any ideas?

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: hibridassassinPosted on 2008-12-17 at 08:52:47ID: 23195209

Here you go, instead of using the image provided in the example, you can easily switch that to your text link:

http://moneytreesystems.com/css/picpopup.html

 

by: flexxtxPosted on 2008-12-17 at 09:15:37ID: 23195488

Thanks. I understand your reasoning, but I'm having trouble finding the pic reference in the style sheet. Can you help me out with a text example? Also, do I create another or blend it with my existing style sheet? Sorry for being such a novice. :)

 

by: hibridassassinPosted on 2008-12-17 at 09:47:12ID: 23195887

This is the reference to the large picture but you just need to add the styles that refer to the pictures...so add this to your style sheet:
#pic {
      background-color: #FFFFFF;
      left: 10px;
      position: relative;
      top: 10px;
      width: 135px;
}

#pic a .large {
      border: 0px;
      display: block;
      height: 1px;
      left: -1px;
      position: absolute;
      top: -1px;
      width: 1px;
}

#pic a img {
      border: 0;
}

#pic a.p1, #pic a.p1:visited {
      background: #FFFFFF;
      border: 1px solid #000000;
      display: block;
      height: 90px;
      left: 0;
      text-decoration: none;
      top: 0;
      width: 135px;
}

#pic a.p1:hover {
      background-color: #8C97A3;
      color: #000000;
      text-decoration: none;
}

#pic a.p1:hover .large {
      border: 1px solid #000000;
      display: block;
      height: 233px;
      left: 150px;
      position: absolute;
      top: -60px;
      width: 300px;
}
 Then here is how you add the text link and the larger image in your html:

<div id="pic">

<a class="p1" href="#" title="thumbnail image"><img src="images/front3tn.jpg" alt="Thumbnail image" width="135" height="90" title="Thumbnail image" />

<img  src="images/front3.jpg" alt="Enlarged view of image" width="350" height="233" class="large" title="Enlarged view of image" /></a>

</div>

 Basically, you add the class large to the larger picture and the class p1 to the text link...then make sure you put them in a div with id of pic

 

by: flexxtxPosted on 2009-10-15 at 13:57:00ID: 31526901

Resolve the issue myself

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...