• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

custom item field colour css

kisanjong

New Member
AMS
Showcase
Hi

I'm trying to find the custom item fields colour settings in the CSS template to change the colour/weight of both the field title and value.

I know how to change the values but can't find there location :)

Please assist thank you.
 
You need to be a little more specific about the where? There is different CSS depending on if you are viewing a specific LAYOUT Type on an Listing page vs whether you are viewing a Showcase Item page, vs Sidebar Block. The BEST way to find CSS is to view the source and look at the class names.
 
Thanks Bob, I was only looking at the one item.css and not the different article/news view etc layout.css templates.

I'll have a look first thing tomorrow.
 
found it :)

the css i was looking for was in nflj_showcase_item.css

Code:
.showcaseItem .customShowcaseFields dt
        {
            width: 190px;
            float: left;
            color: @uix_primaryColor;
            font-weight: bold;
        }
 
  • Like
Reactions: Bob
Back
Top