• Resolved Bert O

    (@websitehelperberto)


    – Output –

    array(
      'element'  => array( '.h1', '.h2', '.h3'),
      'suffix'    => '!important',
    ),

    Can’t seem to get the suffix to work – Trying to add !important but it does not render. Any suggestions?

    • This topic was modified 8 years, 11 months ago by Bert O.
Viewing 2 replies - 1 through 2 (of 2 total)
  • It should not be like this:

    'output' => array(
      'element'  => array( '.h1', '.h2', '.h3'),
      'suffix'    => '!important',
    ),

    it should instead be like this:

    'output' => array(
      array(
        'element'  => array( '.h1', '.h2', '.h3'),
        'suffix'    => '!important',
      ),
    ),

    If that doesn’t work for you, please open a ticket on the github repository on https://github.com/aristath/kirki/issues including the full code of that field so that I may further investigate.

    Thread Starter Bert O

    (@websitehelperberto)

    Yes sorted it thanks.

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

The topic ‘Suffix !Important not working’ is closed to new replies.