How to make CUSTOM fields to appear in BOLD when displaying full picture How to make CUSTOM fields to appear in BOLD when displaying full picture
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

How to make CUSTOM fields to appear in BOLD when displaying full picture

Started by altenae, January 29, 2005, 09:59:27 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

altenae

Hi,

Can anyone tell me how to make CUSTOM fields text to appear in BOLD when displaying full picture.

Edward

Alaska

Take a look at the CSS for your theme.  It should be in themes > your theme > style.css

It appears that the following code will change the title that is under that picture.  Have not implemented it on this end, but at least it will be a start.  Not sure if this is your issue.

.img_caption_table th {
        background: #A3AAB4;
        font-size: 100%;
        color: #000000;
        padding-top: 4px;
        padding-right: 10px;
        padding-bottom: 4px;
        padding-left: 10px;
        border-top: 1px solid #FFFFFF;
}

To make the text bold add perhaps under font-size add the following:

font-weight: bold;

Let me know if this worked or not.

Jim

altenae

Tried this code in the style.css in my themes folder. However nothing happens. If it would work than I think all the fields are bold, and what I want to do is to make the custom fields bold.

Edward