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:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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