Title: hypergate's Replies | WordPress.org

---

# hypergate

  [  ](https://wordpress.org/support/users/hypergate/)

 *   [Profile](https://wordpress.org/support/users/hypergate/)
 *   [Topics Started](https://wordpress.org/support/users/hypergate/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hypergate/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hypergate/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hypergate/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hypergate/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hypergate/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flickr Gallery] [Plugin: Flickr Gallery] Larger 640 pixel wide size](https://wordpress.org/support/topic/plugin-flickr-gallery-larger-640-pixel-wide-size/)
 *  Thread Starter [hypergate](https://wordpress.org/support/users/hypergate/)
 * (@hypergate)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/plugin-flickr-gallery-larger-640-pixel-wide-size/#post-1558299)
 * Thanks Rik!!!
 * After following the directions from the Dutch site I changed the line to a “_z.”
   so I could get the 640 size (and no unneeded api calls). 😀
 * Changed this line:
 *     ```
       if ( options.size_callback == null || $calling.hasClass("video") ) {
       			$image.attr("src", $calling.attr("src").replace(/_[stm]\./g, "."));
       ```
   
 * to:
 *     ```
       if ( options.size_callback == null || $calling.hasClass("video") ) {
       			$image.attr("src", $calling.attr("src").replace(/_[stm]\./g, "_z."));
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Nav bar trouble in IE (okay in FF, Safari)](https://wordpress.org/support/topic/nav-bar-trouble-in-ie-okay-in-ff-safari/)
 *  Thread Starter [hypergate](https://wordpress.org/support/users/hypergate/)
 * (@hypergate)
 * [17 years ago](https://wordpress.org/support/topic/nav-bar-trouble-in-ie-okay-in-ff-safari/#post-1065142)
 * Thanks for pointing me in the right direction. The change didn’t totally fix 
   it but in the process something jumped out at me. I was using “grey” instead 
   of #999 – IE apparently doesn’t understand english. 🙂
 * I changed:
 * #menubar {
    background: grey none repeat scroll 0 0; … }
 * TO
 * #menubar {
    background: #999 none repeat scroll 0 0; … }
 * and a couple other references from grey to #999 and all is better in IE.
 * 🙂

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