PDA

View Full Version : <IMAGE_CATEGORY> Alternative?


jali
03-11-2008, 02:47 AM
Is there an alternative to the <IMAGE_CATEGORY> tag? It includes the "Categories:" part which I want to alter to include a <strong> - I guess I could include that in the lang-english.php file but that seems a little hacky.

Dkozikowski
03-11-2008, 04:40 AM
You can apply some CSS to the <IMAGE_CATEGORY> (http://www.pixelpost.org/docs/TemplateTags/IMAGE_CATEGORY) tag output.

Dkozikowski
03-11-2008, 04:46 AM
Because there is no specific ID or CLASS applied to the <IMAGE_CATEGORY> (http://www.pixelpost.org/docs/TemplateTags/IMAGE_CATEGORY) output. You could do something like this:

CSS:

span.img_cat {
font-weight: bold;
}
span.img_cat a {
font-weight: normal;
}


HTML:
<span class="img_cat"><IMAGE_CATEGORY></span>

jali
03-12-2008, 04:17 AM
I must admit that I would have never thought of this.. very creative work around. :)