Tagged: Portfolio
Hi,
I’m having an issue with the portfolio grid not showing the categories to be selected. It is essentially a blank space. See below.
You can view this by going to the homepage (or HOME – backend) and view the portfolio element.
Thanks.
sl
Hey slui!
You have to have some categories created for them to display. You can create them in Dashboard > Portfolio Items > Portfolio Categories. I went ahead and created one for you.
Best regards,
Elliott
Thanks. Do you know if it is possible to put the Title of the post in the center of the image instead of below using portfolio element?
Hey Samuel!
Try adding this code to the Quick CSS:
.grid-sort-container .grid-content {
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: 0 auto;
width: 40%;
z-index: 1000;
}
.grid-sort-container .avia-arrow{
display: none;
}
Cheers!
Josue
Thanks Josue,
How would I isolate this to the portfolio on the home page? I know that custom css classes can be used. Can you shed some light on this?
sl
I should also add that the .avia-arrow still shows when I move the mouse off the caption. I tried implementing the following and it didn’t work.
.grid-sort-container .avia-arrow{
display: none !important;
}
Hey!
Yes, you can apply a specific class and change the code accordingly:
.home-grid .grid-content {
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: 0 auto;
width: 40%;
z-index: 1000;
}
.home-grid .avia-arrow{
display: none;
}
Regarding the arrow, i’m not really seeing (http://screencast.com/t/2qdB7xR5qJsX) i’d suggest hiding the overlay though.
.home-grid .image-overlay{
display: none !important;
}
Cheers!
Josue