Ok so i am making a sales page for my product. I have a few testimonials. and want to position them they way they have there on this site. notice the lined paper. I guessing thats through css but dont know for sure. Can someone explain how to do this. http://www.getgoogleadsfree.com/#proof it may take a few seconds to load
Hey, I don't know if these guys have helped you out yet, but as far as I can see all this site is doing is taking the following image:http://www.getgoogleadsfree.com/images/testimonialbg.jpg, and they are repeating horizontal and vertical as a background image behind the text. So if you would want to do this you'd put the text inside a div, and set the div background to the image. Here is an example of code you could use: This is the HTML and would go inside the body of your page You would just copy and paste the same thing for a 2nd testimonial.: <div class="paper"> YOUR TESTEMONIAL HERE THAT YOU WANT ON THE LINED PAPER </div> Code (markup): This is the CSS you would use which could either go in your external stylesheet if you have one, or if not you could define it inside the head of your page: .paper { background-image: url (www.LINKTOYOURLINEDPAPERIMAGEHERE.gif) ; } Code (markup):