I'm working on a website through WordPress and for some reason, I can edit the CSS
but not the HTML
, and I want to hide some text but not all off of it. The code is:
.entry-header .entry-title::after {
content: "Create Theme" !important;
}
<header class="entry-header ">
<h1 class="entry-title ">
"Create Course"
::after
</h1>
</header>
Which displays: Create CourseCreate Theme
. And I want it to display: Create Theme
. Is this possible through CSS
?