PDA

View Full Version : Font on my page


rsparts
Oct-02-2008, 12:16 PM
How do I change the font on my page? Specifically the comment section under each photo. I've noticed it gets a little difficult to read and I'd like to change it to something a little more legible. Thanks:D

Barb
Oct-02-2008, 03:19 PM
How do I change the font on my page? Specifically the comment section under each photo. I've noticed it gets a little difficult to read and I'd like to change it to something a little more legible. Thanks:D

Hi :)

I think you are referring to the image captions, maybe? The text underneath an individual image?

If so, add the following to your CSS in your customization:

#caption_bottom {font-family: Verdana; font-weight: normal;}

You can, of course, choose a different font. The normal font-weight removes the bold. You can add to this and change the size and color, also, if you wish.

#caption_bottom {font-family: Verdana; font-weight: normal; font-size: 12px; color: #CCCCCC !important;}

rsparts
Oct-02-2008, 03:56 PM
Hi :)

I think you are referring to the image captions, maybe? The text underneath an individual image?

If so, add the following to your CSS in your customization:

#caption_bottom {font-family: Verdana; font-weight: normal;}

You can, of course, choose a different font. The normal font-weight removes the bold. You can add to this and change the size and color, also, if you wish.

#caption_bottom {font-family: Verdana; font-weight: normal; font-size: 12px; color: #CCCCCC !important;}


Oh that worked great - thanks! Now how do I change the font for the whole site?

Barb
Oct-02-2008, 04:13 PM
Oh that worked great - thanks! Now how do I change the font for the whole site?

In your CSS, add:

body {font-family: Verdana !important;}

Of course, choose what font you want :)

rsparts
Oct-03-2008, 03:31 AM
In your CSS, add:

body {font-family: Verdana !important;}

Of course, choose what font you want :)


you're awesome - thanks!

pillman
Oct-03-2008, 05:22 AM
In your CSS, add:

body {font-family: Verdana !important;}

Of course, choose what font you want :)

Would like to target font changes just to guestbook area. How pleaae ?

Barb
Oct-03-2008, 06:24 AM
Would like to target font changes just to guestbook area. How pleaae ?

Hi :)

You have the following in your CSS for your guestbook page:

.gallery_5919485 .myTitle {
font-family: Comic Sans MS, verdana;
font-size: 150%;
color: #444;
font-weight: bold;
text-align: center;
margin: 0 auto 30px auto; /* top right bottom left */
}

.gallery_5919485 .myText {
font-family: verdana;
font-size: 110%;
color: #aaa;
font-weight: normal;
text-align: justify;
}

You can change the font in that CSS to change your text.

pillman
Oct-03-2008, 06:42 AM
Hi :)

You have the following in your CSS for your guestbook page:

.gallery_5919485 .myTitle {
font-family: Comic Sans MS, verdana;
font-size: 150%;
color: #444;
font-weight: bold;
text-align: center;
margin: 0 auto 30px auto; /* top right bottom left */
}

.gallery_5919485 .myText {
font-family: verdana;
font-size: 110%;
color: #aaa;
font-weight: normal;
text-align: justify;
}

You can change the font in that CSS to change your text.


THANKS; When it say ( Comic Sans MS, verdana; ) which does it
use ?

Barb
Oct-03-2008, 06:44 AM
THANKS; When it say ( Comic Sans MS, verdana; ) which does it
use ?

It will use the first one listed. If for some reason, someone viewing your site did not have Comic Sans on their computer, they would then see Verdana.

pillman
Oct-03-2008, 06:46 AM
It will use the first one listed. If for some reason, someone viewing your site did not have Comic Sans on their computer, they would then see Verdana.

Understand now,thanks

LPC
Oct-03-2008, 11:02 AM
This is all very useful - I'm going to jump in if noboby minds!

Barb, how can I force the caption to centre under the image? At the moment the theme I use positions it on the far left.

Thank you.

Barb
Oct-03-2008, 03:17 PM
This is all very useful - I'm going to jump in if noboby minds!

Barb, how can I force the caption to centre under the image? At the moment the theme I use positions it on the far left.

Thank you.

www.laurencecounter.com (http://www.laurencecounter.com)

Hi :)

Add this to your CSS:

#caption_bottom {text-align: center !important;}

LPC
Oct-03-2008, 10:12 PM
Thank you Barb