Limit the word using this: php Code: //replace $theword with the variable name that hold the faq content $length_limit = 20 ; if (
strlen ( $theword ) > $length_limit ) { $theword = substr ( $theword , 0 , $length_limit ) . '...' ; } Or just simply php Code: substr ( $YOUR_VARIABLE , 0 , 20 ) . '...' ;