Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1001024

    Hello,

    despite having read several other topics about it I have not found a solution to what I want to do. I would like to change everywhere on my website the bullets for the ue875 icon of the font entypo-fontello. I want that this icon is of a different color than the text, more specifically the 008C15, could you help me please :-)

    Thank you very much !

    #1001027

    Hey Marie-Claude,
    Please try this code in the General Styling > Quick CSS field:

    
    #main .container ul {
      list-style: none !important; 
    }
    #main .container li::before {
      content: "\e875";
      font-family: entypo-fontello;
      color: #008C15;
      position: relative;
      padding-right: 11px;
      margin-left: -20px;
    }

    2018-08-23_223241
    If this doesn’t help, please try adding the css to the WordPress > Customize > Additional CSS

    Best regards,
    Mike

    #1001030

    Hello Mike !

    I love it ! It’s almost perfect :-)
    I have a conflict with the list of icons (see my printscreen), is it possible to apply everywhere on the site but not in the lites of icons?

    Thanks :-)

    #1001040

    Hi,
    I see the conflict with the icon list element, and also with the sidebar menu, and possibly others too.
    I believe the best solution is to consider that most likely the only place you would create a list that you do want to change will be in a text block element, or in a standard editor post, and we can target these two areas site wide by changing the css to:

    #main .av_textblock_section ul,#main .entry-content ul {
      list-style: none !important; 
    }
    #main .av_textblock_section li:before,#main .entry-content li:before {
      content: "\e875";
      font-family: entypo-fontello;
      color: #008C15;
      position: relative;
      padding-right: 11px;
      margin-left: -20px;
    }

    Please try this and see if it will meet your needs.

    Best regards,
    Mike

    #1001279

    Oh yeah !
    It’s almost perfect ;-)
    It remains a place to settle in the accordions (see the page). The black bullets are back.
    It’s possible to correct that

    #1001451

    Hi,
    Please try changing the css to this so it will include the accordion element:

    #main .av_textblock_section ul,#main .entry-content ul,#main .av_toggle_section ul {
      list-style: none !important; 
    }
    #main .av_textblock_section li:before,#main .entry-content li:before,#main .av_toggle_section li:before {
      content: "\e875";
      font-family: entypo-fontello;
      color: #008C15;
      position: relative;
      padding-right: 11px;
      margin-left: -20px;
    }

    Please let us know if you find any other elements that need adjusting

    Best regards,
    Mike

    #1001657

    Oh wow, you’re a genius ! Thanks you ! :-D

    #1001664

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    #1002431

    You can close this :) Thanks

    #1002499

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Change bullet for entypo-fontello and color’ is closed to new replies.