Tagged: display of categories, portfolio grid
Is it possible to display the categories for the portfolio grid beside the grid instead of above it?
Thanks
Hey NicomIT,
Thank you for the inquiry.
There is no option for this by default. How would you like to divide the space between the grid items and the category sort buttons? Please provide a screenshot and a link to the page containing the Portfolio Grid.
Best regards,
Ismael
Hi Ismael,
Here’s the page that I would like to do this on:
https://www.nicominteractive.com/portfolio-web-design-development/
I would like to display the categories in the vertical list in a column to the left of the grid.
Thanks!
Hi,
Thank you for the update.
You can start with this css code:
#top .entry-content-wrapper .av-portfolio-grid-sorting-container .sort_width_container:first-child {
width: 25%;
float: left;
margin: 0;
clear: none;
margin-right: 5%;
}
#top .entry-content-wrapper .av-portfolio-grid-sorting-container .grid-sort-container {
width: 70%;
float: left;
margin: 0;
clear: none;
}
#top .entry-content-wrapper .av-portfolio-grid-sorting-container .sort_width_container:first-child a {
display: block;
float: none;
}
#top .entry-content-wrapper .av-portfolio-grid-sorting-container .sort_width_container:first-child .text-sep {
display: none;
}
Best regards,
Ismael