Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • WordPress sites tend to load a lot of css. The Firefox code inspector will help you find the culprit. The problem I found was a result of a css file setting the following:

    img { display: block; }

    The css you are looking for may not be exactly the same as the above but wherever you find it, make an entry in the same file similar to the following (including your wrapper-if-any code block designators):

    /* Allow Forum Editor Icons To Display Horizontal */
    .wrapper-if-any #wpf-wrapper img { display: inline; }

    WordPress sites tend to load a lot of css. The Firefox code inspector will help you find the culprit. The problem I found was a result of a css file setting the following:

    img { display: block; }

    The css you are looking for may not be exactly the same as the above but wherever you find it, make an entry in the same file similar to the following – including your wrapper-if-any code block designators:

    /* Allow Forum Editor Icons To Display Horizontal */
    .wrapper-if-any #wpf-wrapper img { display: inline; }

Viewing 2 replies - 1 through 2 (of 2 total)