Hi,
I would like to add CSS Gradient to the Page Title.
Would it be possible to add an extra class to the page title? My CSS is:
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0.07, #8EB4CC),
color-stop(1, #EBF5E7)
);
background-image: -o-linear-gradient(bottom, #8EB4CC 7%, #EBF5E7 100%);
background-image: -moz-linear-gradient(bottom, #8EB4CC 7%, #EBF5E7 100%);
background-image: -webkit-linear-gradient(bottom, #8EB4CC 7%, #EBF5E7 100%);
background-image: -ms-linear-gradient(bottom, #8EB4CC 7%, #EBF5E7 100%);
background-image: linear-gradient(to bottom, #8EB4CC 7%, #EBF5E7 100%);
Regrads
celeste