Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #29551

    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

    #140961

    Hi,

    Are you referring to the Portfolio Title? Can you give us a link to the page?

    Regards,

    Ismael

    #140962

    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.

    http://goo.gl/Iiy7su

    Thank you.

    -Pat

    #140963

    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

    #140964

    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

    #140965

    Hi Pat,

    You are welcome, glad Ismael could help :)

    We like what we do, so feel free and ask when you have questions

    Regards,

    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove image names on (one portfolio category only)?’ is closed to new replies.