Forum

 
You must be logged in to post Login Register


Register? | Lost Your Password?

Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

Rounded corners ?

unresolved
UserPost

11:04 am
February 5, 2010


timomaas

Netherlands

New Member

posts 1

1

Hi,

I use the latest 3.2.1 version of your great plugin, however, my theme relies (well, in Firefox that is) on rounded corners. Is this easy to setup in the css ?

Regards,

Timo Cool

7:44 pm
February 5, 2010


Ade

Admin

posts 1212

2

Hi Timo,

You mean you want the DCG to have rounded corners too? Theoretically, it is possible using CSS (though you won't get rounded corners using CSS and IE). Try adding suitable CSS to the myGallery div in your main stylesheet. Eg something like this:

#myGallery {
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -khtml-border-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    }

No idea if it will work. Smile

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