Remove Icon Images in Feature Section Headings

Discussion in 'Figero WordPress Theme' started by apexbos, Apr 25, 2014.

  1. apexbos

    apexbos New Member

    Joined:
    Jan 27, 2014
    Messages:
    9
    Likes Received:
    0
    How do I remove the icons completely in the (4) Feature Section headings.

    I created a blank 5 px image and used that, but the space for the icon is still there, offsetting the heading spacing.

    Thank You,
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .content .feature-content:nth-child(4) img {
    display: none;
    }
    .content .feature-content:nth-child(4) .inner-content{
    margin-left: 0px! important;
    width: 100%! important;
    }
     
    This will solve your issue.
     

Share This Page