hi guys! please, how can I configure the category colors? I'm configuring this new template in an existing installation... I created the extra fields and category... is that the right way?

but then, what else should I do? I assigned color "orange" to one of my categories but then I don't see this "orange" value assigned somewhere in the code... instead I see:
<div class="item-inner align-meta-bottom bg-cat-red">

from where comes that "bg-cat-red" or "bg-cat-yellow"? how can I change it to my new "orange"? or any other color I add?

thanks!!

    yubi1 Hi

    These colors are extra fields of template specific, not the custom field in Joomla (the one that you're working on).

    In order to add new color, you open file: [your_site_root]/templates/ja_comics/etc/form/com_categories.categorycom_content.xml

    You can see list of option tags there, each color will have associated value which will be generated as class on frontend.

    <option value="">Default Color</option>
    <option value="cat-red">Red Color</option>
    <option value="cat-green">Green Color</option>
    <option value="cat-blue">Blue Color</option>
    <option value="cat-purple">Purple Color</option>
    <option value="cat-orange">Orange Color</option>
    <option value="cat-yellow">Yellow Color</option>

    you can add new option with class for your new color.

    Then open the file: [your_site_root]/templates/ja_comics/css/template.css

    You can search for how other colors are defined there and add the same style for your new color, such as:

    .link-cat-orange {
      --body-link-color: #fff;
      --body-link-hover-color: #fff;
      background: var(--bg-orange-color) !important;
      color: #fff !important;
      position: relative; }
      .link-cat-orange:before {
        content: "";
        border: 3px solid;
        border-color: transparent #fff #fff transparent;
        position: absolute;
        bottom: 4px;
        right: 4px; }
      .link-cat-orange.active {
        color: var(--bg-orange-color) !important; }

      saguaros thanks for answering!

      I did as you said... but I guess there is one more thing left... I mean, now, how do I assign a color to each category?

      thanks!!

      You can simply navigate to category >> JA Extra Fields tab and assign the color as you wish:

        saguaros thanks for answering!

        I have tried that... first, I created the extra category field... and added there the same values than in com_categories.categorycom_content.xml

        but then, I select color orange (or any other color) for one of my categories (ex: la tortuga) and it keeps showing the yellow option (image attached)
        <div class="item-inner align-meta-bottom bg-color-yellow">

        please, what should I change/add?
        thanks!!

          yubi1 Hi

          It looks like you rename JA Comics to your own template, could you try with default JA Comics and see how it goes?

            saguaros hi!

            yes, I made a child template called "MV"... I did as you said... asigned JA Comics to the home and also selected the default article layout detail-2.php that comes with Comics... but same behaviour...

              hi saguaros!! please, don't forget about me 😉

                11 days later
                12 days later

                saguaros hi!! sorry to ask again... just wanted to check if the developer team have been able to check...

                  yubi1 Hi

                  Yes, we're looking into this issue, pls give us more time.

                  Write a Reply...
                  You need to Login to view replies.