I don’t know about version 0.98, but in recent you can use:
.ngg-albumtitle {
display:none;
}
in your stylesheet.
M
rumlab,
I replaced the existing code with yours in nggallery.css, didn’t work. I appreciate your suggestion.
Ok, maybe I’m missing something. Please post a link to your site.
M
Ok, if you only want to remove the title and not the photo count, this should do it:
.ngg-album-compact h4 {
display:none;
}
if you want to remove both use:
.ngg-album-desc {
display:none;
}
Hope that works…
M
rumlab,
OMG thanx so much. Your code worked ! I’ve never played around with .css files before.
I applied your code for extended albums too ! =)
I have one more question.
HiJack my own thread I guess. Do you know how to put albums inside of albums ?
I thought I had read that was a possibility.
Hope you have a great weekend. You helped save me from deleting titles to over 160 galleries =). Take care.
al
Thanks, you’re very welcome…
I haven’t really used albums much, so can’t help you there.
Best,
M
@rumlab,
One last question. I’ve tried on my own but I’m a n00b when it comes to altering .css files.
When I only have one gallery I use the extended album.
After making the following chnage :
.ngg-albumtitle {
// sixx--
//text-align: left;
//font-weight: bold;
//margin:0px;
//padding:0px;
//font-size: 1.4em;
//margin-bottom: 10px;
display:none;
// --sixx
}
I ended up with a space where the title use to be displayed.
How can I remove the space ?
Here’s the example :
http://www.doublesixx.com/gallery/om-2007/events-2007/
Thanx again I appreciate all your help.
al
Hey Sixx. Did you get it sorted? I’m not sure I see the problem?
M
rumlab,
No. If you look at the url I provided. You’ll notice there’s more of a space above the picture than below. Seems like removing the title left a little space.
Not the end of the world, I just wanted it to look nice and neat.
You have no idea how much I’ve appreciated your help. Thank you. Hope I can return the favor one day.
al
@rumlab
If I want to keep the title and remove the post count, what code should I use then?
Thanx
EDIT
I’ve found out what.
At album-compact.php remove the following:
<?php if ($gallery->counter > 0) : ?>
<p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
<?php endif; ?>
[Please post code snippets between backticks or use the code button.]
Ok, Sixx, there are a couple of options, but first guess is to try this in your own css:
.PostContent ul {
padding:0;
margin:0;
}
(make a extra section underneath existing PostCentent class.
Best,
Morten
@rumlab,
There wasn’t an existing PostCentent class.
I placed your code at the bottom of the Extend album and the problem remained.
Previously I tried playing with the padding and margin in the Extend album section and I couldn’t remove the sliver of space about the thumbnail.
Could not having a PostCentent be causing me problems ?
Thank you again for taking the time to try and help me out. Very much appreciated.
No problem π
Its meant to go in your themes’ stylesheet.
/wp-content/themes/DoubleSixx/style.css
M
@rumlab,
Oops I missed that part, and your own .css.
Pasted your code and it didn’t work either =(.
I thought this one woulda been handled in the nggallery.css.