I would like to remove white space in a php generated css code, I have different title header which would like to generate through php code.
Titles are like 1) Baby Day Care 2) Baby Night Care
My php codes are like:
<div class="wistia<?php echo $subject->title;?>">
So when I got the class, I got like wistiaBaby Day Care
or wistiaBaby Night Care
But I want the class will be look like wistiaBabyDayCare
or wistiaBabyNightCare
(I want space removed between text).
So how I am going to achieve that?