Forum

Please make sure that you have read the documentation and extensive resources provided on this site before posting your question!

Dynamic Content Gallery Resources

DCG Version 4.0 beta is now available for download and testing. This is a development version and not recommended for live sites. Read more here.

Note that the current stable release of the DCG is version 3.3.5.

 
You must be logged in to post Login Register


Register? | Lost Your Password?

Search Forums:


 






Minimum search word length is 3 characters – Maximum search word length is 84 characters
Wildcard Usage:
*  matches any number of characters    %  matches exactly one character

Slider arrows not aligning?

closed
UserPost

3:32 am
January 15, 2010


bshubinsky

Guest

1

After a lot of fiddling and a lot of browsing through the forums, I finally got my gallery set up and working how I wanted it to for the most part.

However, on the carousel, the arrows aren't lined up. The left hand arrow appears to be aligned fine, but the right hand arrow it outside of the actual content.

Here's a link to my page: http://www.arcadegrind.com

Any ideas?

12:49 pm
January 17, 2010


Ade

Admin

posts 2378

2

Hi,

They look perfectly aligned to me in FF 3.5.7. Did you fix it?

Dynamic Content Gallery: Have you read the Configuration Guide and FAQ?

7:18 pm
February 11, 2010


jcollier

Guest

3

Love the plugin. However, I'm seeing something similar: the right arrow is misaligned.

Here's a screenshot.

10:22 am
February 12, 2010


Ade

Admin

posts 2378

4

Hi,

Do you mean vertically (they look perfect to me) or horizontally? What's your URL?

Dynamic Content Gallery: Have you read the Configuration Guide and FAQ?

3:52 pm
February 12, 2010


jcollier

Guest

5

When hovering over the panel, the default right double arrow doesn't appear over the rounded box, but it expanded much larger and overlays the text.

Not public yet. I can give you access if you contact me at jcollier at bates dot edu.

4:38 am
February 13, 2010


Ade

Admin

posts 2378

6

Could be that the image is missing. Use Firebug add-on for Firefox to see what's going on.

Dynamic Content Gallery: Have you read the Configuration Guide and FAQ?

12:58 am
March 12, 2010


RobYardman

Guest

7

I'm having a similar issue! Help is definitely aprpeciated.

The right arrow image is showing but large and off the gallery.

Please view at:

http://www.thesantafevip.com

1:33 am
March 12, 2010


RobYardman

Guest

8

Ok so, anyone using the Thematic Theme Framework may have this issue. As was I until just now.

The .nav-next style in Thematic Framework default.css manipulates the width of the image to 50% of the entire width of the gallery div.

This should fix it:

#dfcg_images .nav-next {
    width: 22px;
}

Hope everyone understands that.

5:28 am
March 13, 2010


Ade

Admin

posts 2378

9

Thanks for posting back with the fix. Smile

Dynamic Content Gallery: Have you read the Configuration Guide and FAQ?

11:11 am
March 30, 2010


Peter

Guest

10

How did you manage to implement DCG in Thematic? I can't get it to show.. The code I use is just

 

add_action('thematic_belowheader','dynamic_content_gallery');

I've tried with the 

 

 

include (ABSPATH . '/wp-content/plugins/dynamic-content-gallery-plugin/dynamic-gallery.php');

 

as well…

10:21 pm
March 30, 2010


Ade

Admin

posts 2378

11

I don't have a copy of Thematic, so can only guess, but I would have thought that something like this would work (assuming you only want the DCG on your home page):

add_action('thematic_belowheader','add_dcg');
function add_dcg() {
    if( is_home() ) {
        dynamic_content_gallery();
    }
}

Dynamic Content Gallery: Have you read the Configuration Guide and FAQ?