Fixed  Unable to change sub-heading padding in Style Properties

Paul B

XenForo moderator
Staff member
Changing the sub-heading padding values in Style Properties -> Building Blocks -> Sub-Heading has no effect.

The css is actually updated for .discussionList .sectionHeaders but has no effect due to the following CSS which overrides the values:

HTML:
        .discussionList .sectionHeaders a span
        {
            display: block;
            padding: 5px;
        }
 
Fixed. The value now reads:

padding: @subHeading.padding-top @subHeading.padding-bottom;
 

Similar threads

Top Bottom