benteoh
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Flickr Gallery] How do I remove the tabs and larger thumbnails?Have a look at the shortcode options here: http://wordpress.org/extend/plugins/flickr-gallery/other_notes/
Not sure exactly what you’re after in the second part of your question. Have you got a site up and running?
Forum: Plugins
In reply to: [Plugin: Flickr Gallery] Tabstry having a look at the different shortcode options (http://wordpress.org/extend/plugins/flickr-gallery/other_notes/). This one might be the best option:
[flickr-gallery mode="recent"]Forum: Plugins
In reply to: [Plugin: Flickr Gallery] Lightbox not working, Next Page button not workingYou need to make sure that your theme supports the wp_head hook.
The easiest way to do it is to edit your themes header.php and make sure you put this code in between the header tags:
<?php wp_head(); >Forum: Plugins
In reply to: Flickr Gallery – Why doesn’t Lightbox work?You need to make sure that your theme supports the wp_head hook.
The easiest way to do it is to edit your themes header.php and make sure you put this code in between the header tags:
<?php wp_head(); >Forum: Plugins
In reply to: Flickr Gallery – Why doesn’t Lightbox work?I think it’s to do with certain themes. It works on the default template, but not on some others. I’m trying to work it out now!
Forum: Plugins
In reply to: [Plugin: Flickr Gallery] Lightbox not working, Next Page button not workingYeah, having the same problem with the lightbox, but not sure how to fix it. The code’s a little beyond my understanding. I’m pretty sure it’s got its own lightbox built in.
Forum: Fixing WordPress
In reply to: [Plugin: Flickr Gallery] Centering ImageWhat short code are you using to call the gallery?
Forum: Plugins
In reply to: [Plugin: Flickr-Gallery] Thumbnail Offset from FramesHey John,
I found it was an issue where the theme I was using had margins applied to the images.
If you insert the following, it should get rid of the margins (and possibly excess borders) from your thumbnails:
div.flickr-thumb img { margin: 0px; border: none; }