change shape of Icon

Discussion in 'BlackWell-WordPress Business Theme.' started by vesity, Aug 23, 2014.

Thread Status:
Not open for further replies.
  1. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Hi. In the Three Column Feature, I'd like to change the shape of the icons to round (circle) instead of hexagon. Thank you!
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste following CSS in Custom CSS and save all changes.
    Code:
    .feature_content .feature_content_inner p.font_icon:before {
    content: "";
    position: relative;
    top: -20px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    }
    .feature_content .feature_content_inner p.font_icon:after {
    content: "";
    position: relative;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    }
    .feature_content .feature_content_inner p.font_icon {
    width: 90px;
    border-radius: 50%;
    height: 90px;
    }
    .feature_content .feature_content_inner p.font_icon .fa {
    margin-top: 25px;
    }
    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Perfect - thanks!
     
Thread Status:
Not open for further replies.

Share This Page