How can I use [s2Eot /] shortcode but have no label displayed?

When I use [s2Eot /] shortcode a label is displayed such as Access Expires:

Is there a way to have no label displayed?

1 Like

Put the following in your (child) theme’s style.css file or in a CSS plugin:

.s2member-sc-eot-label {
	display: none;
}

That worked perfectly, again thank you Tim!