Tagged: categories, Portfolio
Hey fellas,
I’m trying to remove the image names on only one of my portfolio categories named “Random Images.” There will be dozens of images in the category and there’s no need for names. The portfolio items “require” me to give it a name, or I would just leave it blank.
Thank you for your help, as always.
-Pat
Hi,
Are you referring to the Portfolio Title? Can you give us a link to the page?
Regards,
Ismael
Yes Ismael. Would like to remove the Portfolio image titles for only (one) category, but leave the rest.
So for example, on this page [link below] I would like to remove the titles for each image.
Thank you.
-Pat
Hi,
If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.
On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 #header_main {
border-bottom-width: 3px;
border-bottom-style: dotted;
background: red;
}
In your case, you can use this:
.single-portfolio.postid-360 .grid-entry-title.entry-title {
display: none;
}
Regards,
Ismael
Ismael, thank you! I was actually trying to achieve this, and i was going in the right direction, but gave up. I probably could have kept at it a little longer. I apologize.
I feel for you guys, because I know you are bombarded with requests for help and it has to be exhausting. I really try to work things myself before I reach out.
Your support is amazing.
Thanks again.
-Pat