Viewing 3 replies - 1 through 3 (of 3 total)
  • I created a new menu called Testimonials
    Then I created a new Page called “Voices about…” and added it to the Testimonials menu

    To avoid getting the quotations in the middle of the text I had to add some Custom CSS:
    This might help:

    .widget_woothemes_testimonials .quote blockquote {
    padding: 3em;
    }

    Now I only have to figure out how to limit the quotations’ “margin right”.

    Watch here how I’ve done it so far:
    https://www.sarasjodin.com/voices/

    Good luck!

    Hi again,

    Since I afterwards saw that the above solution messed up my Testimonials widget, I now found this solution:

    .widget_woothemes_testimonials .quote blockquote {
    margin: 0 0 0;
    padding-left: 40px;
    }

    /S

    Now I have also solved my own problem with text that didn’t break on Testimonials’ page:

    .widget_woothemes_testimonials .quote blockquote {
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    margin: 0 0 0;
    padding-left: 40px;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘setting up testimonial page’ is closed to new replies.