Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #216658

    is it possible to use this css:

    #top.single-portfolio .avia-post-nav {
    display: none !important;
    }

    to specify only certain pages not having the scroll-thru porfolio navigation?
    I have a page that is password protected http://thisistouch.com/touch-films/ with portfolio items, but I don’t want
    them to be part of the portfolio scrolling of
    the rest of the site, if that makes sense.
    any work around here?
    thanks

    • This topic was modified 10 years, 9 months ago by Munford.
    #216843

    Hey Munford!

    If you want to change the style of a specific element on a certain page or post, 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 .avia-post-nav {
    display: none !important;
    }

    Cheers!
    Ismael

    #217089

    great – that’s what I needed.
    thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘portfolio grid navigation’ is closed to new replies.