Okay
  Public Ticket #2640805
social icons in header navigation
Closed

Comments

  •  2
    Jason started the conversation

    I'd like to know if it's possible to change the header nav social icons animation to something simpler. Something as simple as highlight on rollover. Instead of that vertical animation.

    Also, is it possible to change the social icon graphic?

  •  8,849
    Tahir replied

    Hey,
    Please provide the page URL so I may write up the custom CSS for this request.
    Thanks


    ThemeNectar Support Team 

  •   Jason replied privately
  •  8,849
    Tahir replied

    Hey Again,

    - What exactly do you want to change?. 

    - Use below css to remove the vertical animation on hover.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-outer #social-in-menu a:hover i, .material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links a:hover i {
        -webkit-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }

    Thanks


    ThemeNectar Support Team 

  •   Jason replied privately
  •  8,849
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .fa-facebook-f:before, .fa-facebook:before {
        content: "\f082" !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Jason replied

    Perfect! Worked great. Thank you so much.