coppermine-gallery.com/forum

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: altenae on January 29, 2005, 09:59:27 PM

Title: How to make CUSTOM fields to appear in BOLD when displaying full picture
Post by: altenae on January 29, 2005, 09:59:27 PM
Hi,

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

Edward
Title: Re: How to make CUSTOM fields to appear in BOLD when displaying full picture
Post by: Alaska on January 30, 2005, 12:19:16 AM
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
Title: Re: How to make CUSTOM fields to appear in BOLD when displaying full picture
Post by: altenae on January 30, 2005, 10:41:52 AM
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