-
1. Re: I want to rotate my customer testimonials and need a suggestion.
cdeatherage Feb 24, 2011 5:59 AM (in response to INTYME1985)Look into a jquery slideshow.
-
2. Re: I want to rotate my customer testimonials and need a suggestion.
INTYME1985 Feb 24, 2011 6:50 AM (in response to cdeatherage)http://www.projectseven.com/products/tools/horizontal-glider/examples/featured-items/index .htm
This would work, assuming in DW5, does anyone have experience with it? $95. Or with a similar one that is free?
Thanks again
-
3. Re: I want to rotate my customer testimonials and need a suggestion.
osgood_ Feb 24, 2011 6:55 AM (in response to INTYME1985)INTYME1985 wrote:
http://www.projectseven.com/products/tools/horizontal-glider/examples/ featured-items/index.htm
This would work, assuming in DW5, does anyone have experience with it? $95. Or with a similar one that is free?
Thanks again
Dam, I'd only recommend paying for stuff if you can't find it free on the net. PV11 are a great company and will save you time but what you are asking to do is easy peasy.
If you just want to rotate some simple text messages then have a look at the link below - download the source code (link at bottom of page) and play around with it.
http://www.brightcherry.co.uk/scribbles/2010/03/29/ajax-rotating-text/
Alter the 'timeout' in the html document to slow the speed down.
-
4. Re: I want to rotate my customer testimonials and need a suggestion.
INTYME1985 Feb 27, 2011 5:10 PM (in response to osgood_)I've implemented a jquery innerfade for my customer testimonials... thanks to all.
How can I place it in a 2 column table to display comments in the left column and the associated image in the right column? I keep making a mess of the page in code view?
After repeated failure I am wondering if this is the right approach? Or is it just basic table implementation that I haven't grasped yet?
http://kansascitycrates.com/testimonials/index6.html
Thanks in advance
-
5. Re: I want to rotate my customer testimonials and need a suggestion.
osgood_ Feb 28, 2011 1:33 AM (in response to INTYME1985)Wrap every 'comment' in its own <div> and also wrap the associated image in its own <div> (see below, the first comment/image from you code). I've given the <divs> class names of 'leftComment' and 'rightImage'.
<div style="display:none">
<div class="leftComment">
<p>"Thanks for everything, you really made a lot of my worries go away".</p><p> Stacy Tucker - Mission Hills, KS </p>
<p> Art collection</p>
</div><!-- end leftComment -->
<div class="rightImage"><img src="crate_styles/export_crate/export_crate_example_photo_004.jpg" width="300" height="411" alt="cash register" />
</div><!-- end rightImage -->
</div><!-- end display none -->Then add the below css to your styles:
#rotatenotice {
width: 600px;
margin-left: 50px;
overflow: hidden;
}
.leftComment {
float: left;
width: 300px;
}
.rightImage {
float: left;
width: 300px;
}Finally amend the 'containerheight' in the <script> to 411px (as shown below):
<script type="text/javascript">
$(document).ready(
function(){
$("#rotatenotice").innerfade({
animationtype: "slide",
speed: "2600",
timeout: "3500",
containerheight: "411px"
});});
</script> -
6. Re: I want to rotate my customer testimonials and need a suggestion.
INTYME1985 Feb 28, 2011 6:10 AM (in response to osgood_)Thank you osgood_, more like osgreat!
I am getting s syntax error at this line, when placing the css on the actual page within my <script> </script> in the upper poprtion of the page.
#rotatenotice {
Is that a class I should define and place in my template? I get nervous messing with my template and wanted to ask first, I can't find another example in my site to compare.
Many thanks, this all has to sink in too, pardon me if I'm being overly needy.
-
7. Re: I want to rotate my customer testimonials and need a suggestion.
osgood_ Feb 28, 2011 7:07 AM (in response to INTYME1985)INTYME1985 wrote:
Thank you osgood_, more like osgreat!
I am getting s syntax error at this line, when placing the css on the actual page within my <script> </script> in the upper poprtion of the page.
#rotatenotice {
You don't place the css within your <script></script> tags, if that is what you are saying.
You can put the css after your last css class (see below) which is in the template page:
.text_general_info2 {
color: #0FF;
} -
8. Re: I want to rotate my customer testimonials and need a suggestion.
INTYME1985 Feb 28, 2011 8:01 AM (in response to osgood_)Awesome!! It ain't pretty (yet), but it's working now!
http://www.kansascitycrates.com/customer_testimonials.html
You make it so look easy osgood, this is HUGE to ME!
Words can not express my sincerest appreciation, Thank you sooooo much!!
-
9. Re: I want to rotate my customer testimonials and need a suggestion.
osgood_ Feb 28, 2011 8:28 AM (in response to INTYME1985)INTYME1985 wrote:
Awesome!! It ain't pretty (yet), but it's working now!
http://www.kansascitycrates.com/customer_testimonials.html
It's getting there.
You make it so look easy osgood, this is HUGE to ME!
If you know how and you have been doing it for several years it's easy, if you don't and haven't it's not. Everyone has to start somewhere.
Words can not express my sincerest appreciation, Thank you sooooo much!!
You're welcome.
-
10. Re: I want to rotate my customer testimonials and need a suggestion.
INTYME1985 Feb 28, 2011 11:43 AM (in response to osgood_)Thank you osgood for your help and also words of encourgement. What a difference you made!
I've posted the page again to see my result.
http://kansascitycrates.com/customer_testimonials.html
Have a great day, and may God bless you with all you desire!



