Gridspace Meta Info Help
-
Hi all,
I am working with the Gridspace template. The page I have a question about is: placeathens.com
Basically, I need both the post title and meta information (author name and date published) to show up before the user hovers over the images in the grid. When the user hovers over an image, I don’t want any text to appear. Right now, my problem is that the title text is working just fine, but the meta information has just disappeared.
Here is the CSS that I currently have in place:
.home article .entry-content a.thumb img:hover {
opacity: 1 !important;
filter: alpha(opacity=70);
-webkit-transition: opacity .4s linear;
}.entry-content:hover .entry-title {
display: none !important;
}.entry-content:hover .entry-meta {
display: none !important;
}.home .hide {
display: block !important;
}Can anyone help me figure out how to make this work?
On a slightly related note, is there any way to list a different author for each post without having to invite each author as a user? I’ve done quite a bit of googling, and it doesn’t seem like that will be possible, but I just wanted to check here, too.
Thank you for your help!
The blog I need help with is: (visible only to logged in users)
-
Hi there,
I figured the easiest way to do this is to add this little bit of CSS at the end of your Custom CSS:
.entry-content .entry-meta { display: block !important; }Try it out!
-
On a slightly related note, is there any way to list a different author for each post without having to invite each author as a user? I’ve done quite a bit of googling, and it doesn’t seem like that will be possible, but I just wanted to check here, too.
I think inviting users as authors is the only way to do it here.
-
- The topic ‘Gridspace Meta Info Help’ is closed to new replies.