Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1084137

    Hello,

    I love the navigation you have for the posts. (the previous and next post item, with the exerpt and image preview)

    Is this form of navigation possible for say 4 or 5 regular pages? (so not portfolio items or posts, regular pages)

    best regards,

    Frank
    (ps: your theme rocks)

    #1085064

    Hi Frank,

    Thanks for your kind words :)
    I think what you’re looking for is something more WordPress related than the theme.
    Here are some of the answers I found which I haven’t tested but I think it’s helpful for your case:
    https://wordpress.stackexchange.com/questions/54422/prev-next-child-navigation-for-current-page
    https://wpquestions.com/Next_Previous_child_page_links/599
    Hope it helps.

    Best regards,
    Nikko

    #1088605

    Hello,

    I had to do a workaround and use custom links in the main menu to refer to blogposts sothat the navigation can be used. (the entry-info-wrap one)
    It works but it would be nicer to have the pages in the “Pages” section and not piled up in the blogposts. I used a few exclude plugins to make sure the categories don’t show up in the blog/news section.

    Maybe something for the future to add the blog navigation option to the pages section.

    Next question: Is there a way to make the arrows pulse a bit in entry-info-wrap so the user knows were to click/hover?

    #1089037

    Hi Frank,

    I’m not sure what you’re I understood what you’re trying to achieve.
    Can you give us a mockup or screenshot of what you’re trying to do?
    Maybe a change of background color would help it be more noticeable.

    Best regards,
    Nikko

    #1089040

    Arrow nav

    I changed the colour already and was wonderng if it would be possible to make them “pulse” / “move once in a while so the user knows he has to click further. :-)

    #1089067

    Hi Frank,

    Try adding this code, just change the rgb color as you see fit:

    #top .avia-post-nav {
      box-shadow: 0 0 0 rgba(44,44,44, 0.6);
      animation: pulse 2s infinite;
    }
    
    @-webkit-keyframes pulse {
      0% {
        -webkit-box-shadow: 0 0 0 0 rgba(44,44,44, 0.4);
      }
      70% {
          -webkit-box-shadow: 0 0 0 10px rgba(44,44,44, 0);
      }
      100% {
          -webkit-box-shadow: 0 0 0 0 rgba(44,44,44, 0);
      }
    }
    @keyframes pulse {
      0% {
        -moz-box-shadow: 0 0 0 0 rgba(44,44,44, 0.4);
        box-shadow: 0 0 0 0 rgba(44,44,44, 0.4);
      }
      70% {
          -moz-box-shadow: 0 0 0 10px rgba(44,44,44, 0);
          box-shadow: 0 0 0 10px rgba(44,44,44, 0);
      }
      100% {
          -moz-box-shadow: 0 0 0 0 rgba(44,44,44, 0);
          box-shadow: 0 0 0 0 rgba(44,44,44, 0);
      }
    }

    Best regards,
    Nikko

    #1089069

    That…is lovely :D

    Thank you so much! It really fits too!

    #1089105

    Hi Frank,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Post navigation for certain pages.’ is closed to new replies.