Title: jaredstenquist's Replies | WordPress.org

---

# jaredstenquist

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Facebook Recommendation iFrame Border](https://wordpress.org/support/topic/facebook-recommendation-iframe-border/)
 *  [jaredstenquist](https://wordpress.org/support/users/jaredstenquist/)
 * (@jaredstenquist)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/facebook-recommendation-iframe-border/#post-1508530)
 * Give this a shot
 * [http://www.adambreckler.com/how-to-remove-the-facebook-likebox-border](http://www.adambreckler.com/how-to-remove-the-facebook-likebox-border)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[jQuery Colorbox] [Plugin: jQuery Colorbox] Two clicks to close?](https://wordpress.org/support/topic/plugin-jquery-colorbox-two-clicks-to-close/)
 *  [jaredstenquist](https://wordpress.org/support/users/jaredstenquist/)
 * (@jaredstenquist)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-jquery-colorbox-two-clicks-to-close/#post-1950690)
 * I am having the same issue, except for me, the image changes from being centered
   to being left aligned in the box. Wish I knew this would happen before I upgraded
   to WordPress 3.1
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: jQuery Colorbox] Using Colorbox to open image links](https://wordpress.org/support/topic/plugin-jquery-colorbox-using-colorbox-to-open-image-links/)
 *  [jaredstenquist](https://wordpress.org/support/users/jaredstenquist/)
 * (@jaredstenquist)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-jquery-colorbox-using-colorbox-to-open-image-links/#post-1477831)
 * Important Follow Up
 * It it not neccessary to have the links to the additional photos wrapped around
   the actual image you are linking to. Doing this will actually load every image
   in the background on pageload. Not good!
 * Instead, just use a single 1 pixel spacer .gif image.
 *     ```
       <a href="<?=get_bloginfo('siteurl');?>/images/photo2.jpg" title="image caption here"><img src="<?=get_bloginfo('siteurl');?>/images/spacer.gif" width="1" height="1" class="colorbox-1" border="0" /></a>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: jQuery Colorbox] Using Colorbox to open image links](https://wordpress.org/support/topic/plugin-jquery-colorbox-using-colorbox-to-open-image-links/)
 *  [jaredstenquist](https://wordpress.org/support/users/jaredstenquist/)
 * (@jaredstenquist)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-jquery-colorbox-using-colorbox-to-open-image-links/#post-1477830)
 * I have got this working using the width=”0″ and height=”0″ hack. I have a single
   thumbnail that starts a gallery up of 20 images.
 * **Initial thumbnail in the page content**
 *     ```
       <a href="<?=get_bloginfo('siteurl');?>/images/photo1.jpg" title="image caption here">
       <img src="<?=get_bloginfo('siteurl');?>/images/photo1_thumb.jpg" alt="Click for Gallery" border="0" class="colorbox-1" />
       </a>
       ```
   
 * **For each additional photo (i put them right before the </body> tag.**
 *     ```
       <a href="<?=get_bloginfo('siteurl');?>/images/photo2.jpg" title="image caption here"><img src="<?=get_bloginfo('siteurl');?>/images/photo2.jpg" width="0" height="0" class="colorbox-1" /></a>
       ```
   

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