I am using apex 5.1 oracle xe .
there is a color.css in css folder
.
t-Card .u-color-blue {
background-color: blue;
}
.t-Card .u-color-red {
background-color: red;
}
.t-Card .u-color-orange {
background-color: orange;
}
.t-Card .u-color-yellow {
background-color: yellow;
}
Now i have created a template which is a copy of card.
and refered color.css by
#IMAGE_PREFIX#color.css
and this is my sql
select id
, full_name card_title
, profile card_text
, nvl(email,' ') card_subtext
, dbms_lob.getlength('PHOTO_BLOB') card_initials
, apex_util.prepare_url('f?p='||:APP_ID||':3:'||:APP_SESSION||'::::P3_ID:'||id) card_link
, photo_filename
, photo_mimetype
, photo_charset
, photo_last_updated,'u-color-red' card_color
from eba_demo_proj_team_members
order by created
But i still dont get the background color of my card as red.
Trying to figure out what could i be dong wrong..
Coud be colour could be changed using named row column attribute thought card_color option will have been much easier option if it works