Twenty Twelve portfolio pages
-
I’ve set up four portfolio projects and would like these to display on full width page templates without the sidebar rather than the default post template.
An example is here – http://anthonypalmer.me/portfolio/swanscombe/
And I’d prefer to remove the entry post dates from the foot of these projects too. Maybe possible? Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there,
I’ve set up four portfolio projects and would like these to display on full width page templates without the sidebar rather than the default post template.
This is possible by setting up each widget’s visibility. You need to set each widget you have to be hidden on Portfolio pages. Here’s a screenshot example: http://cl.ly/image/3W0R09331t2B
If *all* your widgets have this visibility setting, the portfolio Pages will automatically be displayed in full width.
And I’d prefer to remove the entry post dates from the foot of these projects too. Maybe possible? Thanks!
Seeing that you have the Custom Design upgrade already, you can use the following custom CSS to hide those:
.type-jetpack-portfolio .entry-meta { display: none; } -
Thanks v much – have made the changes and all works. Displaying the Projects with a full width page does leave the featured image with a Widget sized gap to the right hand side. So, questions, is it possible to make use of this space for a Project Categories Widget or is the Full Width Page sidebar now completely out of action? Alternatively could the Featured Image become full width on this page with a CSS command?
-
So, questions, is it possible to make use of this space for a Project Categories Widget or is the Full Width Page sidebar now completely out of action?
The full width page template wasn’t intended as an option for Portfolio projects.
Alternatively could the Featured Image become full width on this page with a CSS command?
You could stretch the featured image using CSS, but the quality of the image will degrade because of how featured images are hardcoded to 624px in the theme.
Here is an example you can try out to see if stretching the image looks acceptable to you or not:
.single-jetpack-portfolio .wp-post-image { width: 100%; }Another alternative might be to center everything in the portfolio project header area (so, the featured image and the project title) like this:
.single-jetpack-portfolio .entry-header { text-align: center; } -
- The topic ‘Twenty Twelve portfolio pages’ is closed to new replies.