Create A Forum - Support Forums

Support => Style Support => Topic started by: Andreas on July 20, 2014, 06:48:09 pm

Title: Custom titles
Post by: Andreas on July 20, 2014, 06:48:09 pm
Is it possible to get the custom titles coloured?


If so, how?
Title: Re: Custom titles
Post by: CreateAForum on July 20, 2014, 08:15:02 pm
I don't believe so
Title: Re: Custom titles
Post by: CyanProductions on January 02, 2015, 11:32:27 pm
You can:

.title
{
    color: red;
}
Title: Re: Custom titles
Post by: CyanProductions on January 03, 2015, 06:07:11 pm
However if you would like to give a specific title a color, use this:

Footers:

Code: [Select]
<script>
var CustomTitle = 'X';

$('li.titile').filter(function () {
    return $(this).text() === CustomTitle;
}).css('color', 'red');
</script>

Chnage X to the custom title