Title: image size and layout
Last modified: August 19, 2016

---

# image size and layout

 *  Anonymous User 7903281
 * (@anonymized-7903281)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/image-size-and-layout/)
 * Hi there,
 * I am looking for the code where I can edit the image size and other layout options.
   
   Anyone knows?
 * Thanks,

Viewing 1 replies (of 1 total)

 *  [Jonáš Jančařík](https://wordpress.org/support/users/jonas_jancarik/)
 * (@jonas_jancarik)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/image-size-and-layout/#post-2067887)
 * Check out **wp-bannerize_frontend.php** in the plugin folder, lines 140 and 141.
 * For example, I wanted to change the width of the pictures to 100%, so I commented
   out line 140 (which apparently gathers image’s dimensions from the database) 
   and edited line 141 (added STYLE attribute), like this:
 *     ```
       //$imgsize = ($row->width == 0 || $row->height == 0) ? '' : sprintf('width="%s" height="%s"', $row->width, $row->height );
   
       $o .= '<a' . $nofollow . $javascriptClickCounter . $new_link_class . ' ' . $target . ' href="' . $row->url . '"><img ' . $imgsize . ' style="width: 100%;" alt="' . $row->description . '" src="' . $row->filename . '" />';
       ```
   
 * (Obviously, the ‘ . $imgsize . ‘ part could now be left out.)
 * There is also the wp-bannerize_widget.php file, which should probably be updated
   too if you use the plugin as a widget.

Viewing 1 replies (of 1 total)

The topic ‘image size and layout’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-bannerize_a29ebf.svg)
 * [WP Bannerize](https://wordpress.org/plugins/wp-bannerize/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-bannerize/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-bannerize/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-bannerize/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-bannerize/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-bannerize/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Jonáš Jančařík](https://wordpress.org/support/users/jonas_jancarik/)
 * Last activity: [14 years, 11 months ago](https://wordpress.org/support/topic/image-size-and-layout/#post-2067887)
 * Status: not resolved