Okay
  Public Ticket #2099189
Custom CSS request - portfolio "like" removal space
Closed

Comments

  • oisinlunny started the conversation

    Hi,

    I have used the following custom CSS to remove the portfolio "like" icon:

    .nectar-love-wrap {
      display: none!important;
    }
    .portfolio-items .col .work-info .vert-center a:nth-child(1) {
       display: none!important;
    }

    However, the missing icon still uses some space which can make the text look unpleasant (see screen grabs) on the following pages:

    https://oisinlunny.com/conferences/events/

    https://oisinlunny.com/articles/ 

    Can you recommend any additional CSS to enable the text to wrap tp the full width of the column?

    Thanks in advance! 


  •  8,994
    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):

    .portfolio-items .work-meta {
        width: 100% !important;
    }
    br {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team