Okay
  Public Ticket #2538695
Removing animated arrow from Next/Prev post
Closed

Comments

  •  2
    melsaunders started the conversation

    I would like to remove or hide the animated arrows that display at the bottom of my portfolio page to show the Next / Previous portfolio post. 

    Is it possible to to add custom CSS to do this?

    I also have some custom styling requests and I wondered how best to submit these - or if you offer a service where you could help with code? 

    Thanks!

  •  2
    melsaunders replied

    I forgot the attachment ...

  •  2,965
    Andrew replied

    Hi there,

    Add the following custom css in Salient > General settings > CSS/Script related:

    .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .next-project:hover h3 .next-arrow, .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .next-project:hover h3 .line, .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .previous-project:hover h3 .next-arrow, .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .previous-project:hover h3 .line {
        display: none;
    }
    

    Kind regards.

  •  2
    melsaunders replied

    That's great thanks! Although this has removed the opening arrow, when you leave the box, you see the arrow on it's way out. Is it possible to hide this state too?

  •  2,965
    Andrew replied

    Hi there,

    Add the following custom css:

    body .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .previous-project.mouse-leaving h3 .text .line, body .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .next-project.mouse-leaving h3 .text .line, .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .previous-project.mouse-leaving h3 .next-arrow, .container-wrap[data-nav-pos="after_project_2"] .bottom_controls .next-project.mouse-leaving h3 .next-arrow {
        display: none !important;
    }
    

    Thanks.

  •  2
    melsaunders replied

    Perfect - thanks!