Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] jQuery Removing One Word of Text Reply To: jQuery Removing One Word of Text

#149554
Senff
Participant

So what am I, chopped liver?

With just CSS:

.info {
  font-size:0;
}

.info a, .info span {
  font-size:14px;
  margin-right:5px;
}

Or, if you prefer, with just Javascript/jQuery (using replace()): http://codepen.io/senff/pen/wGuIB