Jump to content

Recommended Posts

Posted

I have images on my website that I would like to attach their testimonials to. I want to have the written testimonial come up by clicking on their name under the picture or by rolling over it. How would I go about doing this? I am using Dreamweaver.

 

Thanks!!

Posted

I like the second one you suggested. I am very new to website design, so please forgive my questions.

 

How do I incorporate this into the webpage. Just cut and paste? I have an image of someone and their name beneath them. I would like to make the name show the testimonial when it is rolled over or clicked on.

 

And then how do I change it to the testomonial instead of the RSS feed?

Posted

Cut and paste the javascript into the

section of your page. Cut and paste the CSS into your CSS file and cut and paste the HTML into your html page. You will then need to change the images to the name of your images and change the text.
Posted

I cut and pasted everything. But it is not working correctly. I put the javascript in the head, the html in the body, and the css in the css page. I did not want this to be a link to anything. I just want it to have the testimonial popup when you roll across the name.

 

Any suggestions?

Posted

Copied and created a new file.

 

Here is what the

looks like. Where am I supposed to put the link?

 

/p>

"http://www.w3.org/TR/html4/loose.dtd">

RogersCo.com

 

$(document).ready(function(){

 

$(".rss-popup a").hover(function() {

$(this).next("em").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");

}, function() {

$(this).next("em").animate({opacity: "hide", top: "-70"}, "fast");

});

 

});

 

 

Posted

Will you tell me if this is right.

 

The Javascript goes into the

anywhere?

The HTML goes into the body, in front of the image I am using

The CSS, into the CSS page

 

Copied the jquery.js and made a new file.

Put the above the other javascript.

 

In the HTML RSS Feed do I need to change this?

 

Have I left anything out?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...