Hi! How do I force the size of the frames/rectangles which contain the blog thumbnails and text snippets? I want all the blog thumbnails/snippets to all line up symmetrically. Thanks!
Hello, Add these lines in functions.php file Code: // for excerpt function custom_excerpt_length( $length ) { return 50; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); This will solve your issue. Thanks & Regards Yogesh Bhade
This did not work. I added this to my functions.php and that code showed up on the top of my home page. Can you show step by step how to do this please? Thanks
Hello, Add these lines in functions.php file as shown in screenshot. Code: // for excerpt function custom_excerpt_length( $length ) { return 50; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); This will solve your issue. Thanks & Regards Yogesh Bhade
Hi. I tried it again, clicked update file and I didn't get any errors but it still didn't work. This is how the functions.php looks: http://www.screencast.com/t/TBf6ILk0kFPk This is how my blog looks: http://www.screencast.com/t/B1QuOfJg
Hello, You will find your solution in following thread. http://www.inkthemes.com/community/threads/symmetrical-post-snippets.13356/#post-49522 Thanks & Regards Yogesh Bhade