Theme CSS overrides Better Font Awesome css

Homepage Community Forums General Theme CSS overrides Better Font Awesome css

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #22863
    Rob
    Customer

      Hi Wes

      I’ve worked with a few of your themes over the past couple of years. Love the work you do.

      So now I’m working on Elevate.

      I’ve added the better font awesome plugin so the client can use the TinyMCE and shortcodes and have the site always use the most up to date font awesome files.

      I commented out your reference to FA in the functions file but a couple of things occur that override the BFA stylesheet.

      specifically, the list-style-type: disc still shows up.

      I’ve had this happen on other themes as well, but not with BFA, just in general…

      Here’s my dev site I’m working on at the moment:
      http://162.214.27.41/~realfpa7/olives-healthy-benefits/

      #22866
      Wes
      Moderator

        It looks like they don’t have any code that styles this specific part of the list, so the theme’s default css shows up. The code that is being used can be found on line 1699 in the style.css –

        .entry-content ul > li {
            list-style-type: disc;
        }

        You can either remove/change that to none or add the override in your custom css section –

        .entry-content ul > li {
            list-style-type: none;
        }

        Let me know if that helps

        #22869
        Rob
        Customer
          This reply has been marked as private.
          #22870
          Wes
          Moderator
            This reply has been marked as private.
            #22871
            Rob
            Customer

              nailed it.

              Thanks for taking time out on a Saturday to help me with my css.

              I really appreciate it.

              #22872
              Rob
              Customer
                This reply has been marked as private.
                #22873
                Wes
                Moderator
                  This reply has been marked as private.
                Viewing 7 posts - 1 through 7 (of 7 total)
                • You must be logged in to reply to this topic.