eolic 0 Report post Posted April 21, 2011 Hello, I would like to justify Excerpt text and reduce the length of all to half of the actual size. I find the way to do it one by one, form the edit post page, but I would prefer to change the code and do it automatically. Thank you very mcuh! Share this post Link to post Share on other sites
Kate 3 Report post Posted April 21, 2011 Hi eolic, To justify it, you'll need to add a little CSS "text-align:justify". For the excerpt length, you'll have to add some code to your functions.php file. You can read about that here: http://codex.wordpress.org/Function_Reference/the_excerpt Share this post Link to post Share on other sites
eolic 0 Report post Posted April 22, 2011 Thank you very much Kate, I don't exactly the code to say where "text-align:justify", I don't really know each part of the theme to use it, like .posts .excerpt etc. is it correct if I write: .excertp "text-align:justify" And about the functions, I have to write the new function on function.php in base theme? Thank you very much! Share this post Link to post Share on other sites
kastelic 6 Report post Posted April 22, 2011 Put this in Custom Code -> Custom CSS: .post-excerpt p { text-align:justify } The answer to your second question is yes. Share this post Link to post Share on other sites