Hi,
Can anyone tell me how to make CUSTOM fields text to appear in BOLD when displaying full picture.
Edward
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
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