• Resolved totallytech

    (@totallytech)


    Hey,

    I’m looking to set the css for quizName to display: none; however I’ve added it to my css, but the style overrides it and I cannot find where the style=”display: block;” gets added?

    My page shows:
    <h2 class=”quizName” id=”slickQuiz1-name” style=”display: block;”>

    Any ideas?

    https://wordpress.org/plugins/slickquiz/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Look for the following directory: wp-content/plugins/slickquiz/css

    The style you are looking for is in: front.css

    Thread Starter totallytech

    (@totallytech)

    Thanks, I’ll have a look however I did look for this early but its not called in the css, its actually added to the code, normally the css would be a class called quizName, but this one actually has the style element in the code.

    I’ve added a new quizName class however its ignored as the element overrides it 🙁

    Plugin Author jewlofthelotus

    (@jewlofthelotus)

    @totallytech Since the quizName toggles into display via JS applying the style of display: block you must override that style in your styles.css with a style of higher specificity. Something like the following should work:

    `.quizName { display: none !important; }

    Thread Starter totallytech

    (@totallytech)

    Excellent, thank you so much!!!!

    Fixed it lol 😀

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

The topic ‘Location of CSS info’ is closed to new replies.