Log in

View Full Version : How to do CSS Popup Image Viewer



b208
04-09-2008, 04:00 AM
I like this css code so much,

http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/

but some how I can't make it work within my web page. So is there any one who can tell how to actually do the whole thing in DW. Do you paste the css code, and after that you paste the html code? And where do you paste the html code on the page? And do you rename the images within the html code with the one i want to display?

Many, many thanks.

b

rangana
04-09-2008, 04:10 AM
How did you pasted it?..

..Basically CSS should be in the head section...in the <head> tag and HTML in the body section ;)


<html>
<head>
<style type="text/css">
/* css here {.......}*/
</style>
</head>
<body>
<!--HTML HERE-->
</body>
</html>


...Yes, you'll rename your image source to the image that you have :)
...If nothing still works, could you show us your codes...;)

b208
04-09-2008, 05:23 AM
thanks rangana. i'll try that and let you know how did i go.