• Resolved Franic.1

    (@franic1)


    Hi,

    I have just downloaded NextGen 2.0.40 and I am trying to create an album that contains a few galleries.

    I am using the NextGen basic compact album. I am happy with how the photo thumbnails look within the galleries, however the border around the gallery thumbnails are completely different. Each gallery thumbnail has a 3 border step which I would like to remove. Is there a way I can make my gallery thumbnail borders the same a my photo borders.

    The title for each of these gallerys is also not showing. Is there a way I can correct this?

    Please see a link to my website to understand what I mean:

    http://www.rnjewellery.com/jewellery/

    Thanks for any help you could provide in advance

    Franic.1

    https://wordpress.org/plugins/nextgen-gallery/

Viewing 8 replies - 1 through 8 (of 8 total)
  • @Franic.1 As the borders, write in NGG custom CSS area:

    .ngg-album-compactbox, .ngg-album-compactbox:after, .ngg-album-compactbox:before {
    border: none !important;
    }

    As for titles not showing, I see the ngg-album-desc is correctly loaded in your HTML source, but I suppose they are not visible because of the cufon font used by your theme.
    Try with default theme and you’ll have the evidence.

    Thread Starter Franic.1

    (@franic1)

    Thank you for your reply,

    Your coding worked to remove the triple border, is it possible to turn them grey and have the hover feature like the borders on this page?
    http://www.rnjewellery.com/jewellery/rings/

    Also is there a way I can override the ngg-album-desc so I can see the titles?

    Thanks

    @Franic.1, the code below is for change the border color, give a mouseover background, and the same look as in gallery thumbnails

    .ngg-album-compactbox .Thumb {
    border: 1px solid rgb(169, 169, 169);
    }
    .ngg-album-compactbox:hover {
    background-color: rgb(169, 169, 169);
    }
    .ngg-album-compactbox {
    border-radius: 0;
    padding: 4px !important;
    }

    You may need to add !important to the properties that doesn’t override.
    The problem is that border bottom is larger than the others, it’s for .ngg-album-link I guess but, sorry, I don’t know how to remove it.
    As for titles, first test as said above, and if turns out that it’s a theme issue, you have to ask to the theme author.

    Thread Starter Franic.1

    (@franic1)

    @tizz

    Thanks again for your help, the border is now sorted!

    Now just to sort out my title issue. I will try your above suggestion however is there not a way to block the plugin pulling in the cufon font from my theme and override it so that the titles are shown in arial?

    Thread Starter Franic.1

    (@franic1)

    @tizz

    I’ve just tried a different theme and the titles pull through ok.

    As asked above is there a way to block the plugin pulling in the cufon font from my theme and override it so that the titles are shown in arial, also is there a way I can center the title descriptions?

    Thanks

    @Franic.1, The issue is in the theme, not in the plugin, so you have to find a solution within your theme, this isn’t your theme support.
    Anyway, have you seen in your theme settings if you can disable Cufon?
    Or else, I see that your theme use an old version of Cufon, try with this
    Save the file as “cufon-yui.js” and FTP it to themes/simplefolio/js/

    For centering description, it’s hard to assure without see the title, but this should works:
    .ngg-description {text-align: center;}

    Thread Starter Franic.1

    (@franic1)

    @tizz Thank you very much for all your help!

    @tizz
    Thanks!!!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘NextGen 2.0.40 Album/Gallery Border’ is closed to new replies.