Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1137164

    Hi,

    for some pages I want to replace the standard bullet point for unnumbered lists with a font icon.

    I already put the code from the support thread “https://kriesi.at/support/topic/replace-bullets-with-icon-font/” in my custom css, But this has no effect.

    1.) How can I get this working for dedicated pages?
    2) How can I change the bullet color to green?

    Kind Regards
    Kürgen

    #1137757

    Hey jp,

    Could you link to where we can see where you want this implemented please? Also, which icon are you looking to use?

    Best regards,
    Rikard

    #1138099
    This reply has been marked as private.
    #1138258

    Hi,
    Thanks for the link to your site and the link to the css you wanted to use. I took a look at your page and it didn’t contain the same classes as the css needed, so I have adjusted it for you so that it will only work in the one section on the one page that you linked to.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-962 .post-entry-962 ul li {
    list-style: none;	
    }
    
    #top.page-id-962 .post-entry-962 ul li {
    padding-left: 8px; 	
    }
    
    #top.page-id-962 .post-entry-962 ul li:before {
    content: '\2713';
    color: green;
    font-family: 'entypo-fontello';
    font-size: 23px;
    font-weight: normal;
    position: absolute;
    left: 6px;
    }

    Please see the screenshot in Private Content area.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.