Viewing 3 replies - 1 through 3 (of 3 total)
  • Leo

    (@leohsiang)

    Hi there,

    GP doesn’t have any custom icons built-in.

    You can consider FontAwesome or SVG icons.

    Thread Starter bloggingbeats

    (@amitgargjind)

    How to embed SVG icons instead of simply Bullet?

    This is out of our Support scope but here is the basic CSS requirements to add an image ( which can be an SVG ) using the background-image property.

    /* Remove Bullet from UL LI */
    
    .entry-content ul li {
        list-style-type: none;    
    }
    
    /* Add Background image before li */
    
    .entry-content ul li:before {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("full_url_to_the_image");
        display: inline-block;
    }

    By default WP does not allow SVG’s to be uploaded so you will need to install SVG Support or SafeSVG plugins

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom Icon’ is closed to new replies.