StudioPress Community Forums

StudioPress Community Forums (http://www.studiopress.com/support/index.php)
-   General Discussion (http://www.studiopress.com/support/forumdisplay.php?f=7)
-   -   Needing a resource, plug-in or advice - gallery for wp (http://www.studiopress.com/support/showthread.php?t=120260)

CathiBosco 10-09-2012 12:15 PM

Needing a resource, plug-in or advice - gallery for wp
 
Hello,
I am in need of some advise. I am creating a site and my client wants a site with a staff presentation that functions like the following:
http://www.rightpoint.com/company/leadership
I am using backcountry currently - does anybody recommend a plug-in or have suggestions about this specific functionality?
Thansk in advance as always,:facepalm:
Cathi

NicktheGeek 10-09-2012 03:40 PM

This looks liek a custom post type with a custom archive template and some basic :hover CSS to alternate between one div showing and another div showing. I'm not aware of a plugin that does this specifically, but the CSS isn't really difficult. Basically you have
HTML Code:

<div class="cool-hover-effect">
    <div class="normally-shows">
        Add whatever you want to normally show, be sure to include classes to make it look pretty
    </div>
    <div class="shows-on-hover">
        Add whatever you want to show on hover, be sure to include classes to make it look pretty
    </div>
</div>

Then your CSS looks like
Code:

.cool-hover-effect .normally-shows,
.cool-hover-effect:hover .shows-on-hover {
    display: block;
}

.cool-hover-effect:hover .normally-shows,
.cool-hover-effect .shows-on-hover {
    display: none;
}

That site isn't doing it but this is where I'd also make sue of a CSS transition so it does a nice slide or fade transition on newer browsers.

CathiBosco 10-10-2012 07:48 AM

Thank you so much, I may need to hire help for this set up - my client also wants similar styling on his client page to look like -see link.... I think it is similar to the custom post type on the staff page.
Here is a look: http://www.rightpoint.com/technology...s/case-studies

Thanks for the details about the css
I know I can add that to the style sheet...
Question - where do I add the html code?

Thanks
Cathi:oops:

NicktheGeek 10-10-2012 08:33 AM

you would actually need to make a custom archive template or page template depending on how you do it. I'd probably use a custom post type with archive so I could just make a custom archive-staff.php (or whatever the post type needs to be) and then replace the title, post info, post image, post content, and post meta with a custom action.

CathiBosco 10-16-2012 11:57 AM

OK - I do need to hire help to add this function to my site.
Would love help with this....

NicktheGeek 10-16-2012 01:38 PM

Here is a list of recommended developers
http://www.studiopress.com/support/f...splay.php?f=14

Here is another list
http://studiopress.com/genesis-developers

CathiBosco 10-16-2012 02:27 PM

Thanks NicktheGeek - thanks! :)


All times are GMT -5. The time now is 05:06 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.