How to change color of close button icon in post popup of the Blog widget

Hi,
is there such a way to change, by coding the custom CSS, the color of the close icon of the in-page Blog widget?

Thanks a not

2 Likes

Hi there, @Giorgio_Fiorini :waving_hand:

Sure, here is a CSS code:

[class*="PopupCloseControl__CloseIcon-sc"] {
  color: white;
}

Please add it to the Custom CSS field on the Settings tab of your widget’s settings and let me know if it worked :slightly_smiling_face:

1 Like

Thanks a lot Max, that’s perfect!
Listen, can I change the color even to the background of the icon (the rounded area)?

2 Likes

Yep, this code will do the trick :wink:

[class*="PopupCloseControl__PopupCloseControlContainer-sc"] {
  background-color:red!important;
}
2 Likes

Thanks Max, it worked like a charm!

2 Likes

No sweat :wink:

1 Like