• Resolved libmansworld

    (@libmansworld)


    Hi folks,

    Love the plugin. But for the life of me I can’t change the color of the close icon(X) which is currently white. I tried these settings below and it did not work. I also saw the post someone else did and that did not work. Any thoughts?

    The best to you and yours,
    Greg

    .hustle-modal .hustle-modal-close .hustle-icon {
    fill: #000000!important;
    }

    and tried

    .hustle-modal .hustle-modal-close .hustle-icon {
    color: #000000!important;

    }

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello @libmansworld

    Hope all is well!

    Please make sure to leave an empty space between the color code #000000 and the !important tag. Like this

    .hustle-modal .hustle-modal-close .hustle-icon {
    fill: #000000 !important;
    }

    To change the background color please try this CSS code:

    .hustle-modal-close svg path {
    	fill:red !important;
    }

    Please note, The !important rule overrides that particular property. So in the future, if you will require to modify this property again, you must edit the code above.

    Let us know how it went!

    Cheers,
    Nastia

Viewing 1 replies (of 1 total)
  • The topic ‘Close Icon’ is closed to new replies.