Currently, I am in the process of designing a website using WordPress. Oddly enough, I find myself able to make changes to the CSS but not the HTML. Specifically, I am trying to hide certain text without hiding all of it. Here is the code snippet in question:
.entry-header .entry-title::after {
content: "Create Theme" !important;
}
<header class="entry-header ">
<h1 class="entry-title ">
"Create Course"
::after
</h1>
</header>
The current output is: Create CourseCreate Theme
. However, my goal is for it to display as: Create Theme
. Can this be achieved through CSS?