Forum Discussion

micha80's avatar
micha80
Expert
11 years ago

Styling ajax loading spinner

Hi,   I want to make custom style for the loading spinner. Currently I am styling the AskAnExpert component and when you enter a word the loading spinner appears and disapperas a few seconds a...
  • nathan's avatar
    11 years ago

    Are you using the Q&A Active Cast widget?

     

    In which case, the loading gif is displayed using a CSS rule on a span tag. This is the span tag:

    <span class="lia-lazy-load-small lia-button-wrapper"></span>

    And this is the CSS rule:

    #lia-body .lia-content .lia-lazy-load-small {
      background: url("/skins/images/015...34428F1E/base/images/feedback_loading_small.gif") no-repeat scroll 50% 50% transparent;
      height: 20px;
      width: 16px;
    }

    To change the loading gif, you'll probably need to override this CSS rule.