Back to blog

Trump of Little Risk to Marriage Equality

Guest post by Shannon Minter of National Center for Lesbian Rights.

Dear Equality Federation Friends,

In response to some inquiries from people who are afraid their marriages might be invalidated, we drafted this brief explanation:

There is no realistic possibility that anyone’s marriage will be invalidated.  The law is very strong that if a marriage is valid when entered, it cannot be invalidated by any subsequent change in the law. So people who are already married should not be concerned that their marriages can be taken away. To the contrary, it is important that they continue to live their lives as married couples.    

Looking forward for individuals who are not currently married but who may wish to marry in the future, we also think it is highly unlikely that the fundamental right of same-sex couples to marry will be challenged or that the Supreme Court would revisit its 2015 holding that same-sex couples have that fundamental right. The doctrine of stare decisis—which means that courts generally will respect and follow their own prior rulings—is also very strong, and the Supreme Court very rarely overturns an important constitutional ruling so soon after issuing it. In addition, while the new administration is very conservative, neither Donald Trump nor anyone associated with his campaign has indicated any serious or immediate intention to try to turn back the clock on the freedom to marry, and the great majority of Americans now strongly support marriage equality.

Shannon Minter
Legal Director
National Center for Lesbian Rights

/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });