tizz
Forum Replies Created
-
@livninctry Neither this support forum nor the NGG plugin show ads. Your is a local problem, on your computer.
Also, writing in capital letters is equivalent to shouting, is frowned upon here.@bigglessmith You posted in the wrong forum, you don’t have Leaf Theme. Also, your is a premium theme and these forums don’t support commercial products.
Forum: Themes and Templates
In reply to: [Leaf] After Leaf theme update, slider no longer visible@jettview Post a link to the problem
@jonnymb74 Your code doesn’t work because of wrong class names, and also in this case you have to add “!important”.
You don’t need to repeat the original CSS, you have to overwrite only the properties that change. Add this in NGG CSS custom area:.ngg-gallery-thumbnail img { border:1px solid #d1bd9a !important; } .ngg-gallery-thumbnail img:hover { background-color:#d1bd9a !important; }But, you don’t need to define the border color if it’s the same color of the background, so you can instead write this (the same effect more or less):
.ngg-gallery-thumbnail img { border:none !important; } .ngg-gallery-thumbnail img:hover { background-color:#d1bd9a !important; }P.S.: Your code distracted me, didn’t notice you had the wrong classes, and I had to compare it because of those added properties that have nothing to do with your request. Next time just put a direct link to the page, and if you are asked to explain better it’s because it wasn’t clear… or maybe because the lack of coffee.
crammy90 You may want to use caption.php template for thumbmails and “shutter” effect for the lightbox.
@loosefast Can you post a link to where you want to place the widget?
@peter2201 Your question has nothing to do with NextGen or WordPress. Conduit.com is a search engine that provides a toolbar to install on your browser. If you’ve installed the toolbar (e.g., doing a download) and you get directed to search.conduit.com then your PC is infected.
@markografik If I were you, I’d try to enter the galleries in those pages using the button for ATP function.
Also the gallery that display thumbs actually doesn’t work because the images don’t open up.
Aside, you can test for a conflict your theme and plugins, deactivating all but NGG and activating a WordPress default theme.@jonnymb74 OK, but you don’t say what you want to change.
@magmazing You can increase your PHP memory limit as described here, or asking to your web service provider.
As for the image dimensions, 800/900px on the longest side most of the time is the ideal measure.@sndinc You can try this.
– Deactivate Nextgen via admin.
– Via FTP remove the entire Nextgen folder in /wp-content/plugins directory. Remove also completely the gallery folder from /wp-content directory (do a backup first if you don’t have any copy of your original images).
– Even if in MyPHPAdmin you don’t see tables, try anyway this query:
DROP TABLE wp_ngg_album;
DROP TABLE wp_ngg_gallery;
DROP TABLE wp_ngg_pictures;
(If you had wp_ as prefix) – Do an entire DB backup first
– Back to admin, remove also any reference to Nextgen (pages, posts, shortcodes, etc.)@buddyr I believe that the issue has something to do with that particular effect on thumbnails given by Flipping Cards plugin.
You should ask to the plugin’s authors how to integrate their product with Nextgen.@munkytattoo To spread them more you can simply change the margins:
.ngg-gallery-thumbnail img { margin: 9px; }But you can have a real centring of the elements in this way:
.ngg-galleryoverview { text-align:center; } .ngg-gallery-thumbnail-box { float:none !important; display:inline-block; }Write one of the two in CSS customization area.
@jonnymb74 Maybe you have to add
!importantproperty somewhere in that code, but if you want a better help you have to link here the page where you display thumbnails, specifying what you want to achieve.