Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

css style text with no tag inside class

I am on a wordpress website of a client where I have to remove text they added by mistake under their logo . They use Outreach Pro wordpress theme and I cannot find in the theme where to remove the text in the header so I am going with custom css .

The format however with the text for the element is

<div class="title-area">
  <h1 class="site-title" itemprop="headline"><a href="...">TEXT I WANT </a></h1>TEXT TO REMOVE
</div>

where TEXT TO REMOVE is outside of the h1 tag , so how can I make its display none without including the h1 tag ?
Thank you in advance

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Like an option, you can make your container flex with row layout and move text content you want to remove to the right; And text outside block will be cropped.
Also you can move text to hide war away from view port by text-indent: 1000%;, see Code Snippet with comments:

.title-area {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap; /* make text in one line */
  text-indent: 1000%; /* move text to remove far away */
}

.title-area .site-title {
  flex-grow: 1;
  flex-shrink: 0;
  width: 100%;
  text-indent: 0; /* move site title to the beginning */
}
<div class="title-area">
  <h1 class="site-title" itemprop="headline"><a href="...">TEXT I WANT </a></h1>TEXT TO REMOVE
</div>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading