Page 1 of 1

"Reviews" don't have any Line Breaks

Posted: Wed Jun 06, 2012 9:32 am
by hassonmike
So we recently added AbleMods Tabbed Product Description module (http://www.ablemods.com/Tabbed-Product- ... on-P2.aspx), but now the reviews each only sit on a single line, stretching the page as long as it needs to to finish the line.

example: http://www.trickconcepts.com/Fire-Wand-P163C77.aspx

Any advice on where I should look to resolve this?

Re: "Reviews" don't have any Line Breaks

Posted: Sat Jun 09, 2012 12:46 pm
by clevername
Try adding this to your CSS..

Code: Select all

pre.Reviews {
      white-space: -moz-pre-wrap !important;  
      white-space: -pre-wrap;
      white-space: -o-pre-wrap; 
      word-wrap: break-word; 
      white-space: pre-wrap;
}

Re: "Reviews" don't have any Line Breaks

Posted: Tue Jun 12, 2012 10:08 am
by hassonmike
Nice! Thanks for the tip!

This code actually kept it running a little too far off the page still, but I was able to nail it with

Code: Select all

pre.Reviews {
      white-space: -moz-pre-wrap !important;  
      white-space: pre-wrap;
}
Thanks for your help!