Title: Left align image
Last modified: August 21, 2016

---

# Left align image

 *  Resolved [davidbvogel](https://wordpress.org/support/users/davidbvogel/)
 * (@davidbvogel)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/left-align-image/)
 * I like the plugin, but I want the images to be displayed to the left of the title
   and excerpt instead of above. Any way to do that? Thanks!
 * [http://wordpress.org/extend/plugins/category-feature/](http://wordpress.org/extend/plugins/category-feature/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [tepelstreel](https://wordpress.org/support/users/tepelstreel/)
 * (@tepelstreel)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/left-align-image/#post-3921729)
 * Hi,
 * unfortunately it is only possible by hardcoding the CF_WidgetClass.php file and
   find line 368. From there on you can make your changes. The output ends in line
   376.
 * Regards
 *  Thread Starter [davidbvogel](https://wordpress.org/support/users/davidbvogel/)
 * (@davidbvogel)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/left-align-image/#post-3921762)
 * Forgive my php illiteracy, but what exactly am I looking for, and what will I
   change it to?
 *  Plugin Author [tepelstreel](https://wordpress.org/support/users/tepelstreel/)
 * (@tepelstreel)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/left-align-image/#post-3921763)
 * Hi there,
 * you look for that code:
 *     ```
       echo $eol.'<a href="'.get_permalink().'" title="'.$cfw_title_tag.'">'.$cfw_img.'</a>'.$eol.'<div style="clear:both;"></div>'.$eol;
       ```
   
 * And you would have to change it to something like that:
 *     ```
       echo $eol.'<div style="float:left;padding-left:8px;"><a href="'.get_permalink().'" title="'.$cfw_title_tag.'">'.$cfw_img.'</a>'.$eol.'</div>'.$eol;
       ```
   
 * That should make it look a bit like you want it to.
 * Regards
 *  Thread Starter [davidbvogel](https://wordpress.org/support/users/davidbvogel/)
 * (@davidbvogel)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/left-align-image/#post-3921764)
 * Excellent. I think I can take it from here. Thank you!
 *  Plugin Author [tepelstreel](https://wordpress.org/support/users/tepelstreel/)
 * (@tepelstreel)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/left-align-image/#post-3921767)
 * You are wellcome!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Left align image’ is closed to new replies.

 * ![](https://ps.w.org/category-feature/assets/icon-128x128.png?rev=1034300)
 * [Featured Category Widget](https://wordpress.org/plugins/category-feature/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/category-feature/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/category-feature/)
 * [Active Topics](https://wordpress.org/support/plugin/category-feature/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/category-feature/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/category-feature/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [tepelstreel](https://wordpress.org/support/users/tepelstreel/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/left-align-image/#post-3921767)
 * Status: resolved