PDA

View Full Version : Changing Font on Contact Me Page


WeiPhotoArts
Feb-02-2009, 09:01 PM
Hi,
I've made fair customization on my website, WeiChong.net. However, the Contact Me page is stuck at Tohama bold. I can't make it normal, even with the HTML in the text. I can make the font bigger, or in italics. However, I can't put the text to normal. The format is Journal style. Could someone help me with the over-riding BOLD?

Thanks in Advance, Wei Chong

Allen
Feb-02-2009, 09:18 PM
Hi,
I've made fair customization on my website, WeiChong.net. However, the Contact Me page is stuck at Tohama bold. I can't make it normal, even with the HTML in the text. I can make the font bigger, or in italics. However, I can't put the text to normal. The format is Journal style. Could someone help me with the over-riding BOLD?

Thanks in Advance, Wei Chong
Remove the font tags from the caption and use CSS to format it.

.gallery_7048348 .caption {
font-family: helvetica, Comic Sans MS, verdana, tahoma;
font-size: 110%;
padding-top: 0 !important;
}

WeiPhotoArts
Feb-03-2009, 02:56 PM
Remove the font tags from the caption and use CSS to format it.

.gallery_7048348 .caption {
font-family: helvetica, Comic Sans MS, verdana, tahoma;
font-size: 110%;
padding-top: 0 !important;
}

Allen, Thank you kindly for showing me the template of how to do this. I figured out that I needed an extra line to take out the bold, font-weight: normal;
:clap