Okay
  Public Ticket #1584148
RSS Feed Icon Hover Not Showing
Closed

Comments

  •  4
    twotonecreative started the conversation

    When you hover over the RSS Feed icon (top right) it disappears. I want it to function like the other two icons on the top. How do I fix?

  •  9,007
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .fa-feed:after, .fa-rss:after {
        content: "\f09e" !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    twotonecreative replied

    Thank you. Is it possible to have the RSS Feed Icon be the Apple Podcast Icon instead?

  •  9,007
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .fa-feed:after, .fa-rss:after {
        content: "\f2ce" !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    twotonecreative replied

    That works on the hover, but not on the original state: https://calvarypalisades.org/

    How can we get it to work on the original state?

  •  9,007
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .fa-rss:before, .fa-rss:after {
        content: "\f2ce" !important;
    }
    #slide-out-widget-area .off-canvas-social-links li i:after {
        content: '' !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    twotonecreative replied

    This is working great in the header, but in the footer of the sub-pages, on the rollover, the icon is showing up twice.

  •  9,007
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    #footer-outer[data-cols="1"] #copyright li a i.fa-rss:after {
        content: '' !important;
    }

    Thanks


    ThemeNectar Support Team