>> If you go to http://www.thepuppyplace.org/page53.html and click on
>> a link (Alabama for example) popups up a window with text inside.
>> Can someone suggest a website that I can learn this technique? Or
>> any other comments? Thank you.

This is better handled through JavaScript than CSS.

That being said, I tend to use Prototype <http://www.prototypejs.org> in 
all my projects making something like this possible (and simple):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd";>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Simple New Window</title>
<script type="text/javascript"
         src="http://www.google.com/jsapi";></script>
<script type="text/javascript"><!--
google.load("prototype","1.6");
// --></script>
<script type="text/javascript"><!--
var set_blank_targets = function () {
   $$("a[rel='external']").invoke("writeAttribute","target","_blank");
};
Event.observe(document, 'dom:loaded', set_blank_targets);
// --></script>
</head><body>
<a href="ala.html" rel="external">Alabama</a>
</body></html>

Hope it helps.
Bill

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bill Brown, MacNimble.com :: "From dot concept to dot com since 1999"
WebDevelopedia.com, TheHolierGrail.com, Cyber-Sandbox.com, Anytowne.com
"The intuitive mind is a sacred gift and the rational mind is a
faithful servant. We have created a society that honors the servant and
has forgotten the gift. -- Albert Einstein
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to